t\(['"]([\w\s%])+['"]
  
    
      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
    
  
  
    
  | # Various rewrite rules. | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine on | |
| # redirect to non www domain to www | |
| RewriteCond %{HTTP_HOST} !\.acquia-sites\.com [NC] # exclude Acquia default domains | |
| RewriteCond %{HTTP_HOST} !\.walkingmen\.com [NC] # exclude Walkingmen test domains | |
| RewriteCond %{HTTP_HOST} !^www\. [NC] | |
| RewriteCond %{ENV:AH_SITE_ENVIRONMENT} prod | |
| RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | 
  
    
      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 | |
| function mymodule_i18n_string_list_taxonomy_alter(&$strings, $type, $object) { | |
| if ($type == 'taxonomy_term' && $object) { | |
| // Retrieve vocabulary and potential field instances | |
| // for this vocabulary. | |
| $vid = $object->vid; | |
| $vocabulary = taxonomy_vocabulary_load($vid); | |
| $field_instances = field_info_instances($type, $vocabulary->machine_name); | 
  
    
      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
    
  
  
    
  | <!-- | |
| run this bit once to change the database structure | |
| We use mssql server and it does not support indexes on fields that are longer than 900bytes, | |
| to allow a decent length of encoded urls we need more so the index had to be removed. | |
| As we don't have ma ny pages in this site this did not have a performance inpact, | |
| on larger sites this might not be a good idea. | |
| --> | |
| <cfscript> | |
| $.getBean('dbUtility') | |
| .setTable("tcontent") | 
  
    
      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
    
  
  
    
  | <?xml version="1.0" encoding="UTF-8"?> | |
| <configuration> | |
| <system.webServer> | |
| <!-- | |
| This setting enabled the use of the escaped character in the url, | |
| IIs however still tries to decode them using the windows charset | |
| --> | |
| <security> | |
| <requestFiltering allowDoubleEscaping="true" allowHighBitCharacters="true" /> | |
| </security> |