/[drupal]/contributions/modules/cdn/README.txt
ViewVC logotype

Diff of /contributions/modules/cdn/README.txt

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.10, Sat Jan 12 16:19:17 2008 UTC revision 1.11, Sat Jan 12 16:32:25 2008 UTC
# Line 1  Line 1 
1  // $Id: README.txt,v 1.9 2008/01/12 15:26:55 wimleers Exp $  // $Id: README.txt,v 1.10 2008/01/12 16:19:17 wimleers Exp $
2    
3  Description  Description
4  -----------  -----------
# Line 144  $conf = array( Line 144  $conf = array(
144        'unique_method' => 'mtime',        'unique_method' => 'mtime',
145      ),      ),
146    
     // Add all files in the files/css directory, *but* update the URLs in the  
     // files. This is only necessary if we use CSS aggregation.  
     2 => array(  
       'paths' => array('sites/wimleers.com/files/css'),  
       'pattern' => '.*',  
       'ignored_dirs' => array('CVS'),  
       'unique' => 'filename',  
       'unique_method' => 'mtime',  
       'update_urls_in_files' => TRUE,  
     ),  
   
147      // Add all Javascript, CSS, image and font files from our themes. But      // Add all Javascript, CSS, image and font files from our themes. But
148      // make sure the URLs don't break when CSS aggregation is disabled, by      // make sure the URLs don't break when CSS aggregation is disabled, by
149      // using the "common parent directory" unique level and the "md5 of mtimes"      // using the "common parent directory" unique level and the "md5 of mtimes"
150      // uniqueness method. We can revert to normal values if we have CSS      // uniqueness method. We can revert to normal values if we have CSS
151      // aggregation enabled.      // aggregation enabled.
152      3 => array(      2 => array(
153        'paths' => array('sites/default/themes/garland-customized'),        'paths' => array('sites/default/themes/garland-customized'),
154        'pattern' => '.*\.(js|css|gif|png|jpg|jpeg|otf)$', // We *include* css files, because some (e.g. fix-ie.css) are not included in the aggregation.        'pattern' => '.*\.(js|css|gif|png|jpg|jpeg|otf)$', // We *include* css files, because some (e.g. fix-ie.css) are not included in the aggregation.
155        'ignored_dirs' => array('CVS'),        'ignored_dirs' => array('CVS'),
156        'unique' => 'common parent directory',        'unique' => 'common parent directory',
157        'unique_method' => 'md5 of mtimes',        'unique_method' => 'md5 of mtimes',
158      ),      ),
159    
160        // Add all files in the files/css directory, *but* update the URLs in the
161        // files. This is only necessary if we use CSS aggregation.
162        // This filter must come after the images and fonts referenced in the CSS
163        // files have been synchronized!
164        2 => array(
165          'paths' => array('sites/wimleers.com/files/css'),
166          'pattern' => '.*',
167          'ignored_dirs' => array('CVS'),
168          'unique' => 'filename',
169          'unique_method' => 'mtime',
170          'update_urls_in_files' => TRUE,
171        ),
172    ),    ),
173    'cdn_sync_method' => 'ftp',    'cdn_sync_method' => 'ftp',
174    'cdn_sync_method_settings' => array(    'cdn_sync_method_settings' => array(

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

  ViewVC Help
Powered by ViewVC 1.1.2