Changeset 107430 in spip-zone for _dev_/univers_spip
- Timestamp:
- Nov 8, 2017, 6:38:30 PM (3 years ago)
- Location:
- _dev_/univers_spip
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
_dev_/univers_spip/base/univers.php
r38334 r107430 86 86 if (version_compare($current_version,"0.1.4",'<')){ 87 87 include_spip('inc/univers'); 88 $res = sql_select('referer','spip_referers',"referer LIKE '%spip.php%' AND referer NOT LIKE 'http ://www.spip-contrib.net%' AND referer NOT LIKE '%localhost%'");88 $res = sql_select('referer','spip_referers',"referer LIKE '%spip.php%' AND referer NOT LIKE 'https://contrib.spip.net%' AND referer NOT LIKE '%localhost%'"); 89 89 echo "Import depuis les referer %spip.php% : ".sql_count($res)." <br />"; 90 90 while ($row = sql_fetch($res)) … … 93 93 } 94 94 if (version_compare($current_version,"0.1.5",'<')){ 95 $res = sql_select('referer','spip_referers',"referer LIKE '%/ecrire/%' AND referer NOT LIKE 'http ://www.spip-contrib.net%' AND referer NOT LIKE '%localhost%'");95 $res = sql_select('referer','spip_referers',"referer LIKE '%/ecrire/%' AND referer NOT LIKE 'https://contrib.spip.net%' AND referer NOT LIKE '%localhost%'"); 96 96 echo "Import depuis les referer %/ecrire/% : ".sql_count($res)." <br />"; 97 97 while ($row = sql_fetch($res)) … … 131 131 function univers_vider_tables($nom_meta_base_version) { 132 132 effacer_meta($nom_meta_base_version); 133 sql_drop_table("spip_websites_key"); 133 sql_drop_table("spip_websites_plugins"); 134 sql_drop_table("spip_websites"); 134 135 } 135 136 137 ?> -
_dev_/univers_spip/exec/universparse.php
r38334 r107430 32 32 } 33 33 34 35 ?> -
_dev_/univers_spip/genie/univers_feed.php
r38334 r107430 13 13 } 14 14 15 16 ?> -
_dev_/univers_spip/genie/univers_referers.php
r47079 r107430 13 13 } 14 14 15 16 ?> -
_dev_/univers_spip/inc/univers.php
r95850 r107430 85 85 86 86 function univers_rechercher_referers($date){ 87 $res = sql_select('referer','spip_referers',"date=".sql_quote($date)." AND referer LIKE '%spip.php%' AND referer NOT LIKE 'http ://www.spip-contrib.net%' AND referer NOT LIKE '%localhost%'");87 $res = sql_select('referer','spip_referers',"date=".sql_quote($date)." AND referer LIKE '%spip.php%' AND referer NOT LIKE 'https://contrib.spip.net%' AND referer NOT LIKE '%localhost%'"); 88 88 spip_log("Import depuis les referer du $date : %spip.php% , ".sql_count($res),"universreferers"); 89 89 while ($row = sql_fetch($res)) { … … 92 92 } 93 93 94 $res = sql_select('referer','spip_referers',"date=".sql_quote($date)." AND referer LIKE '%/ecrire/%' AND referer NOT LIKE 'http ://www.spip-contrib.net%' AND referer NOT LIKE '%localhost%'");94 $res = sql_select('referer','spip_referers',"date=".sql_quote($date)." AND referer LIKE '%/ecrire/%' AND referer NOT LIKE 'https://contrib.spip.net%' AND referer NOT LIKE '%localhost%'"); 95 95 spip_log("Import depuis les referer du $date : %/ecrire/% , ".sql_count($res),"universreferers"); 96 96 while ($row = sql_fetch($res)) { … … 235 235 $page = preg_replace(",</?title>,ims","\n",implode($titles)); 236 236 237 preg_match_all(",http ://[^?\"'#;:\s]*,ims", $page, $regs, PREG_SET_ORDER);237 preg_match_all(",https?://[^?\"'#;:\s]*,ims", $page, $regs, PREG_SET_ORDER); 238 238 $urls = array_map('reset',$regs); 239 239 foreach($urls as $k=>$url) { 240 if (!preg_match(",http ://[^?\"'#;:]*spip[.]php3?,Uims", $url)){240 if (!preg_match(",https?://[^?\"'#;:]*spip[.]php3?,Uims", $url)){ 241 241 // essayer de l'elargir 242 242 if (!isset($long[$url])){ … … 250 250 } 251 251 } 252 if (!preg_match(",http ://[^?\"'#;:]*spip[.]php3?,Uims", $url)){252 if (!preg_match(",https?://[^?\"'#;:]*spip[.]php3?,Uims", $url)){ 253 253 unset($urls[$k]); 254 254 } … … 291 291 //MORT 'twitter'=>"http://search.twitter.com/search.atom?q=spip.php", 292 292 'twitter' => 'https://blog.spip.net/?page=backend-twitter-spip', 293 'spipnet'=>"http ://www.spip.net/?page=backend-sites-sous-spip&id_article=884",293 'spipnet'=>"https://www.spip.net/?page=backend-sites-sous-spip&id_article=884", 294 294 //MORT 'googlenews'=>"http://news.google.fr/news?pz=1&cf=all&ned=fr&hl=fr&q=%22spip.php%22&cf=all&output=rss", 295 'delisarka'=>'http://feeds.delicious.com/v2/rss/sarkaspip?count=10',295 //MORT 'delisarka'=>'http://feeds.delicious.com/v2/rss/sarkaspip?count=10', 296 296 //MORT 'identica'=>"http://identi.ca/search/notice/rss?q=spip.php", 297 297 ); -
_dev_/univers_spip/inc/univers_analyser.php
r97960 r107430 237 237 elseif ($res['response']===true) { 238 238 $set['ip'] = $res['ip']; 239 $set['server'] = $res['server']?$res['server']:'';240 $set['php'] = $res['php']?$res['php']:'';241 $set['gzip'] = $res['gzip']?'oui':'';242 $set['length'] = $res['length']?$res['length']:0;243 $set['size'] = $res['size']?$res['size']:0;239 $set['server'] = !empty($res['server'])?$res['server']:''; 240 $set['php'] = !empty($res['php'])?$res['php']:''; 241 $set['gzip'] = !empty($res['gzip'])?'oui':''; 242 $set['length'] = !empty($res['length'])?$res['length']:0; 243 $set['size'] = !empty($res['size'])?$res['size']:0; 244 244 245 245 if (isset($res['spip'])){ … … 301 301 return geoip_country_code_by_addr($gi,$ip); 302 302 } 303 304 ?> -
_dev_/univers_spip/plugin.xml
r107367 r107430 4 4 <licence>GPL</licence> 5 5 <etat>test</etat> 6 <version>0.2.2 6</version>6 <version>0.2.27</version> 7 7 <version_base>0.1.9</version_base> 8 8 <install>base/univers.php</install> -
_dev_/univers_spip/stats-tout.html
r107367 r107430 1 1 #SET{total,0} 2 3 #SET{versions,#LISTE{3.2, 3.1, 3.0, 2.2, 2.1, 2.0}} 4 #SET{versions_19,#LISTE{1.9.3, 1.9.2, 1.9.1, 1.9}} 5 #SET{versions_18,#LISTE{1.8.3, 1.8.2, 1.8.1, 1.8.0}} 6 #SET{versions_php,#LISTE{7.2, 7.1, 7.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.3}} 7 2 8 <B_sitesspip> 3 9 <h2>#GRAND_TOTAL sites vérifiés</h2> … … 6 12 <BOUCLE_pending(WEBSITES){retry>0}{statut=prop} /><em>#TOTAL_BOUCLE sans reponse</em><//B_pending>, 7 13 <BOUCLE_refuse(WEBSITES){retry=0}{statut=refuse} /><em>#TOTAL_BOUCLE refusés</em><//B_refuse>, 8 <BOUCLE_anciens(WEBSITES){statut=publie}{date<#REM|time|moins{2592000}| date{Y-m-d 00:00:00}} /><em>#TOTAL_BOUCLE visités il y a plus de 30 jours</em><//B_anciens>14 <BOUCLE_anciens(WEBSITES){statut=publie}{date<#REM|time|moins{2592000}|affdate{Y-m-d 00:00:00}} /><em>#TOTAL_BOUCLE visités il y a plus de 30 jours</em><//B_anciens> 9 15 10 16 <h3>Versions</h3> 17 18 19 11 20 <table id='versions'> 12 21 <thead> … … 15 24 <tbody> 16 25 <BOUCLE_sitesspip(WEBSITES){statut=publie}{pagination 1}> 17 <BOUCLE_v32(WEBSITES){statut=publie}{spip LIKE '3.2%'} /><tr><td><a href="#URL_PAGE{stats,v=3.2}" title="voir les stats de cette version">3.2</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v32> 18 <BOUCLE_v31(WEBSITES){statut=publie}{spip LIKE '3.1%'} /><tr><td><a href="#URL_PAGE{stats,v=3.1}" title="voir les stats de cette version">3.1</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v31> 19 <BOUCLE_v30(WEBSITES){statut=publie}{spip LIKE '3.0%'} /><tr><td><a href="#URL_PAGE{stats,v=3.0}" title="voir les stats de cette version">3.0</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v30> 20 <BOUCLE_v22(WEBSITES){statut=publie}{spip LIKE '2.2%'} /><tr><td><a href="#URL_PAGE{stats,v=2.2}" title="voir les stats de cette version">2.2</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v22> 21 <BOUCLE_v21(WEBSITES){statut=publie}{spip LIKE '2.1%'} /><tr><td><a href="#URL_PAGE{stats,v=2.1}" title="voir les stats de cette version">2.1</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v21> 22 <BOUCLE_v20(WEBSITES){statut=publie}{spip LIKE '2.0%'} /><tr><td><a href="#URL_PAGE{stats,v=2.0}" title="voir les stats de cette version">2.0</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v20> 23 <BOUCLE_v193(WEBSITES){statut=publie}{spip LIKE '1.9.3%'}{doublons} /><tr><td><a href="#URL_PAGE{stats,v=1.9.3}" title="voir les stats de cette version">1.9.3dev</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v193> 24 <BOUCLE_v192(WEBSITES){statut=publie}{spip LIKE '1.9.2%'}{doublons} /><tr><td><a href="#URL_PAGE{stats,v=1.9.2}" title="voir les stats de cette version">1.9.2</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v192> 25 <BOUCLE_v191(WEBSITES){statut=publie}{spip LIKE '1.9.1%'}{doublons} /><tr><td><a href="#URL_PAGE{stats,v=1.9.1}" title="voir les stats de cette version">1.9.1</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v191> 26 <BOUCLE_v19(WEBSITES){statut=publie}{spip LIKE '1.9%'}{doublons} /><tr><td><a href="#URL_PAGE{stats,v=1.9}" title="voir les stats de cette version">1.9</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v19> 27 <BOUCLE_v183(WEBSITES){statut=publie}{spip LIKE '1.8.3%'} /><tr><td><a href="#URL_PAGE{stats,v=1.8.3}" title="voir les stats de cette version">1.8.3</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v183> 28 <BOUCLE_v182(WEBSITES){statut=publie}{spip LIKE '1.8.2%'} /><tr><td><a href="#URL_PAGE{stats,v=1.8.2}" title="voir les stats de cette version">1.8.2</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v182> 29 <BOUCLE_v181(WEBSITES){statut=publie}{spip LIKE '1.8.1%'} /><tr><td><a href="#URL_PAGE{stats,v=1.8.1}" title="voir les stats de cette version">1.8.1</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v181> 30 <BOUCLE_v180(WEBSITES){statut=publie}{spip LIKE '1.8.0%'} /><tr><td><a href="#URL_PAGE{stats,v=1.8.0}" title="voir les stats de cette version">1.8.0</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}}<//B_v180> 31 <BOUCLE_vold(WEBSITES){statut=publie}{spip LIKE '<1.8%'} /><tr><td><a href="#URL_PAGE{stats,v=<1.8}" title="voir les stats de cette version"><1.8</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr><//B_vold> 32 <BOUCLE_vinc(WEBSITES){statut=publie}{spip='?'} /><tr><td>?</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr><//B_vinc> 26 <BOUCLE_versions(DATA){source tableau,#GET{versions}}> 27 <BOUCLE_sites_version(WEBSITES){statut=publie}{spip LIKE #VALEUR|concat{%}} /> 28 <tr> 29 <td><a href="#URL_PAGE{stats,v=#VALEUR}" title="Voir les stats de cette version">#VALEUR</a></td> 30 <td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td> 31 </tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}} 32 <//B_sites_version> 33 </BOUCLE_versions> 34 35 <BOUCLE_versions_19(DATA){source tableau,#GET{versions_19}}> 36 <BOUCLE_sites_version_19(WEBSITES){statut=publie}{spip LIKE #VALEUR|concat{%}}{doublons} /> 37 <tr> 38 <td><a href="#URL_PAGE{stats,v=#VALEUR}" title="Voir les stats de cette version">#VALEUR</a></td> 39 <td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td> 40 </tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}} 41 <//B_sites_version_19> 42 </BOUCLE_versions_19> 43 44 <BOUCLE_versions_18(DATA){source tableau,#GET{versions_18}}> 45 <BOUCLE_sites_version_18(WEBSITES){statut=publie}{spip LIKE #VALEUR|concat{%}} /> 46 <tr> 47 <td><a href="#URL_PAGE{stats,v=#VALEUR}" title="Voir les stats de cette version">#VALEUR</a></td> 48 <td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td> 49 </tr>#SET{total,#GET{total}|plus{#TOTAL_BOUCLE}} 50 <//B_sites_version_18> 51 </BOUCLE_versions_18> 52 53 <BOUCLE_vold(WEBSITES){statut=publie}{spip LIKE '<1.8%'} /><tr><td><a href="#URL_PAGE{stats,v=<1.8}" title="voir les stats de cette version"><1.8</a></td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr><//B_vold> 54 <BOUCLE_vinc(WEBSITES){statut=publie}{spip='?'} /><tr><td>?</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#_sitesspip:GRAND_TOTAL}|round{1})%])</td></tr><//B_vinc> 33 55 </BOUCLE_sitesspip> 34 56 </tbody> … … 102 124 </thead> 103 125 <tbody> 104 <BOUCLE_v40(WEBSITES){statut=publie}{php LIKE '4.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v40> 105 <BOUCLE_v41(WEBSITES){statut=publie}{php LIKE '4.1%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.1</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v41> 106 <BOUCLE_v42(WEBSITES){statut=publie}{php LIKE '4.2%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.2</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v42> 107 <BOUCLE_v43(WEBSITES){statut=publie}{php LIKE '4.3%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.3</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v43> 108 <BOUCLE_v50(WEBSITES){statut=publie}{php LIKE '5.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v50> 109 <BOUCLE_v51(WEBSITES){statut=publie}{php LIKE '5.1%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.1</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v51> 110 <BOUCLE_v52(WEBSITES){statut=publie}{php LIKE '5.2%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.2</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v52> 111 <BOUCLE_v53(WEBSITES){statut=publie}{php LIKE '5.3%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.3</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v53> 112 <BOUCLE_v54(WEBSITES){statut=publie}{php LIKE '5.4%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.4</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v54> 113 <BOUCLE_v55(WEBSITES){statut=publie}{php LIKE '5.5%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.5</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v55> 114 <BOUCLE_v56(WEBSITES){statut=publie}{php LIKE '5.6%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.6</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v56> 115 <BOUCLE_v70(WEBSITES){statut=publie}{php LIKE '7.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>7.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v70> 116 <BOUCLE_v71(WEBSITES){statut=publie}{php LIKE '7.1%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>7.1</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v71> 126 <BOUCLE_versions_php(DATA){source tableau,#GET{versions_php}}> 127 <BOUCLE_version_php(WEBSITES){statut=publie}{php LIKE #VALEUR|concat{%}} />[(#TOTAL_BOUCLE|>{0}|oui) 128 <tr><td>#VALEUR</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>] 129 <//B_version_php> 130 </BOUCLE_versions_php> 117 131 </tbody> 118 132 </table> -
_dev_/univers_spip/stats-v.html
r107338 r107430 1 1 #SET{total,0} 2 2 #SET{likev,#ENV{v}|concat{%}} 3 #SET{versions_php,#LISTE{7.2, 7.1, 7.0, 5.6, 5.5, 5.4, 5.3, 5.2, 5.1, 5.0, 4.3}} 4 3 5 <BOUCLE_compte(WEBSITES){spip like #GET{likev}}{statut=publie} />#SET{total,#TOTAL_BOUCLE}<//B_compte> 4 6 <B_sitesspip> … … 84 86 </thead> 85 87 <tbody> 86 <BOUCLE_v40(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '4.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v40> 87 <BOUCLE_v41(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '4.1%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.1</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v41> 88 <BOUCLE_v42(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '4.2%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.2</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v42> 89 <BOUCLE_v43(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '4.3%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>4.3</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v43> 90 <BOUCLE_v50(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v50> 91 <BOUCLE_v51(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.1%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.1</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v51> 92 <BOUCLE_v52(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.2%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.2</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v52> 93 <BOUCLE_v53(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.3%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.3</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v53> 94 <BOUCLE_v54(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.4%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.4</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v54> 95 <BOUCLE_v55(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.5%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.5</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v55> 96 <BOUCLE_v56(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '5.6%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>5.6</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v56> 97 <BOUCLE_v70(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE '7.0%'} />[(#TOTAL_BOUCLE|>{0}|oui) <tr><td>7.0</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>]<//B_v70> 88 <BOUCLE_versions_php(DATA){source tableau,#GET{versions_php}}> 89 <BOUCLE_version_php(WEBSITES){spip like #GET{likev}}{statut=publie}{php LIKE #VALEUR|concat{%}} />[(#TOTAL_BOUCLE|>{0}|oui) 90 <tr><td>#VALEUR</td><td>#TOTAL_BOUCLE ([(#TOTAL_BOUCLE|mult{100}|div{#GET{total}}|round{1})%])</td></tr>] 91 <//B_version_php> 92 </BOUCLE_versions_php> 98 93 </tbody> 99 94 </table> -
_dev_/univers_spip/stats.html
r91432 r107430 14 14 <div class="wrap"> 15 15 16 <p>Cet outil indexe les sites <a href="http ://www.spip.net/">SPIP</a> en continu dans les moteurs de recherche, les news et les flux de microbloging.16 <p>Cet outil indexe les sites <a href="https://www.spip.net/">SPIP</a> en continu dans les moteurs de recherche, les news et les flux de microbloging. 17 17 <br />Chaque site est vérifié et analysé pour déterminer 18 18 la version de SPIP et les plugins utilisés, ainsi que la version de PHP et la localisation géographique du serveur.</p> -
_dev_/univers_spip/stats_header.html
r91432 r107430 1 1 <div id="header"> 2 2 <div class="wrap"> 3 <h1><a href="http ://stats.spip.org">stats.spip.org</a></h1>3 <h1><a href="https://stats.spip.net">stats.spip.net</a></h1> 4 4 <img class="logo" src="#CHEMIN{stats.png}" > 5 5 </div> -
_dev_/univers_spip/univers_pipelines.php
r68536 r107430 22 22 return $taches_generales; 23 23 } 24 25 ?>
Note: See TracChangeset
for help on using the changeset viewer.