This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
porte_plume_intertitres_pipelines.php
executable file
·246 lines (222 loc) · 6.87 KB
/
porte_plume_intertitres_pipelines.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<?php
/**
* Utilisations de pipelines par Intertitres hierarchiques
*
* @plugin Intertitres hierarchiques
* @copyright 2016
* @author Mist. GraphX
* @licence GNU/GPL
* @package SPIP\Porte_plume_intertitres\Pipelines
*/
if (!defined('_ECRIRE_INC_VERSION')) return;
function porte_plume_intertitres_ieconfig_metas($table){
$table['porte_plume_intertitres']['titre'] = _T('porte_plume_intertitres:porte_plume_intertitres');
$table['porte_plume_intertitres']['icone'] = 'prive/themes/spip/images/porte_plume_intertitres-16.png';
$table['porte_plume_intertitres']['metas_serialize'] = 'porte_plume_intertitres';
return $table;
}
// http://www.spip-contrib.net/Porte-Plume-documentation-technique
function porte_plume_intertitres_porte_plume_barre_pre_charger($barres){
static $base_level = false;
if(!$base_level){
$base_level = get_heading_base_level();
}
// Les références et titre on 5 niveau de hierarchie
// on pars du niveau de départ de la globale et on incrément
$max_level = 5;
$barre = &$barres['edition'];
$barre->set('header1', array(
"dropMenu" => array(
array(
"id" => 'intertitre2',
"name" => _T('porte_plume_intertitres:barre_intertitre2'),
"className" => 'outil_intertitre'.($base_level+1),
"openWith" => "\n{{{** ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'intertitre3',
"name" => _T('porte_plume_intertitres:barre_intertitre3'),
"className" => 'outil_intertitre'.($base_level+2),
"openWith" => "\n{{{*** ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'intertitre4',
"name" => _T('porte_plume_intertitres:barre_intertitre4'),
"className" => 'outil_intertitre'.($base_level+3),
"openWith" => "\n{{{**** ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'intertitre5',
"name" => _T('porte_plume_intertitres:barre_intertitre5'),
"className" => 'outil_intertitre'.($base_level+4),
"openWith" => "\n{{{***** ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
)
)
));
$barre->ajouterApres('header1', array(
"id" => "sepgrp1",
"separator" => "---------------",
"display" => true,
));
include_spip('inc/config');
if (lire_config('porte_plume_intertitres/afficher_references', 0)) {
$barre->ajouterApres('sepgrp1', array(
"id" => "ref",
"name" => _T('barre_intertitre'),
"className" => 'outil_ref',
"dropMenu" => array(
array(
"id" => 'ref1',
"name" => _T('barre_intertitre'),
"className" => 'outil_ref1',
"openWith" => "\n{{{# ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'ref2',
"name" => _T('porte_plume_intertitres:barre_intertitre2'),
"className" => 'outil_ref2',
"openWith" => "\n{{{## ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'ref3',
"name" => _T('porte_plume_intertitres:barre_intertitre3'),
"className" => 'outil_ref3',
"openWith" => "\n{{{### ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
),
array(
"id" => 'ref4',
"name" => _T('porte_plume_intertitres:barre_intertitre4'),
"className" => 'outil_ref4',
"openWith" => "\n{{{#### ",
"closeWith" => "}}}\n",
"display" => true,
"selectionType" => "line",
)
)
));
$barre->ajouterApres('ref', array(
"id" => "sepgrp2",
"separator" => "---------------",
"display" => true,
));
}
return $barres;
}
function porte_plume_intertitres_porte_plume_lien_classe_vers_icone($flux){
// Récupérer le niveau de tag debut_intertitre
$base_level = get_heading_base_level();
$icones = array(
'outil_header1' => array('intertitre_'.$base_level.'.png','0'), //'intertitre.png'
'outil_intertitre1' => array('intertitre_1.png','0'), //'intertitre.png'
'outil_intertitre2' => array('intertitre_2.png','0'),
'outil_intertitre3' => array('intertitre_3.png','0'),
'outil_intertitre4' => array('intertitre_4.png','0'),
'outil_intertitre5' => array('intertitre_5.png','0'),
'outil_intertitre6' => array('intertitre_6.png','0'),
'outil_intertitre7' => array('intertitre_7.png','0'),
'outil_ref' => array('ref.png','0'),
'outil_ref1' => array('ref1.png','0'),
'outil_ref2' => array('ref2.png','0'),
'outil_ref3' => array('ref3.png','0'),
'outil_ref4' => array('ref4.png','0')
);
//var_dump($icones);
return array_merge($flux, $icones);
}
// Numérotation/incrémentation des titres de type référence
// avant le passage de textWheel.
// On numérotte et on prépare pour le traitement par textWheel
// http://contrib.spip.net/Generation-automatique-de
function porte_plume_intertitres_pre_propre($texte) {
// on cherche les noms de section commençant par des #
// http://lumadis.be/regex/test_regex.php?id=2929
/*
[0]=> array
[0]=>{{{# Reference H4 }}}
[1]=>{{{## Reference sub }}}
[2]=>{{{# Reference H4 }}}
[3]=>{{{## Reference sub }}}
[1]=> array
[0]=>{{{
[1]=>{{{
[2]=>{{{
[3]=>{{{
[2]=> array
[0]=>#
[1]=>##
[2]=>#
[3]=>##
[3]=> array
[0]=> Reference H4
[1]=> Reference sub
[2]=> Reference H4
[3]=> Reference sub
[4]=> array
[0]=>}}}
[1]=>}}}
[2]=>}}}
[3]=>}}}
*/
// retourne le nombre de matches
$count = preg_match_all("/({{{)(\#{1,5})(.*)(}}})/i", $texte, $matches);
//initialisation du compteur
$cnt[0] = 0;
//pour chaque titre trouvé
for ($j=0; $j < $count; $j++) {
$level = $matches[2][$j];
$titre = $matches[3][$j];
//on est au niveau de base {{{# }}}
if(strlen($level) == 1) {
//on réinitialise le compteur de ce titre
for ($i=1; $i < count($cnt); $i++) {
$cnt[$i] = 0;
}
//on incrémente cnt[0]
$numeros = ++$cnt[0];
$titre = $numeros.' - '.$titre;
} else {
// on est à un niveau plus profond
// on construit le numéros
$numeros = $cnt[0].'.';
for ($i=1; $i < strlen($level)-1; $i++) {
$numeros .= $cnt[$i].".";
}
$numeros = $numeros.(++$cnt[$i]);
//on génère le titre
$titre = $numeros.' - '.$titre;
}
$debut_markup = $matches[1][$j].$matches[2][$j];
$fin_markup = $matches[4][$j];
$haystack = $texte;
$needle = $matches[0][$j];
$replace = $debut_markup.$titre.$fin_markup ;
// Ne remplacer que la première occurence trouvé, au cas ou des titres soient identique
// http://stackoverflow.com/questions/1252693/using-str-replace-so-that-it-only-acts-on-the-first-match/1252710#1252710
$pos = strpos($haystack, $needle);
if ($pos !== false) {
$texte = substr_replace($haystack, $replace, $pos, strlen($needle));
}
}
return $texte;
}