This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/main/java/hudson/plugins/sauce_ondemand/BrowserAxis.java b/src/main/java/hudson/plugins/sauce_ondemand/BrowserAxis.java | |
index 247d4c9..d434f58 100755 | |
--- a/src/main/java/hudson/plugins/sauce_ondemand/BrowserAxis.java | |
+++ b/src/main/java/hudson/plugins/sauce_ondemand/BrowserAxis.java | |
@@ -85,7 +85,7 @@ public class BrowserAxis extends Axis { | |
com.saucelabs.ci.Browser b = BrowserFactory.getInstance().forKey(value); | |
if (b!=null) { // should never be null, but let's be defensive in case of downgrade. | |
map.put(getName(), b.getUri()); | |
- map.put("arguments", "\"-D" + getName() + "=" + b.getUri() + "\""); | |
+ map.put("arguments", "-D" + getName() + "=" + b.getUri() + ""); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<project name="JENKINS-15326" default="test" basedir="."> | |
<description> | |
Simple test build file for testing https://issues.jenkins-ci.org/browse/JENKINS-15326. | |
</description> | |
<target name="test" description="Do nothing."> | |
<echo>Hello world</echo> | |
</target> | |
</project> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[33m3718727[m http://jira.phase2technology.com/browse/ELCTWO-286 added rebuild perms to hook_update_N [31m(Jeffrey Kwok, 21 hours ago)[m | |
diff --git a/drupal-7.9/sites/all/modules/custom/elc_roles/elc_roles.install b/drupal-7.9/sites/all/modules/custom/elc_roles/elc_roles.install | |
index 5d51665..16694c7 100644 | |
--- a/drupal-7.9/sites/all/modules/custom/elc_roles/elc_roles.install | |
+++ b/drupal-7.9/sites/all/modules/custom/elc_roles/elc_roles.install | |
@@ -66,3 +66,12 @@ function elc_roles_update_7003() { | |
} | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP = php | |
PHPFLAGS = -d allow_url_fopen=On -d date.timezone="America/New_York" | |
install: composer.lock | |
update: | |
$(PHP) $(PHPFLAGS) composer.phar update | |
composer.phar: | |
curl http://getcomposer.org/installer | $(PHP) $(PHPFLAGS) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Content editor creates a page. | |
As a content editor | |
I want to create a new page | |
In order to have visitors see new content. | |
Scenario: Save & Continue Editing | |
Given I am logged in as a user with the "content editor" role | |
And I have access to the "Brand Z Ecommerce Master" domain | |
When I follow "Add content" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[10:32:04] $ ssh njldevdrp01 | |
Enter PASSCODE: | |
Last login: Tue Jul 31 10:18:40 2012 from njleng01 | |
[rlopez@njldevdrp01 ~]$ yum list installed | grep php | |
*Note* Red Hat Network repositories are not listed below. You must run this command as root to access RHN repositories. | |
php53u.x86_64 5.3.13-1.ius.el5 installed | |
php53u-cli.x86_64 5.3.13-1.ius.el5 installed | |
php53u-common.x86_64 5.3.13-1.ius.el5 installed | |
php53u-devel.x86_64 5.3.13-1.ius.el5 installed | |
php53u-gd.x86_64 5.3.13-1.ius.el5 installed |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[vagrant@njlvagrant01 bdd]$ drush @vagrant.brz scenario | |
Feature: Authenticated user logs into the site. | |
As an authenticated user | |
I want to login to the site | |
In order to manage the contents of the site. | |
Scenario: Valid login redirects to Dashboard. # features/login.feature:7 | |
Given I am logged in as a user with the "authenticated user" role # FeatureContext::loginAsUserWithRole() | |
Then I should be on "/admin/dashboard" # FeatureContext::assertPageAddress() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$conf['elc_domain_overrides'] = array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Domain overrides so that absolute links stay within the same environment. | |
*/ | |
$conf['elc_domain_overrides'] = array( | |
'master_ecom' => array( | |
'path' => 'http://e.cremedelamer.master.cms.elcdev.net/', | |
), | |
'master_core' => array( | |
'path' => 'http://c.cremedelamer.master.cms.elcdev.net/', | |
), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @file | |
* Master domain mappings file for all brands and environments | |
*/ | |
$domains = array( | |
// Brand | |
'brz' => array( |