Changeset 6260


Ignore:
Timestamp:
May 20, 2010, 10:59:39 PM (14 years ago)
Author:
rvelices
Message:

rv_sitemap compatible with 2.1

Location:
extensions/rv_sitemap
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • extensions/rv_sitemap/changelog.txt

    r3417 r6260  
     12.1.a
     2        - compatible with piwigo core 2.1.0
     3
    142.0.a
    25        - compatible with piwigo
  • extensions/rv_sitemap/main.inc.php

    r3417 r6260  
    11<?php /*
    22Plugin Name: RV sitemap
    3 Version: 2.0.a
     3Version: 2.1.a
    44Description: Creates a sitemap for your gallery. Sitemaps are used to inform search engines about pages that are available for crawling.
    5 Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=78
     5Plugin URI: http://piwigo.org/ext/extension_view.php?eid=78
    66Author: rvelices
    77Author URI: http://www.modusoptimus.com/
  • extensions/rv_sitemap/sitemap.php

    r3417 r6260  
    8585
    8686$specials = array(
    87   'categories' => array('L'=>l10n('home'), 'P'=>0.9),
    88   'best_rated' => array( 'L'=>l10n('best_rated_cat'), 'P'=>0.8 ) ,
    89   'most_visited' => array('L'=>l10n('most_visited_cat'), 'P'=>0.8 ),
    90   'recent_pics' => array('L'=>l10n('recent_pics_cat'), 'P'=>0.8, 'F'=>'weekly' ),
     87  'categories' => array('L'=>l10n('Home'), 'P'=>0.9),
     88  'best_rated' => array( 'L'=>l10n('Best rated'), 'P'=>0.8 ) ,
     89  'most_visited' => array('L'=>l10n('Most visited'), 'P'=>0.8 ),
     90  'recent_pics' => array('L'=>l10n('Recent pictures'), 'P'=>0.8, 'F'=>'weekly' ),
    9191  'tags' => array('L'=>l10n('Tags'), 'PAGE'=>'tags' . ($conf['php_extension_in_urls'] ? '.php' : '' ), 'P'=>0.8 ),
    9292  );
Note: See TracChangeset for help on using the changeset viewer.