Changeset 123

Show
Ignore:
Timestamp:
10/01/06 11:12:23 (2 years ago)
Author:
evdb
Message:

Made the google sitemap tools and changes to support them.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/PrlMnks/DBI.pm

    r82 r123  
    6363      " ON nodes( type_name, year );"; 
    6464 
    65     push @sql,                                 
    66       "CREATE INDEX nodes_type_year_month_index" 
     65    push @sql,                                     
     66      "CREATE INDEX nodes_type_year_month_index"    # 
    6767      . " ON nodes( type_name, year, month );"; 
     68 
     69    push @sql,                                      # 
     70      "CREATE INDEX nodes_root_node_id_index"       # 
     71      . " ON nodes( root_node_id );"; 
    6872 
    6973    for (@sql) { 
  • trunk/lib/PrlMnks/Plugin.pm

    r96 r123  
    202202    'txt'  => 'text/plain', 
    203203    'xml'  => 'text/xml', 
     204    'gz'   => 'application/x-gzip', 
    204205); 
    205206