Merge lp:~edb/quam-plures/template_tweaks into lp:quam-plures

Proposed by EdB
Status: Merged
Approved by: Tilman Blumenbach
Approved revision: 7608
Merged at revision: 7609
Proposed branch: lp:~edb/quam-plures/template_tweaks
Merge into: lp:quam-plures
Diff against target: 681 lines (+112/-96)
32 files modified
qp_templates/_credits.disp.php (+9/-15)
qp_templates/asevo/index.main.php (+3/-2)
qp_templates/basic/_credits.disp.php (+10/-18)
qp_templates/basic/index.main.php (+3/-2)
qp_templates/custom/index.main.php (+3/-2)
qp_templates/evocamp/index.main.php (+3/-2)
qp_templates/evocamp/page.main.php (+3/-2)
qp_templates/evocamp/posts.main.php (+3/-2)
qp_templates/evocamp/single.main.php (+3/-2)
qp_templates/evopress/index.main.php (+3/-2)
qp_templates/evopress/page.main.php (+4/-3)
qp_templates/evopress/posts.main.php (+4/-3)
qp_templates/evopress/single.main.php (+4/-3)
qp_templates/glossyblue/index.main.php (+3/-2)
qp_templates/glossyblue/page.main.php (+3/-2)
qp_templates/glossyblue/posts.main.php (+3/-2)
qp_templates/glossyblue/single.main.php (+3/-2)
qp_templates/intense/index.main.php (+3/-2)
qp_templates/intense/page.main.php (+3/-2)
qp_templates/intense/posts.main.php (+3/-2)
qp_templates/intense/single.main.php (+3/-2)
qp_templates/miami_blue/index.main.php (+3/-2)
qp_templates/natural_pink/index.main.php (+3/-2)
qp_templates/nifty_corners/index.main.php (+3/-2)
qp_templates/photoblog/index.main.php (+3/-2)
qp_templates/pixelgreen/index.main.php (+3/-2)
qp_templates/pluralism/index.main.php (+3/-2)
qp_templates/pluralism/page.main.php (+3/-2)
qp_templates/pluralism/posts.main.php (+3/-2)
qp_templates/pluralism/single.main.php (+3/-2)
qp_templates/terrafirma/index.main.php (+3/-2)
qp_templates/vastitude/index.main.php (+3/-2)
To merge this branch: bzr merge lp:~edb/quam-plures/template_tweaks
Reviewer Review Type Date Requested Status
Tilman Blumenbach (community) Approve
EdB Needs Resubmitting
Review via email: mp+65880@code.launchpad.net

Description of the change

mostly docblock fixes, 2 or 3 files with empty lines removed and stuff like that. No actual functional changes - just cleanup

To post a comment you must log in.
lp:~edb/quam-plures/template_tweaks updated
7606. By EdB

another dot instead of a comma at htmlattr

Revision history for this message
Tilman Blumenbach (tblue) wrote :

Diff line 162: The $credits array does not have a key named 'link'.

review: Needs Fixing
lp:~edb/quam-plures/template_tweaks updated
7607. By EdB

Fixed diff-line 162 by copying the line from qp_templates/_credits file

Revision history for this message
EdB (edb) wrote :

Wow what a total blowout. Solution was to copy the line in question from qp_templates/__credits.disp.php into the basic template's folder.

review: Needs Resubmitting
Revision history for this message
Tilman Blumenbach (tblue) wrote :

Looks good now! :)

review: Approve
lp:~edb/quam-plures/template_tweaks updated
7608. By EdB

adding core updates

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'qp_templates/_credits.disp.php'
2--- qp_templates/_credits.disp.php 2011-06-21 22:02:23 +0000
3+++ qp_templates/_credits.disp.php 2011-07-12 18:58:42 +0000
4@@ -22,7 +22,6 @@
5
6 <div id="credits">
7 <dl>
8-
9 <?php
10 $credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );
11
12@@ -36,7 +35,7 @@
13 {
14 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';
15 echo '<dd><a href="', $linkback['url'].'" title="';
16- echo format_to_output( $linkback['title'].'htmlattr' ).'">';
17+ echo format_to_output( $linkback['title'], 'htmlattr' ).'">';
18 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';
19 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";
20 }
21@@ -46,13 +45,13 @@
22
23 // Second: plugin credits excluding 'core' plugins
24 global $Plugins;
25+
26 $credits = array();
27-
28 $Plugins->restart();
29+
30 while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )
31 {
32- if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus'
33- || $a_plugin->author == 'The b2evo Group' )
34+ if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus' || $a_plugin->author == 'The b2evo Group' )
35 { // Skip our own plugins.
36 continue;
37 }
38@@ -81,12 +80,10 @@
39 ksort( $credits );
40 echo '<dt>'.T_('Plugin Credits').':</dt>'."\n";
41 echo '<dd><dl>'."\n";
42-
43 foreach( $credits as $credit )
44 {
45 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";
46 }
47-
48 echo '</dl></dd>'."\n";
49 }
50
51@@ -94,16 +91,16 @@
52 if( in_array( 'contribs', $credits_array ) )
53 {
54 global $templates_path;
55+
56 /**
57- * dummy docblock makes error-free autodocs
58+ * Load the list of contributors for this version
59 */
60- require_once $templates_path.'/_contributors.php'; // contributors links
61+ require_once $templates_path.'/_contributors.php';
62+
63+ uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
64
65 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";
66 echo '<dd><dl>'."\n";
67-
68- uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
69-
70 foreach( $_hic_sunt_dracones as $dracone )
71 {
72 echo '<dt><a href="'.$dracone['homepage'].'" title="';
73@@ -112,7 +109,6 @@
74 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );
75 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";
76 }
77-
78 echo '</dl></dd>'."\n";
79 }
80
81@@ -127,8 +123,6 @@
82 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";
83 echo '</dl></dd>', "\n";
84 }
85-
86 ?>
87-
88 </dl>
89 </div>
90
91=== modified file 'qp_templates/asevo/index.main.php'
92--- qp_templates/asevo/index.main.php 2010-08-06 20:14:58 +0000
93+++ qp_templates/asevo/index.main.php 2011-07-12 18:58:42 +0000
94@@ -7,8 +7,9 @@
95
96 * This file is used to display the content when no $disp-matching .main.php file exists.
97 *
98- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
99- * @license http://quamplures.net/license.html Our License
100+ * Quam Plures - {@link http://quamplures.net/}
101+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
102+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
103 * @package templates
104 * @subpackage asevo
105 */
106
107=== modified file 'qp_templates/basic/_credits.disp.php'
108--- qp_templates/basic/_credits.disp.php 2011-06-22 14:51:53 +0000
109+++ qp_templates/basic/_credits.disp.php 2011-07-12 18:58:42 +0000
110@@ -28,7 +28,6 @@
111
112 <div id="credits">
113 <dl>
114-
115 <?php
116 $credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );
117
118@@ -37,28 +36,26 @@
119 {
120 echo '<dt>'.$Template->T_('Template Credits').':</dt>'."\n";
121 echo '<dd><dl>'."\n";
122-
123 foreach( $credits as $linkback )
124 {
125 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';
126 echo '<dd><a href="', $linkback['url'].'" title="';
127- echo format_to_output( $linkback['title'].'htmlattr' ).'">';
128+ echo format_to_output( $linkback['title'], 'htmlattr' ).'">';
129 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';
130 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";
131 }
132-
133 echo '</dl></dd>'."\n";
134 }
135
136 // Second: plugin credits excluding 'core' plugins
137 global $Plugins;
138+
139 $credits = array();
140-
141 $Plugins->restart();
142+
143 while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )
144 {
145- if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus'
146- || $a_plugin->author == 'The b2evo Group' )
147+ if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus' || $a_plugin->author == 'The b2evo Group' )
148 { // Skip our own plugins.
149 continue;
150 }
151@@ -85,14 +82,12 @@
152 if( !empty( $credits ) )
153 {
154 ksort( $credits );
155- echo '<dt>'.T_('Plugin Credits').':</dt>'."\n";
156+ echo '<dt>'.$Template->T_('Plugin Credits').':</dt>'."\n";
157 echo '<dd><dl>'."\n";
158-
159 foreach( $credits as $credit )
160 {
161 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";
162 }
163-
164 echo '</dl></dd>'."\n";
165 }
166
167@@ -100,16 +95,16 @@
168 if( in_array( 'contribs', $credits_array ) )
169 {
170 global $templates_path;
171+
172 /**
173- * dummy docblock makes error-free autodocs
174+ * Load the list of contributors for this version
175 */
176- require_once $templates_path.'/_contributors.php'; // contributors links
177+ require_once $templates_path.'/_contributors.php';
178+
179+ uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
180
181 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";
182 echo '<dd><dl>'."\n";
183-
184- uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
185-
186 foreach( $_hic_sunt_dracones as $dracone )
187 {
188 echo '<dt><a href="'.$dracone['homepage'].'" title="';
189@@ -118,7 +113,6 @@
190 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );
191 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";
192 }
193-
194 echo '</dl></dd>'."\n";
195 }
196
197@@ -133,8 +127,6 @@
198 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";
199 echo '</dl></dd>', "\n";
200 }
201-
202 ?>
203-
204 </dl>
205 </div>
206
207=== modified file 'qp_templates/basic/index.main.php'
208--- qp_templates/basic/index.main.php 2010-07-25 18:05:13 +0000
209+++ qp_templates/basic/index.main.php 2011-07-12 18:58:42 +0000
210@@ -10,8 +10,9 @@
211 * @author Your Name <spam-me@domain.tld>
212 * @author {@link http://domain.tld/ Your Name linked to your domain}
213 *
214- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
215- * @license http://quamplures.net/license.html Our License
216+ * Quam Plures - {@link http://quamplures.net/}
217+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
218+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
219 * @package templates
220 * @subpackage basic
221 */
222
223=== modified file 'qp_templates/custom/index.main.php'
224--- qp_templates/custom/index.main.php 2010-08-19 06:43:12 +0000
225+++ qp_templates/custom/index.main.php 2011-07-12 18:58:42 +0000
226@@ -7,8 +7,9 @@
227
228 * This file is used to display the content when no $disp-matching .main.php file exists.
229 *
230- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
231- * @license http://quamplures.net/license.html Our License
232+ * Quam Plures - {@link http://quamplures.net/}
233+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
234+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
235 * @package templates
236 * @subpackage custom
237 */
238
239=== modified file 'qp_templates/evocamp/index.main.php'
240--- qp_templates/evocamp/index.main.php 2010-08-03 21:49:39 +0000
241+++ qp_templates/evocamp/index.main.php 2011-07-12 18:58:42 +0000
242@@ -7,8 +7,9 @@
243
244 * This file is used to display the content when no $disp-matching .main.php file exists.
245 *
246- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
247- * @license http://quamplures.net/license.html Our License
248+ * Quam Plures - {@link http://quamplures.net/}
249+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
250+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
251 * @package templates
252 * @subpackage evocamp
253 */
254
255=== modified file 'qp_templates/evocamp/page.main.php'
256--- qp_templates/evocamp/page.main.php 2010-08-03 21:49:39 +0000
257+++ qp_templates/evocamp/page.main.php 2011-07-12 18:58:42 +0000
258@@ -8,8 +8,9 @@
259 * This file is used to display the content when $disp == 'page'. A template
260 * without this file will use index.main.php by default.
261 *
262- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
263- * @license http://quamplures.net/license.html Our License
264+ * Quam Plures - {@link http://quamplures.net/}
265+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
266+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
267 * @package templates
268 * @subpackage evocamp
269 */
270
271=== modified file 'qp_templates/evocamp/posts.main.php'
272--- qp_templates/evocamp/posts.main.php 2010-08-03 21:49:39 +0000
273+++ qp_templates/evocamp/posts.main.php 2011-07-12 18:58:42 +0000
274@@ -8,8 +8,9 @@
275 * This file is used to display the content when $disp == 'posts'. A template
276 * without this file will use index.main.php by default.
277 *
278- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
279- * @license http://quamplures.net/license.html Our License
280+ * Quam Plures - {@link http://quamplures.net/}
281+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
282+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
283 * @package templates
284 * @subpackage evocamp
285 */
286
287=== modified file 'qp_templates/evocamp/single.main.php'
288--- qp_templates/evocamp/single.main.php 2010-08-06 20:14:58 +0000
289+++ qp_templates/evocamp/single.main.php 2011-07-12 18:58:42 +0000
290@@ -8,8 +8,9 @@
291 * This file is used to display the content when $disp == 'single'. A template
292 * without this file will use index.main.php by default.
293 *
294- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
295- * @license http://quamplures.net/license.html Our License
296+ * Quam Plures - {@link http://quamplures.net/}
297+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
298+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
299 * @package templates
300 * @subpackage evocamp
301 */
302
303=== modified file 'qp_templates/evopress/index.main.php'
304--- qp_templates/evopress/index.main.php 2010-08-03 21:49:39 +0000
305+++ qp_templates/evopress/index.main.php 2011-07-12 18:58:42 +0000
306@@ -7,8 +7,9 @@
307
308 * This file is used to display the content when no $disp-matching .main.php file exists.
309 *
310- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
311- * @license http://quamplures.net/license.html Our License
312+ * Quam Plures - {@link http://quamplures.net/}
313+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
314+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
315 * @package templates
316 * @subpackage evopress
317 */
318
319=== modified file 'qp_templates/evopress/page.main.php'
320--- qp_templates/evopress/page.main.php 2010-08-03 21:49:39 +0000
321+++ qp_templates/evopress/page.main.php 2011-07-12 18:58:42 +0000
322@@ -5,11 +5,12 @@
323 Need help doing something with this file?
324 http://docs.quamplures.net/li_templates.html - tutorials and autodocs
325
326- * This file is used to display the content when $disp == 'page'. A template
327+ * This file is used to display the content when $disp == 'page'. A template
328 * without this file will use index.main.php by default.
329 *
330- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
331- * @license http://quamplures.net/license.html Our License
332+ * Quam Plures - {@link http://quamplures.net/}
333+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
334+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
335 * @package templates
336 * @subpackage evopress
337 */
338
339=== modified file 'qp_templates/evopress/posts.main.php'
340--- qp_templates/evopress/posts.main.php 2010-08-03 21:49:39 +0000
341+++ qp_templates/evopress/posts.main.php 2011-07-12 18:58:42 +0000
342@@ -5,11 +5,12 @@
343 Need help doing something with this file?
344 http://docs.quamplures.net/li_templates.html - tutorials and autodocs
345
346- * This file is used to display the content when $disp == 'posts'. A template
347+ * This file is used to display the content when $disp == 'posts'. A template
348 * without this file will use index.main.php by default.
349 *
350- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
351- * @license http://quamplures.net/license.html Our License
352+ * Quam Plures - {@link http://quamplures.net/}
353+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
354+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
355 * @package templates
356 * @subpackage evopress
357 */
358
359=== modified file 'qp_templates/evopress/single.main.php'
360--- qp_templates/evopress/single.main.php 2010-08-06 20:14:58 +0000
361+++ qp_templates/evopress/single.main.php 2011-07-12 18:58:42 +0000
362@@ -5,11 +5,12 @@
363 Need help doing something with this file?
364 http://docs.quamplures.net/li_templates.html - tutorials and autodocs
365
366- * This file is used to display the content when $disp == 'single'. A template
367+ * This file is used to display the content when $disp == 'single'. A template
368 * without this file will use index.main.php by default.
369 *
370- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
371- * @license http://quamplures.net/license.html Our License
372+ * Quam Plures - {@link http://quamplures.net/}
373+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
374+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
375 * @package templates
376 * @subpackage evopress
377 */
378
379=== modified file 'qp_templates/glossyblue/index.main.php'
380--- qp_templates/glossyblue/index.main.php 2010-08-03 21:49:39 +0000
381+++ qp_templates/glossyblue/index.main.php 2011-07-12 18:58:42 +0000
382@@ -7,8 +7,9 @@
383
384 * This file is used to display the content when no $disp-matching .main.php file exists.
385 *
386- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
387- * @license http://quamplures.net/license.html Our License
388+ * Quam Plures - {@link http://quamplures.net/}
389+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
390+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
391 * @package templates
392 * @subpackage glossyblue
393 */
394
395=== modified file 'qp_templates/glossyblue/page.main.php'
396--- qp_templates/glossyblue/page.main.php 2010-08-03 21:49:39 +0000
397+++ qp_templates/glossyblue/page.main.php 2011-07-12 18:58:42 +0000
398@@ -8,8 +8,9 @@
399 * This file is used to display the content when $disp == 'page'. A template
400 * without this file will use index.main.php by default.
401 *
402- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
403- * @license http://quamplures.net/license.html Our License
404+ * Quam Plures - {@link http://quamplures.net/}
405+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
406+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
407 * @package templates
408 * @subpackage glossyblue
409 */
410
411=== modified file 'qp_templates/glossyblue/posts.main.php'
412--- qp_templates/glossyblue/posts.main.php 2010-08-03 21:49:39 +0000
413+++ qp_templates/glossyblue/posts.main.php 2011-07-12 18:58:42 +0000
414@@ -8,8 +8,9 @@
415 * This file is used to display the content when $disp == 'posts'. A template
416 * without this file will use index.main.php by default.
417 *
418- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
419- * @license http://quamplures.net/license.html Our License
420+ * Quam Plures - {@link http://quamplures.net/}
421+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
422+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
423 * @package templates
424 * @subpackage glossyblue
425 */
426
427=== modified file 'qp_templates/glossyblue/single.main.php'
428--- qp_templates/glossyblue/single.main.php 2010-08-06 20:14:58 +0000
429+++ qp_templates/glossyblue/single.main.php 2011-07-12 18:58:42 +0000
430@@ -8,8 +8,9 @@
431 * This file is used to display the content when $disp == 'single'. A template
432 * without this file will use index.main.php by default.
433 *
434- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
435- * @license http://quamplures.net/license.html Our License
436+ * Quam Plures - {@link http://quamplures.net/}
437+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
438+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
439 * @package templates
440 * @subpackage glossyblue
441 */
442
443=== modified file 'qp_templates/intense/index.main.php'
444--- qp_templates/intense/index.main.php 2010-08-03 21:49:39 +0000
445+++ qp_templates/intense/index.main.php 2011-07-12 18:58:42 +0000
446@@ -7,8 +7,9 @@
447
448 * This file is used to display the content when no $disp-matching .main.php file exists.
449 *
450- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
451- * @license http://quamplures.net/license.html Our License
452+ * Quam Plures - {@link http://quamplures.net/}
453+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
454+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
455 * @package templates
456 * @subpackage intense
457 */
458
459=== modified file 'qp_templates/intense/page.main.php'
460--- qp_templates/intense/page.main.php 2010-08-03 21:49:39 +0000
461+++ qp_templates/intense/page.main.php 2011-07-12 18:58:42 +0000
462@@ -8,8 +8,9 @@
463 * This file is used to display the content when $disp == 'page'. A template
464 * without this file will use index.main.php by default.
465 *
466- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
467- * @license http://quamplures.net/license.html Our License
468+ * Quam Plures - {@link http://quamplures.net/}
469+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
470+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
471 * @package templates
472 * @subpackage intense
473 */
474
475=== modified file 'qp_templates/intense/posts.main.php'
476--- qp_templates/intense/posts.main.php 2010-08-03 21:49:39 +0000
477+++ qp_templates/intense/posts.main.php 2011-07-12 18:58:42 +0000
478@@ -8,8 +8,9 @@
479 * This file is used to display the content when $disp == 'posts'. A template
480 * without this file will use index.main.php by default.
481 *
482- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
483- * @license http://quamplures.net/license.html Our License
484+ * Quam Plures - {@link http://quamplures.net/}
485+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
486+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
487 * @package templates
488 * @subpackage intense
489 */
490
491=== modified file 'qp_templates/intense/single.main.php'
492--- qp_templates/intense/single.main.php 2010-08-06 20:14:58 +0000
493+++ qp_templates/intense/single.main.php 2011-07-12 18:58:42 +0000
494@@ -8,8 +8,9 @@
495 * This file is used to display the content when $disp == 'single'. A template
496 * without this file will use index.main.php by default.
497 *
498- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
499- * @license http://quamplures.net/license.html Our License
500+ * Quam Plures - {@link http://quamplures.net/}
501+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
502+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
503 * @package templates
504 * @subpackage intense
505 */
506
507=== modified file 'qp_templates/miami_blue/index.main.php'
508--- qp_templates/miami_blue/index.main.php 2010-08-06 20:14:58 +0000
509+++ qp_templates/miami_blue/index.main.php 2011-07-12 18:58:42 +0000
510@@ -7,8 +7,9 @@
511
512 * This file is used to display the content when no $disp-matching .main.php file exists.
513 *
514- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
515- * @license http://quamplures.net/license.html Our License
516+ * Quam Plures - {@link http://quamplures.net/}
517+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
518+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
519 * @package templates
520 * @subpackage miami_blue
521 */
522
523=== modified file 'qp_templates/natural_pink/index.main.php'
524--- qp_templates/natural_pink/index.main.php 2011-03-19 23:39:05 +0000
525+++ qp_templates/natural_pink/index.main.php 2011-07-12 18:58:42 +0000
526@@ -7,8 +7,9 @@
527
528 * This file is used to display the content when no $disp-matching .main.php file exists.
529 *
530- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
531- * @license http://quamplures.net/license.html Our License
532+ * Quam Plures - {@link http://quamplures.net/}
533+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
534+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
535 * @package templates
536 * @subpackage natural_pink
537 */
538
539=== modified file 'qp_templates/nifty_corners/index.main.php'
540--- qp_templates/nifty_corners/index.main.php 2010-08-06 20:14:58 +0000
541+++ qp_templates/nifty_corners/index.main.php 2011-07-12 18:58:42 +0000
542@@ -7,8 +7,9 @@
543
544 * This file is used to display the content when no $disp-matching .main.php file exists.
545 *
546- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
547- * @license http://quamplures.net/license.html Our License
548+ * Quam Plures - {@link http://quamplures.net/}
549+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
550+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
551 * @package templates
552 * @subpackage nifty_corners
553 */
554
555=== modified file 'qp_templates/photoblog/index.main.php'
556--- qp_templates/photoblog/index.main.php 2010-08-06 20:14:58 +0000
557+++ qp_templates/photoblog/index.main.php 2011-07-12 18:58:42 +0000
558@@ -7,8 +7,9 @@
559
560 * This file is used to display the content when no $disp-matching .main.php file exists.
561 *
562- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
563- * @license http://quamplures.net/license.html Our License
564+ * Quam Plures - {@link http://quamplures.net/}
565+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
566+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
567 * @package templates
568 * @subpackage photoblog
569 */
570
571=== modified file 'qp_templates/pixelgreen/index.main.php'
572--- qp_templates/pixelgreen/index.main.php 2010-08-03 21:49:39 +0000
573+++ qp_templates/pixelgreen/index.main.php 2011-07-12 18:58:42 +0000
574@@ -7,8 +7,9 @@
575
576 * This file is used to display the content when no $disp-matching .main.php file exists.
577 *
578- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
579- * @license http://quamplures.net/license.html Our License
580+ * Quam Plures - {@link http://quamplures.net/}
581+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
582+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
583 * @package templates
584 * @subpackage pixelgreen
585 */
586
587=== modified file 'qp_templates/pluralism/index.main.php'
588--- qp_templates/pluralism/index.main.php 2010-08-03 21:49:39 +0000
589+++ qp_templates/pluralism/index.main.php 2011-07-12 18:58:42 +0000
590@@ -7,8 +7,9 @@
591
592 * This file is used to display the content when no $disp-matching .main.php file exists.
593 *
594- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
595- * @license http://quamplures.net/license.html Our License
596+ * Quam Plures - {@link http://quamplures.net/}
597+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
598+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
599 * @package templates
600 * @subpackage pluralism
601 */
602
603=== modified file 'qp_templates/pluralism/page.main.php'
604--- qp_templates/pluralism/page.main.php 2010-08-03 21:49:39 +0000
605+++ qp_templates/pluralism/page.main.php 2011-07-12 18:58:42 +0000
606@@ -8,8 +8,9 @@
607 * This file is used to display the content when $disp == 'page'. A template
608 * without this file will use index.main.php by default.
609 *
610- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
611- * @license http://quamplures.net/license.html Our License
612+ * Quam Plures - {@link http://quamplures.net/}
613+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
614+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
615 * @package templates
616 * @subpackage pluralism
617 */
618
619=== modified file 'qp_templates/pluralism/posts.main.php'
620--- qp_templates/pluralism/posts.main.php 2010-08-03 21:49:39 +0000
621+++ qp_templates/pluralism/posts.main.php 2011-07-12 18:58:42 +0000
622@@ -8,8 +8,9 @@
623 * This file is used to display the content when $disp == 'posts'. A template
624 * without this file will use index.main.php by default.
625 *
626- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
627- * @license http://quamplures.net/license.html Our License
628+ * Quam Plures - {@link http://quamplures.net/}
629+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
630+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
631 * @package templates
632 * @subpackage pluralism
633 */
634
635=== modified file 'qp_templates/pluralism/single.main.php'
636--- qp_templates/pluralism/single.main.php 2010-08-06 20:14:58 +0000
637+++ qp_templates/pluralism/single.main.php 2011-07-12 18:58:42 +0000
638@@ -8,8 +8,9 @@
639 * This file is used to display the content when $disp == 'single'. A template
640 * without this file will use index.main.php by default.
641 *
642- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
643- * @license http://quamplures.net/license.html Our License
644+ * Quam Plures - {@link http://quamplures.net/}
645+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
646+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
647 * @package templates
648 * @subpackage pluralism
649 */
650
651=== modified file 'qp_templates/terrafirma/index.main.php'
652--- qp_templates/terrafirma/index.main.php 2010-07-26 21:11:00 +0000
653+++ qp_templates/terrafirma/index.main.php 2011-07-12 18:58:42 +0000
654@@ -7,8 +7,9 @@
655
656 * This file is used to display the content when no $disp-matching .main.php file exists.
657 *
658- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
659- * @license http://quamplures.net/license.html Our License
660+ * Quam Plures - {@link http://quamplures.net/}
661+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
662+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
663 * @package templates
664 * @subpackage terrafirma
665 */
666
667=== modified file 'qp_templates/vastitude/index.main.php'
668--- qp_templates/vastitude/index.main.php 2010-08-06 20:14:58 +0000
669+++ qp_templates/vastitude/index.main.php 2011-07-12 18:58:42 +0000
670@@ -9,8 +9,9 @@
671 *
672 * Vastitude design by Andrew Hreschak, www.thedarksighed.com
673 *
674- * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}
675- * @license http://quamplures.net/license.html Our License
676+ * Quam Plures - {@link http://quamplures.net/}
677+ * Released under GNU GPL License - {@link http://quamplures.net/license.html}
678+ * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
679 * @package templates
680 * @subpackage vastitude
681 */

Subscribers

People subscribed via source and target branches