/[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.15, Tue Jan 22 11:57:28 2008 UTC revision 1.16, Sun Jan 27 14:21:47 2008 UTC
# Line 1  Line 1 
1  // $Id: README.txt,v 1.14 2008/01/21 21:45:31 wimleers Exp $  // $Id: README.txt,v 1.15 2008/01/22 11:57:28 wimleers Exp $
2    
3  Description  Description
4  -----------  -----------
# Line 124  Configuring the $conf array in settings. Line 124  Configuring the $conf array in settings.
124  This is my configuration:  This is my configuration:
125    
126  $conf = array(  $conf = array(
   // Configure Drupal core's file URL rewriting ability. If any of the  
   // functions listed here fails, Drupal will default to its own ("normal")  
   // file URL rewriting function.  
   'file_url_rewrite' => array(  
     'cdn_file_url', // List the CDN module's URL rewrite function as the preferred server.  
   ),  
   
127    // CDN integration module settings.    // CDN integration module settings.
128    'cdn_url' => 'http://wimleers.cachefly.com/wimleers.com',    'cdn_url' => 'http://wimleers.cachefly.com/wimleers.com',
129    'cdn_sync_filters' => array(    'cdn_sync_filters' => array(
# Line 167  $conf = array( Line 160  $conf = array(
160        'update_urls_in_files' => TRUE,        'update_urls_in_files' => TRUE,
161      ),      ),
162    
163      // Add all files in the files/js directory. This is only necessary if we      // Add all files in the files/js directory, *but* update the URLs in the
164      // use JS aggregation.      // files. This is only necessary if we use JS aggregation.
165      3 => array(      3 => array(
166        'paths' => array('sites/wimleers.com/files/js'),        'paths' => array('sites/wimleers.com/files/js'),
167        'pattern' => '.*',        'pattern' => '.*',
168        'ignored_dirs' => array('CVS'),        'ignored_dirs' => array('CVS'),
169        'unique' => 'filename',        'unique' => 'filename',
170        'unique_method' => 'mtime',        'unique_method' => 'mtime',
171          'update_urls_in_files' => TRUE,
172      ),      ),
173    
174      // Add all Javascript, CSS, image and font files from our themes. But      // Add all Javascript, CSS, image and font files from our themes. But

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.16

  ViewVC Help
Powered by ViewVC 1.1.2