80d6f3ee |
1 | <CONTENT VERSION="1.0" LANG="fr" CHARSET="utf-8"/> |
314c311a |
2 | <!--[ |
3 | |
4 | LODEL - Logiciel d'Edition ELectronique. |
5 | Copyright (c) 2001-2002, Ghislain Picard, Marin Dacos |
6 | Copyright (c) 2003, Ghislain Picard, Marin Dacos, Luc Santeramo, Nicolas Nutten, Anne Gentil-Beccot |
57f2a4ac |
7 | Copyright (c) 2004, Ghislain Picard, Marin Dacos, Luc Santeramo, Anne Gentil-Beccot, Bruno Cénou |
314c311a |
8 | |
9 | Home page: http://www.lodel.org |
10 | E-Mail: lodel@lodel.org |
11 | All Rights Reserved |
12 | This program is free software; you can redistribute it and/or modify |
13 | it under the terms of the GNU General Public License as published by |
14 | the Free Software Foundation; either version 2 of the License, or |
15 | (at your option) any later version. |
16 | This program is distributed in the hope that it will be useful, |
17 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
18 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
19 | GNU General Public License for more details. |
20 | You should have received a copy of the GNU General Public License |
21 | along with this program; if not, write to the Free Software |
22 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.]--> |
23 | |
24 | |
25 | <USE MACROFILE="macros_technique.html"> |
26 | <USE MACROFILE="macros_site.html"> |
27 | <MACRO NAME="ENTETE_XML"> |
28 | <urlset xmlns="http://www.google.com/schemas/sitemap/0.84" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.google.com/schemas/sitemap/0.84 http://www.google.com/schemas/sitemap/0.84/sitemap.xsd"> |
29 | |
30 | <!--[Page d'accueil du site]--> |
31 | <url> |
32 | <loc>[(#CURRENTURL|dirname)]/</loc> <!--[ URL]--> |
33 | <lastmod>[#MODIFICATIONDATE|formateddate("%Y-%m-%dT%T")]</lastmod> <!--[ Date au format ISO 8601 ]--> |
34 | <changefreq>always</changefreq> <!--[ Frequence de changement des urls : always, hourly,daily,...]--> |
57f2a4ac |
35 | <priority>1.0</priority> <!--[ Priorité de l'url par rapport aux autres ]--> |
314c311a |
36 | </url> |
37 | |
38 | <!--[ ************************************************* ]--> |
39 | <!--[ Boucle affichant toutes les urls du site (entites) ]--> |
40 | <!--[ ************************************************* ]--> |
41 | <LOOP NAME="sitemapentities" TABLE="entities" WHERE="status GT 0"> |
42 | <DO> |
43 | <url> |
44 | <loc>[(#CURRENTURL|dirname)]/[#ID|makeurlwithid]</loc> |
45 | <lastmod>[#MODIFICATIONDATE|formateddate("%Y-%m-%dT%T")]</lastmod> |
46 | <changefreq>daily</changefreq> |
47 | <priority>0.9</priority> |
48 | </url> |
49 | </DO> |
50 | </LOOP> |
51 | |
52 | <!--[ ************************************************* ]--> |
53 | <!--[Boucle affichant les indexs ]--> |
54 | <!--[ ************************************************* ]--> |
55 | <LOOP NAME="sitemapentries" TABLE="entries" WHERE="status GT 0"> |
56 | <DO> |
57 | <url> |
58 | <loc>[(#CURRENTURL|dirname)]/[#ID|makeurlwithid]</loc> |
59 | <lastmod>[#UPD|formateddate("%Y-%m-%dT%T")]</lastmod> |
60 | <changefreq>daily</changefreq> |
61 | <priority>0.8</priority> |
62 | </url> |
63 | </DO> |
64 | </LOOP> |
65 | |
66 | <!--[ ************************************************* ]--> |
67 | <!--[Boucle affichant les index de personnes ]--> |
68 | <!--[ ************************************************* ]--> |
69 | <LOOP NAME="sitemappersons" TABLE="persons" WHERE="status GT 0"> |
70 | <DO> |
71 | <url> |
72 | <loc>[(#CURRENTURL|dirname)]/[#ID|makeurlwithid]</loc> |
73 | <lastmod>[#UPD|formateddate("%Y-%m-%dT%T")]</lastmod> |
74 | <changefreq>daily</changefreq> |
75 | <priority>0.8</priority> |
76 | </url> |
77 | </DO> |
78 | </LOOP> |
79 | </urlset> |