Changeset 51435 in spip-zone
- Timestamp:
- Sep 15, 2011, 2:03:51 PM (9 years ago)
- Location:
- _galaxie_/programmer.spip.org/plugin_documentation
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
_galaxie_/programmer.spip.org/plugin_documentation/documentation_options.php
r50336 r51435 44 44 45 45 // stocker la vue (voir en page, ou voir en chapitre) ... 46 if ( !$vue = _request('vue')) {46 if ((!$vue = _request('vue')) && (lire_config('documentation/vue_chapitre','on') == 'on')) { 47 47 if (!$vue = $_COOKIE['documentation_vue']) { $vue = 'page'; } 48 48 set_request('vue', $vue); 49 49 } 50 if ( in_array($vue, array('page','chapitre')) and $vue != $_COOKIE['documentation_vue']) {50 if ((lire_config('documentation/vue_chapitre','on') == 'on') && in_array($vue, array('page','chapitre')) and $vue != $_COOKIE['documentation_vue']) { 51 51 include_spip('inc/cookie'); 52 52 spip_setcookie('documentation_vue', $vue); -
_galaxie_/programmer.spip.org/plugin_documentation/formulaires/config_documentation.html
r50645 r51435 32 32 [(#SAISIE{oui_non,secteur_langue, 33 33 label=<:documentation:label_secteur_langue:>})] 34 35 [(#SAISIE{oui_non,vue_chapitre, 36 defaut='on', 37 label=<:documentation:label_vue_chapitre:>})] 34 38 35 39 [(#SAISIE{oui_non,activer_formulaire_ecrire_auteur, -
_galaxie_/programmer.spip.org/plugin_documentation/inclure/entete.html
r39671 r51435 5 5 </div> 6 6 <div class="formulaires_entete"> 7 <INCLURE{fond=inclure/menu_vue}{vue, self=#SELF} /> 7 [(#CONFIG{documentation/vue_chapitre,on}|=={on}|oui) 8 <INCLURE{fond=inclure/menu_vue}{vue, self=#SELF} />] 8 9 <INCLURE{fond=inclure/menu_lang}{lang} /> 9 10 #FORMULAIRE_RECHERCHE -
_galaxie_/programmer.spip.org/plugin_documentation/lang/documentation_en.php
r50645 r51435 87 87 'label_utiliser_champs_extras' => 'Do not use the additional fields', 88 88 'label_version' => 'Documentation version', 89 'label_vue_chapitre' => 'Use the "chapter" view', 89 90 'licence'=>"License", 90 91 'lien_sedna' => 'Websites we follow', -
_galaxie_/programmer.spip.org/plugin_documentation/lang/documentation_fr.php
r50645 r51435 91 91 'label_utiliser_champs_extras' => 'Ne pas utiliser les champs supplémentaires', 92 92 'label_version' => 'Version de la documentation', 93 'label_vue_chapitre' => 'Utiliser la vue "chapitre"', 93 94 'licence'=>"Licence", 94 95 'lien_sedna' => 'Les sites que nous suivons', -
_galaxie_/programmer.spip.org/plugin_documentation/navigation/dist.html
r46671 r51435 4 4 <INCLURE{fond=inclure/navigation-precedent-suivant_lang}{id_article}{id_rubrique}{taille=20} />] 5 5 6 [(#ENV{vue}|=={chapitre}| oui)6 [(#ENV{vue}|=={chapitre}|et{#CONFIG{documentation/vue_chapitre,on}|=={on}}|oui) 7 7 <INCLURE{fond=inclure/navigation-menu-miniplan-rubriques}{id_rubrique}{id_article}{composition}{juste_rubriques=oui} /> 8 8 ] 9 [(#ENV{vue}| =={chapitre}|non)9 [(#ENV{vue}|!={chapitre}|ou{#CONFIG{documentation/vue_chapitre,on}|=={on}}|oui) 10 10 <INCLURE{fond=inclure/navigation-menu-miniplan-rubriques}{id_rubrique}{id_article}{composition} /> 11 11 ] -
_galaxie_/programmer.spip.org/plugin_documentation/plugin.xml
r50645 r51435 12 12 <!-- Logo de http://www.iconfinder.net/icondetails/37405/128/ --> 13 13 14 <version>1.8. 6</version>14 <version>1.8.7</version> 15 15 <version_base>1.1.0</version_base> 16 16 -
_galaxie_/programmer.spip.org/plugin_documentation/structure.html
r46534 r51435 4 4 <INCLURE{fond=head/#ENV{type},env} /> 5 5 </head> 6 <body class="page_#ENV{type,page}[ #ENV{type,page}_(#ENV{composition,''})][ (#CONFIG{documentation/barre_menu_absente}|non)avec_menu][ (#ENV{vue})]">6 <body class="page_#ENV{type,page}[ #ENV{type,page}_(#ENV{composition,''})][ (#CONFIG{documentation/barre_menu_absente}|non)avec_menu][(#CONFIG{documentation/vue_chapitre,on}|=={on}|oui)#ENV{vue}]"> 7 7 <INCLURE{fond=body,env} /> 8 8 #SPIP_CRON
Note: See TracChangeset
for help on using the changeset viewer.