Sublime – Change font size of folder sidebar

Select Preferences / Browse Packages…, and go to Theme - Default directory.

Open Default.sublime-theme with your editor and search for sidebar_label string. You should find something like:

{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false
}

You can add here the font size you prefer:
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 14.0
}

New pattern to toggle features in JSP

From: Thompson, Sonya (HAL)
Sent: Thursday, May 24, 2012 9:19 AM
To: Ruckman, Maurice (HAL); Fillman, Eric (HAL); Phatak, Sheetal (HAL); Klein, Brian (HAL); Bojja, Sridhar (HAL Contractor)
Cc: Augustine, Anila (HAL)
Subject: RE: New feature to toggle features in JSP

I've also created a FeatureToggleHelper.java with getFeatureToggle() and getFeatureToggleAsString() methods.
This helper knows where the featureToggles.xml file is located & appends the "toggles.{environment}." To the front of whatever key is passed in.
However, this will not be avail until I merge it into 12.23

From: Ruckman, Maurice (HAL)
Sent: Thursday, May 24, 2012 7:31 AM
To: Fillman, Eric (HAL); Thompson, Sonya (HAL); Phatak, Sheetal (HAL); Klein, Brian (HAL); Bojja, Sridhar (HAL Contractor)
Cc: Augustine, Anila (HAL)
Subject: RE: New feature to toggle features in JSP

To supplement this effort, here is an example of how to access our XML in the back-end Java code to drive logic:
Refer: hal-ejb/src/main/java/com/hal/sf/olci/page/AcceptPrintTermsPage.java

if ( StaticXmlDataList.getInstance().getStaticXmlFileMap().get(
"web.copy.olci.acceptTerms_logic.xml" ).get(
"page.EUTerms." + guestCountry ) != null )
{
setEuropeanUnion( true );
}
else
{
setEuropeanUnion( false );
}
From: Fillman, Eric (HAL)
Sent: Friday, May 18, 2012 4:09 PM
To: Thompson, Sonya (HAL); Phatak, Sheetal (HAL); Ruckman, Maurice (HAL); Klein, Brian (HAL); Bojja, Sridhar (HAL Contractor)
Cc: Augustine, Anila (HAL)
Subject: New feature to toggle features in JSP

Hi.

Sonya and I put together a little process that will allow you to control when a new feature or new code will be used.
It starts with a  file in Teamsite called featureToggles.xml, and it's in the web/copy/features directory.

Here's a very condensed sample of what the file looks like:

<toggles>

<!-- Use the following section to control how features will be enabled in the non-production environments -->

<nonProd>
<displayGroupExcursions><![CDATA[true]]></displayGroupExcursions>
</nonProd>

<!-- Use the following section to control how features will be enabled in the PRODUCTION environment -->

<prod>
<displayGroupExcursions><![CDATA[false]]></displayGroupExcursions>
</prod>

</toggles>

Essentially there are two sections - <nonProd> and <prod>.  <prod> would be used for production, <nonProd> will be used for everything else.  Within each you define an element and indicate whether that feature will be used/displayed/etc. within the JSP.  In the example above, <displayGroupExcursions> can be used to control the group excursion functionality.  It's currently set to true for nonProd so group excursion features will display there, but false for prod.

This way we can push code to dev, test, and prod, and have the features available in dev and test, but not prod.  Once the OK is given for prod, we just need to change the XML and push that through Teamsite.  If we need to shut a feature off for some reason in prod, we can do that too.

To use the featureToggles.xml, you just need to include a reference to it in the JSP like we do for all the static content XML files:

<s:set var="featureMap" value="#application.staticXmlDataList.staticXmlFileMap['web.copy.features.featureToggles.xml']"/>

Then in the JSP code, add an if statement to check the value of your feature name:

<s:if test="#featureMap['toggles.' + featureEnv + '.displayGroupExcursions'] == 'true'">
<!-- These are Group Excursions!-->
<s:if test="%{!getShxGroupTourBizList().isEmpty()}">

// Do something here

</s:if>
</s:if>

Notice the featureEnv variable in the highlighted line above.  We added a method to the BaseAction class called getFeatureEnv() that will return a string value of either nonProd or prod depending on the environment variable set in the System Properties.  If environment is prd, it returns prod, otherwise it returns nonProd.  As long as your JSP is called from an Action that extends BaseAction (which I think everything is the new flows do), your JSP should have access to featureEnv.

You should also be capable of accessing the XML file directly from an action if you want to control which methods are being called from a service or something, but we didn't get that far with it.

The code is in 12.21-RC, so it should go to prod next week.

Let me or Sonya know if you have any questions.

Thanks.

Eric

Offshore accounts for development

From: Siwek, John (HAL)
Sent: Tuesday, March 20, 2012 11:54 AM
To: Augustine, Anila (HAL)
Cc: Ruckman, Maurice (HAL)
Subject: RE: HALSANDERSON01.flagship.hal.com & HALSANDERSON02.flagship.hal.com

Yes. He just needs to use Remote Desktop from Citrix/My Apps/Remote Desktop Icon and put in HALWedDev01 or 02

John Siwek
Windows & Virtualization Technology, Lead
Holland America Line

From: Siwek, John (HAL)
Sent: Monday, March 19, 2012 9:14 AM
To: Augustine, Anila (HAL)
Cc: Ruckman, Maurice (HAL)
Subject: Re: HALSANDERSON01.flagship.hal.com & HALSANDERSON02.flagship.hal.com

Thank you for the reminder Anila!

John Siwek
Lead, Windows & Virtualization Technologies

On Mar 19, 2012, at 9:10 AM, "Augustine, Anila (HAL)" <AAugustine@HollandAmerica.com> wrote:
Hi John,

As discussed a few weeks ago, could you please rename HALSANDERSON01.flagship.hal.com & HALSANDERSON02.flagship.hal.com   to a more generic name?

Also, we need to add C-MVargas (Maximiliano Vargas) to one of the VMs. I have sent Max the instructions to citrix, but would he be able to access these VMs like the rest of the VMs? If not, we need to make that happen asap ?

Let me know if you have any questions.

Thanks
Anila

Single Sign-on in Firefox

Use the about:config and then white list all of the URL that should use it, such as:

network.automatic-ntlm-auth.allow-proxies;true
network.automatic-ntlm-auth.trusted-uris;http://halprdtlf01.flagship.hal.com,http://halit

SSB BART – ADA Report

From: Wilson, James (HAL Contractor)
Sent: Tuesday, March 13, 2012 1:11 PM
To: Sankar, Kousalya (HAL); Mirza, Masood (HAL Contractor); Vargas, Maximiliano (HAL Contractor); Thompson, Sonya (HAL); Fillman, Eric (HAL); Ruckman, Maurice (HAL); Phatak, Sheetal (HAL); 'mvargas@hexacta.com'
Cc: Augustine, Anila (HAL); O'Connor, Fran (HAL)
Subject: FW: Access to the SSB BART Group's online report tool for ADA Compliance

Hi all,

You now have access to the SSB BART Group's online accessibility report tool:  https://amp.ssbbartgroup.com/login.php.  This tool has all of the accessibility details on violations, as described in the JIRA Issues (ADACOMP project:  http://halpjira01:8080/browse/ADACOMP).

Please login by using the instructions below provided by Eduardo.  You can change the password after you login the first time. Let me know if you have any problems.

Thanks,
James

-----Original Message-----
From: Eduardo Meza-Etienne [mailto:eduardo.meza@ssbbartgroup.com]
Sent: Tuesday, March 13, 2012 12:53 PM
To: Wilson, James (HAL Contractor)
Subject: RE: Access to the SS

James:

I have created the user in our platform. Everybody should be able to login using their email address as the login and "Password#1" (without quotes) as the password.

Please let me know if there are any problems for people to login.

Regards,

Eduardo