[geeklog-hg] geeklog: XMLSitemap plugin - Lastmod element is now optional (ne...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Apr 5 10:33:38 EDT 2014


changeset 9525:5493cc8bf9fc
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/5493cc8bf9fc
user: Tom <websitemaster at cogeco.net>
date: Sat Apr 05 10:33:01 2014 -0400
description:
XMLSitemap plugin - Lastmod element is now optional (new config option lastmod) for content types since in a lot of cases created date is returned instead (bug #0001755)

diffstat:

 plugins/xmlsitemap/configuration_validation.php     |  8 ++++----
 plugins/xmlsitemap/functions.inc                    |  2 +-
 plugins/xmlsitemap/install_defaults.php             |  5 +++++
 plugins/xmlsitemap/install_updates.php              |  4 ++++
 plugins/xmlsitemap/language/english.php             |  3 ++-
 plugins/xmlsitemap/language/english_utf-8.php       |  3 ++-
 plugins/xmlsitemap/language/estonian.php            |  3 ++-
 plugins/xmlsitemap/language/estonian_utf-8.php      |  3 ++-
 plugins/xmlsitemap/language/french_france.php       |  3 ++-
 plugins/xmlsitemap/language/french_france_utf-8.php |  3 ++-
 plugins/xmlsitemap/language/german.php              |  3 ++-
 plugins/xmlsitemap/language/german_formal.php       |  3 ++-
 plugins/xmlsitemap/language/german_formal_utf-8.php |  3 ++-
 plugins/xmlsitemap/language/german_utf-8.php        |  3 ++-
 plugins/xmlsitemap/language/hebrew_utf-8.php        |  3 ++-
 plugins/xmlsitemap/language/italian.php             |  3 ++-
 plugins/xmlsitemap/language/italian_utf-8.php       |  3 ++-
 plugins/xmlsitemap/language/japanese_utf-8.php      |  3 ++-
 plugins/xmlsitemap/language/slovenian.php           |  3 ++-
 plugins/xmlsitemap/language/slovenian_utf-8.php     |  3 ++-
 plugins/xmlsitemap/xmlsitemap.class.php             |  8 +++++---
 public_html/docs/english/xmlsitemap.html            |  9 +++++++--
 public_html/docs/japanese/xmlsitemap.html           |  5 +++++
 23 files changed, 63 insertions(+), 26 deletions(-)

diffs (truncated from 465 to 300 lines):

diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/configuration_validation.php
--- a/plugins/xmlsitemap/configuration_validation.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/configuration_validation.php	Sat Apr 05 10:33:01 2014 -0400
@@ -42,16 +42,16 @@
 
 // Update frequency
 $_CONF_VALIDATE['xmlsitemap']['frequencies[article]'] = array(
-    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'), true)
+    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never', 'hidden'), true)
 );
 $_CONF_VALIDATE['xmlsitemap']['frequencies[calendar]'] = array(
-    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'), true)
+    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never', 'hidden'), true)
 );
 $_CONF_VALIDATE['xmlsitemap']['frequencies[polls]'] = array(
-    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'), true)
+    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never', 'hidden'), true)
 );
 $_CONF_VALIDATE['xmlsitemap']['frequencies[staticpages]'] = array(
-    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never'), true)
+    'rule' => array('inList', array('always', 'hourly', 'daily', 'weekly', 'monthly', 'yearly', 'never', 'hidden'), true)
 );
 
 // Ping target
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/functions.inc
--- a/plugins/xmlsitemap/functions.inc	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/functions.inc	Sat Apr 05 10:33:01 2014 -0400
@@ -399,7 +399,7 @@
             case 'frequencies':
                 $value = strtolower(trim($value));
                 $valid_change_freqs = array('always', 'hourly', 'daily',
-                        'weekly', 'monthly', 'yearly', 'never');
+                        'weekly', 'monthly', 'yearly', 'never', 'hidden');
 
                 if (!is_numeric($key) && in_array($key, $enabled_plugins)
                         && in_array($value, $valid_change_freqs)) {
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/install_defaults.php
--- a/plugins/xmlsitemap/install_defaults.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/install_defaults.php	Sat Apr 05 10:33:01 2014 -0400
@@ -63,6 +63,9 @@
 // Plugins to exclude from sitemap
 $_XMLSMAP_DEFAULT['exclude'] = array('links');
 
+// Content types to include lastmod element for (last modification date)
+$_XMLSMAP_DEFAULT['lastmod'] = array('article', 'calendar', 'polls', 'staticpages');
+
 // Priorities (must be between 0.0 and 1.0; default value is 0.5)
 $_XMLSMAP_DEFAULT['priorities'] = array(
     'article'     => 0.5,
@@ -112,6 +115,8 @@
             true, $me, 0);
         $c->add('exclude', $_XMLSMAP_DEFAULT['exclude'], '%text', 0, 0, null,
             40, true, $me, 0);
+        $c->add('lastmod', $_XMLSMAP_DEFAULT['lastmod'], '%text', 0, 0, null,
+            50, true, $me, 0);        
 
         // Priorities
         $c->add('tab_pri', null, 'tab', 0, 1, null, 0, true, $me, 1);
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/install_updates.php
--- a/plugins/xmlsitemap/install_updates.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/install_updates.php	Sat Apr 05 10:33:01 2014 -0400
@@ -26,6 +26,10 @@
 
     $c = config::get_instance();
     $me = 'xmlsitemap';
+    
+    // Content types to include lastmod element
+    $c->add('lastmod', $_XMLSMAP_DEFAULT['lastmod'], '%text', 0, 0, null,
+        50, true, $me, 0);       
 
     // Ping targets
     $c->add('tab_ping', null, 'tab', 0, 3, null, 0, true, $me, 3);
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/english.php
--- a/plugins/xmlsitemap/language/english.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/english.php	Sat Apr 05 10:33:01 2014 -0400
@@ -49,6 +49,7 @@
     'mobile_sitemap_file' => 'Mobile Sitemap file name',
     'types'               => 'Contents of sitemap',
     'exclude'             => 'Plugins to exclude from sitemap',
+    'lastmod'             => 'Content Types to include lastmod element',    
     'priorities'          => '',
     'frequencies'         => '',
     'ping_google'         => 'Send ping to Google',
@@ -79,7 +80,7 @@
     1 => array('True' => TRUE, 'False' => FALSE),
     9 => array('Forward to page' => 'item', 'Display List' => 'list', 'Display Home' => 'home', 'Display Admin' => 'admin'),
     12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3),
-    20 => array('always' => 'always', 'hourly' => 'hourly', 'daily' => 'daily', 'weekly' => 'weekly', 'monthly' => 'monthly', 'yearly' => 'yearly', 'never' => 'never'),
+    20 => array('always' => 'always', 'hourly' => 'hourly', 'daily' => 'daily', 'weekly' => 'weekly', 'monthly' => 'monthly', 'yearly' => 'yearly', 'never' => 'never', 'hidden' => 'hidden'),
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/english_utf-8.php
--- a/plugins/xmlsitemap/language/english_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/english_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -49,6 +49,7 @@
     'mobile_sitemap_file' => 'Mobile Sitemap file name',
     'types'               => 'Contents of sitemap',
     'exclude'             => 'Plugins to exclude from sitemap',
+    'lastmod'             => 'Content Types to include lastmod element',
     'priorities'          => '',
     'frequencies'         => '',
     'ping_google'         => 'Send ping to Google',
@@ -79,7 +80,7 @@
     1 => array('True' => TRUE, 'False' => FALSE),
     9 => array('Forward to page' => 'item', 'Display List' => 'list', 'Display Home' => 'home', 'Display Admin' => 'admin'),
     12 => array('No access' => 0, 'Read-Only' => 2, 'Read-Write' => 3),
-    20 => array('always' => 'always', 'hourly' => 'hourly', 'daily' => 'daily', 'weekly' => 'weekly', 'monthly' => 'monthly', 'yearly' => 'yearly', 'never' => 'never'),
+    20 => array('always' => 'always', 'hourly' => 'hourly', 'daily' => 'daily', 'weekly' => 'weekly', 'monthly' => 'monthly', 'yearly' => 'yearly', 'never' => 'never', 'hidden' => 'hidden'),
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/estonian.php
--- a/plugins/xmlsitemap/language/estonian.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/estonian.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Mobile Saidikaardi faili nimi',
     'types' => 'Saidikaardi sisu',
     'exclude' => 'Saidikaardilt väljajäätavad pluginad',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Jah' => true, 'Ei' => false),
     9 => array('Suuna edasi lehele' => 'item', 'Näita loetelu' => 'list', 'Näita avalehte' => 'home', 'Näita admini lehte' => 'admin'),
     12 => array('Pole ligipääsu' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3),
-    20 => array('Alati' => 'always', 'Tunni tagant' => 'hourly', 'päeva tagant' => 'daily', 'nädala tagant' => 'weekly', 'kuu tagant' => 'monthly', 'aasta tagant' => 'yearly', 'mitte kunagi' => 'never')
+    20 => array('Alati' => 'always', 'Tunni tagant' => 'hourly', 'päeva tagant' => 'daily', 'nädala tagant' => 'weekly', 'kuu tagant' => 'monthly', 'aasta tagant' => 'yearly', 'mitte kunagi' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/estonian_utf-8.php
--- a/plugins/xmlsitemap/language/estonian_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/estonian_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Mobile Saidikaardi faili nimi',
     'types' => 'Saidikaardi sisu',
     'exclude' => 'Saidikaardilt väljajäätavad pluginad',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Jah' => true, 'Ei' => false),
     9 => array('Suuna edasi lehele' => 'item', 'Näita loetelu' => 'list', 'Näita avalehte' => 'home', 'Näita admini lehte' => 'admin'),
     12 => array('Pole ligipääsu' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3),
-    20 => array('Alati' => 'always', 'Tunni tagant' => 'hourly', 'päeva tagant' => 'daily', 'nädala tagant' => 'weekly', 'kuu tagant' => 'monthly', 'aasta tagant' => 'yearly', 'mitte kunagi' => 'never')
+    20 => array('Alati' => 'always', 'Tunni tagant' => 'hourly', 'päeva tagant' => 'daily', 'nädala tagant' => 'weekly', 'kuu tagant' => 'monthly', 'aasta tagant' => 'yearly', 'mitte kunagi' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/french_france.php
--- a/plugins/xmlsitemap/language/french_france.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/french_france.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Nom du fichier Sitemap Mobile',
     'types' => 'Contenu du sitemap',
     'exclude' => 'Plugins à exclure du sitemap',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Vrai' => true, 'Faux' => false),
     9 => array('Tranférer à la page' => 'item', 'Afficher la liste' => 'list', 'Afficher page d\'accueil' => 'home', 'Afficher page d\'administration' => 'admin'),
     12 => array('Pas d\'accès' => 0, 'Lecture seule' => 2, 'Lecture Ecriture' => 3),
-    20 => array('toujours' => 'always', 'Toutes les heures' => 'hourly', 'Quotidienne' => 'daily', 'Hebdomadaire' => 'weekly', 'mensuelle' => 'monthly', 'annuelle' => 'yearly', 'jamais' => 'never')
+    20 => array('toujours' => 'always', 'Toutes les heures' => 'hourly', 'Quotidienne' => 'daily', 'Hebdomadaire' => 'weekly', 'mensuelle' => 'monthly', 'annuelle' => 'yearly', 'jamais' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/french_france_utf-8.php
--- a/plugins/xmlsitemap/language/french_france_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/french_france_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Nom du fichier Sitemap Mobile',
     'types' => 'Contenu du sitemap',
     'exclude' => 'Plugins à exclure du sitemap',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Vrai' => true, 'Faux' => false),
     9 => array('Tranférer à la page' => 'item', 'Afficher la liste' => 'list', 'Afficher page d\'accueil' => 'home', 'Afficher page d\'administration' => 'admin'),
     12 => array('Pas d\'accès' => 0, 'Lecture seule' => 2, 'Lecture Ecriture' => 3),
-    20 => array('toujours' => 'always', 'Toutes les heures' => 'hourly', 'Quotidienne' => 'daily', 'Hebdomadaire' => 'weekly', 'mensuelle' => 'monthly', 'annuelle' => 'yearly', 'jamais' => 'never')
+    20 => array('toujours' => 'always', 'Toutes les heures' => 'hourly', 'Quotidienne' => 'daily', 'Hebdomadaire' => 'weekly', 'mensuelle' => 'monthly', 'annuelle' => 'yearly', 'jamais' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/german.php
--- a/plugins/xmlsitemap/language/german.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/german.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Dateiname der Mobile Sitemap',
     'types' => 'Inhalt der Sitemap',
     'exclude' => 'Plugins, die nicht in der Sitemap erscheinen sollen',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Richtig' => true, 'Falsch' => false),
     9 => array('Weiterleiten zu Seite' => 'item', 'Liste anzeigen' => 'list', 'Home anzeigen' => 'home', 'Admin anzeigen' => 'admin'),
     12 => array('Kein Zugang' => 0, 'Nur lesen' => 2, 'Lesen-schreiben' => 3),
-    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never')
+    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/german_formal.php
--- a/plugins/xmlsitemap/language/german_formal.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/german_formal.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Dateiname der Mobile Sitemap',
     'types' => 'Inhalt der Sitemap',
     'exclude' => 'Plugins, die nicht in der Sitemap erscheinen sollen',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Richtig' => true, 'Falsch' => false),
     9 => array('Weiterleiten zu Seite' => 'item', 'Liste anzeigen' => 'list', 'Home anzeigen' => 'home', 'Admin anzeigen' => 'admin'),
     12 => array('Kein Zugang' => 0, 'Nur lesen' => 2, 'Lesen-schreiben' => 3),
-    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never')
+    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/german_formal_utf-8.php
--- a/plugins/xmlsitemap/language/german_formal_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/german_formal_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Dateiname der Mobile Sitemap',
     'types' => 'Inhalt der Sitemap',
     'exclude' => 'Plugins, die nicht in der Sitemap erscheinen sollen',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Richtig' => true, 'Falsch' => false),
     9 => array('Weiterleiten zu Seite' => 'item', 'Liste anzeigen' => 'list', 'Home anzeigen' => 'home', 'Admin anzeigen' => 'admin'),
     12 => array('Kein Zugang' => 0, 'Nur lesen' => 2, 'Lesen-schreiben' => 3),
-    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never')
+    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/german_utf-8.php
--- a/plugins/xmlsitemap/language/german_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/german_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'Dateiname der Mobile Sitemap',
     'types' => 'Inhalt der Sitemap',
     'exclude' => 'Plugins, die nicht in der Sitemap erscheinen sollen',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('Richtig' => true, 'Falsch' => false),
     9 => array('Weiterleiten zu Seite' => 'item', 'Liste anzeigen' => 'list', 'Home anzeigen' => 'home', 'Admin anzeigen' => 'admin'),
     12 => array('Kein Zugang' => 0, 'Nur lesen' => 2, 'Lesen-schreiben' => 3),
-    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never')
+    20 => array('immer' => 'always', 'stündlich' => 'hourly', 'täglich' => 'daily', 'wöchentlich' => 'weekly', 'monatlich' => 'monthly', 'jährlich' => 'yearly', 'nie' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/hebrew_utf-8.php
--- a/plugins/xmlsitemap/language/hebrew_utf-8.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/hebrew_utf-8.php	Sat Apr 05 10:33:01 2014 -0400
@@ -45,6 +45,7 @@
     'mobile_sitemap_file' => 'שם קובץ Mobile Sitemap',
     'types' => 'תוכן ה-sitemap',
     'exclude' => 'Plugins שלא יכללו ב-sitemap',
+    'lastmod' => 'Content Types to include lastmod element',
     'priorities' => '',
     'frequencies' => '',
     'ping_google' => 'Send ping to Google',
@@ -75,7 +76,7 @@
     1 => array('כן' => true, 'לא' => false),
     9 => array('הפנייה לעמוד' => 'item', 'הצגת רשימה' => 'list', 'הצגת דף הבית' => 'home', 'הצגת דף הניהול' => 'admin'),
     12 => array('אין גישה' => 0, 'קריאה בלבד' => 2, 'קריאה וכתיבה' => 3),
-    20 => array('תמיד' => 'always', 'כל שעה' => 'hourly', 'יומי' => 'daily', 'שבועי' => 'weekly', 'חודשי' => 'monthly', 'שנתי' => 'yearly', 'אף פעם' => 'never')
+    20 => array('תמיד' => 'always', 'כל שעה' => 'hourly', 'יומי' => 'daily', 'שבועי' => 'weekly', 'חודשי' => 'monthly', 'שנתי' => 'yearly', 'אף פעם' => 'never', 'hidden' => 'hidden')
 );
 
 ?>
diff -r 2eeba6316e9f -r 5493cc8bf9fc plugins/xmlsitemap/language/italian.php
--- a/plugins/xmlsitemap/language/italian.php	Sat Mar 29 12:52:41 2014 -0400
+++ b/plugins/xmlsitemap/language/italian.php	Sat Apr 05 10:33:01 2014 -0400
@@ -41,6 +41,7 @@
     'mobile_sitemap_file' => 'Nome del file per Sitemap per Dispositivi Mobili',
     'types' => 'Contenuto di sitemap',
     'exclude' => 'Estensioni da escludere dal Sitemap',
+    'lastmod' => 'Content Types to include lastmod element',



More information about the geeklog-cvs mailing list