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
=== modified file 'qp_templates/_credits.disp.php'
--- qp_templates/_credits.disp.php 2011-06-21 22:02:23 +0000
+++ qp_templates/_credits.disp.php 2011-07-12 18:58:42 +0000
@@ -22,7 +22,6 @@
2222
23<div id="credits">23<div id="credits">
24<dl>24<dl>
25
26<?php25<?php
27$credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );26$credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );
2827
@@ -36,7 +35,7 @@
36 {35 {
37 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';36 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';
38 echo '<dd><a href="', $linkback['url'].'" title="';37 echo '<dd><a href="', $linkback['url'].'" title="';
39 echo format_to_output( $linkback['title'].'htmlattr' ).'">';38 echo format_to_output( $linkback['title'], 'htmlattr' ).'">';
40 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';39 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';
41 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";40 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";
42 }41 }
@@ -46,13 +45,13 @@
4645
47// Second: plugin credits excluding 'core' plugins46// Second: plugin credits excluding 'core' plugins
48global $Plugins;47global $Plugins;
48
49$credits = array();49$credits = array();
50
51$Plugins->restart();50$Plugins->restart();
51
52while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )52while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )
53{53{
54 if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus'54 if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus' || $a_plugin->author == 'The b2evo Group' )
55 || $a_plugin->author == 'The b2evo Group' )
56 { // Skip our own plugins.55 { // Skip our own plugins.
57 continue;56 continue;
58 }57 }
@@ -81,12 +80,10 @@
81 ksort( $credits );80 ksort( $credits );
82 echo '<dt>'.T_('Plugin Credits').':</dt>'."\n";81 echo '<dt>'.T_('Plugin Credits').':</dt>'."\n";
83 echo '<dd><dl>'."\n";82 echo '<dd><dl>'."\n";
84
85 foreach( $credits as $credit )83 foreach( $credits as $credit )
86 {84 {
87 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";85 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";
88 }86 }
89
90 echo '</dl></dd>'."\n";87 echo '</dl></dd>'."\n";
91}88}
9289
@@ -94,16 +91,16 @@
94if( in_array( 'contribs', $credits_array ) )91if( in_array( 'contribs', $credits_array ) )
95{92{
96 global $templates_path;93 global $templates_path;
94
97 /**95 /**
98 * dummy docblock makes error-free autodocs96 * Load the list of contributors for this version
99 */97 */
100 require_once $templates_path.'/_contributors.php'; // contributors links98 require_once $templates_path.'/_contributors.php';
99
100 uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
101101
102 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";102 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";
103 echo '<dd><dl>'."\n";103 echo '<dd><dl>'."\n";
104
105 uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
106
107 foreach( $_hic_sunt_dracones as $dracone )104 foreach( $_hic_sunt_dracones as $dracone )
108 {105 {
109 echo '<dt><a href="'.$dracone['homepage'].'" title="';106 echo '<dt><a href="'.$dracone['homepage'].'" title="';
@@ -112,7 +109,6 @@
112 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );109 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );
113 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";110 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";
114 }111 }
115
116 echo '</dl></dd>'."\n";112 echo '</dl></dd>'."\n";
117}113}
118114
@@ -127,8 +123,6 @@
127 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";123 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";
128 echo '</dl></dd>', "\n";124 echo '</dl></dd>', "\n";
129}125}
130
131?>126?>
132
133</dl>127</dl>
134</div>128</div>
135129
=== modified file 'qp_templates/asevo/index.main.php'
--- qp_templates/asevo/index.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/asevo/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage asevo14 * @subpackage asevo
14 */15 */
1516
=== modified file 'qp_templates/basic/_credits.disp.php'
--- qp_templates/basic/_credits.disp.php 2011-06-22 14:51:53 +0000
+++ qp_templates/basic/_credits.disp.php 2011-07-12 18:58:42 +0000
@@ -28,7 +28,6 @@
2828
29<div id="credits">29<div id="credits">
30<dl>30<dl>
31
32<?php31<?php
33$credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );32$credits_array = explode( ',', $Blog->get_setting( 'credit_sections' ) );
3433
@@ -37,28 +36,26 @@
37{36{
38 echo '<dt>'.$Template->T_('Template Credits').':</dt>'."\n";37 echo '<dt>'.$Template->T_('Template Credits').':</dt>'."\n";
39 echo '<dd><dl>'."\n";38 echo '<dd><dl>'."\n";
40
41 foreach( $credits as $linkback )39 foreach( $credits as $linkback )
42 {40 {
43 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';41 echo '<dt>'.format_to_output( $linkback['pre'], 'htmlbody').'</dt>';
44 echo '<dd><a href="', $linkback['url'].'" title="';42 echo '<dd><a href="', $linkback['url'].'" title="';
45 echo format_to_output( $linkback['title'].'htmlattr' ).'">';43 echo format_to_output( $linkback['title'], 'htmlattr' ).'">';
46 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';44 echo format_to_output( $linkback['text'], 'text' ).'</a></dd><dd>';
47 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";45 echo format_to_output( $linkback['post'], 'htmlbody')."</dd>\n";
48 }46 }
49
50 echo '</dl></dd>'."\n";47 echo '</dl></dd>'."\n";
51}48}
5249
53// Second: plugin credits excluding 'core' plugins50// Second: plugin credits excluding 'core' plugins
54global $Plugins;51global $Plugins;
52
55$credits = array();53$credits = array();
56
57$Plugins->restart();54$Plugins->restart();
55
58while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )56while( ( $a_plugin = & $Plugins->get_next() ) && ( in_array( 'plugins', $credits_array ) ) )
59{57{
60 if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus'58 if( empty($a_plugin->name) || $a_plugin->author == 'Dracones Incompertus' || $a_plugin->author == 'The b2evo Group' )
61 || $a_plugin->author == 'The b2evo Group' )
62 { // Skip our own plugins.59 { // Skip our own plugins.
63 continue;60 continue;
64 }61 }
@@ -85,14 +82,12 @@
85if( !empty( $credits ) )82if( !empty( $credits ) )
86{83{
87 ksort( $credits );84 ksort( $credits );
88 echo '<dt>'.T_('Plugin Credits').':</dt>'."\n";85 echo '<dt>'.$Template->T_('Plugin Credits').':</dt>'."\n";
89 echo '<dd><dl>'."\n";86 echo '<dd><dl>'."\n";
90
91 foreach( $credits as $credit )87 foreach( $credits as $credit )
92 {88 {
93 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";89 echo '<dt>'.$credit['p_name'].' '.T_('by').' '.$credit['a_name'].'</dt><dd>'.$credit['desc']."</dd>\n";
94 }90 }
95
96 echo '</dl></dd>'."\n";91 echo '</dl></dd>'."\n";
97}92}
9893
@@ -100,16 +95,16 @@
100if( in_array( 'contribs', $credits_array ) )95if( in_array( 'contribs', $credits_array ) )
101{96{
102 global $templates_path;97 global $templates_path;
98
103 /**99 /**
104 * dummy docblock makes error-free autodocs100 * Load the list of contributors for this version
105 */101 */
106 require_once $templates_path.'/_contributors.php'; // contributors links102 require_once $templates_path.'/_contributors.php';
103
104 uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
107105
108 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";106 echo '<dt>'.T_('Core Contributors').':</dt>'."\n";
109 echo '<dd><dl>'."\n";107 echo '<dd><dl>'."\n";
110
111 uasort( $_hic_sunt_dracones, create_function( '$a, $b', 'return strnatcasecmp( $a[\'name\'], $b[\'name\'] );' ) );
112
113 foreach( $_hic_sunt_dracones as $dracone )108 foreach( $_hic_sunt_dracones as $dracone )
114 {109 {
115 echo '<dt><a href="'.$dracone['homepage'].'" title="';110 echo '<dt><a href="'.$dracone['homepage'].'" title="';
@@ -118,7 +113,6 @@
118 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );113 locale_flag( $dracone['locale'], 'h10px', 'leftmargin' );
119 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";114 echo format_to_output( $dracone['spiel'], 'htmlbody')."</dd>\n";
120 }115 }
121
122 echo '</dl></dd>'."\n";116 echo '</dl></dd>'."\n";
123}117}
124118
@@ -133,8 +127,6 @@
133 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";127 echo format_to_output( $Template->poweredby_linkback['post'], 'htmlbody'), "</dd>\n";
134 echo '</dl></dd>', "\n";128 echo '</dl></dd>', "\n";
135}129}
136
137?>130?>
138
139</dl>131</dl>
140</div>132</div>
141133
=== modified file 'qp_templates/basic/index.main.php'
--- qp_templates/basic/index.main.php 2010-07-25 18:05:13 +0000
+++ qp_templates/basic/index.main.php 2011-07-12 18:58:42 +0000
@@ -10,8 +10,9 @@
10 * @author Your Name <spam-me@domain.tld>10 * @author Your Name <spam-me@domain.tld>
11 * @author {@link http://domain.tld/ Your Name linked to your domain}11 * @author {@link http://domain.tld/ Your Name linked to your domain}
12 *12 *
13 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}13 * Quam Plures - {@link http://quamplures.net/}
14 * @license http://quamplures.net/license.html Our License14 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
15 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
15 * @package templates16 * @package templates
16 * @subpackage basic17 * @subpackage basic
17 */18 */
1819
=== modified file 'qp_templates/custom/index.main.php'
--- qp_templates/custom/index.main.php 2010-08-19 06:43:12 +0000
+++ qp_templates/custom/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage custom14 * @subpackage custom
14 */15 */
1516
=== modified file 'qp_templates/evocamp/index.main.php'
--- qp_templates/evocamp/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evocamp/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage evocamp14 * @subpackage evocamp
14 */15 */
1516
=== modified file 'qp_templates/evocamp/page.main.php'
--- qp_templates/evocamp/page.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evocamp/page.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'page'. A template 8 * This file is used to display the content when $disp == 'page'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evocamp15 * @subpackage evocamp
15 */16 */
1617
=== modified file 'qp_templates/evocamp/posts.main.php'
--- qp_templates/evocamp/posts.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evocamp/posts.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'posts'. A template 8 * This file is used to display the content when $disp == 'posts'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evocamp15 * @subpackage evocamp
15 */16 */
1617
=== modified file 'qp_templates/evocamp/single.main.php'
--- qp_templates/evocamp/single.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/evocamp/single.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'single'. A template 8 * This file is used to display the content when $disp == 'single'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evocamp15 * @subpackage evocamp
15 */16 */
1617
=== modified file 'qp_templates/evopress/index.main.php'
--- qp_templates/evopress/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evopress/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage evopress14 * @subpackage evopress
14 */15 */
1516
=== modified file 'qp_templates/evopress/page.main.php'
--- qp_templates/evopress/page.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evopress/page.main.php 2011-07-12 18:58:42 +0000
@@ -5,11 +5,12 @@
5Need help doing something with this file?5Need help doing something with this file?
6http://docs.quamplures.net/li_templates.html - tutorials and autodocs6http://docs.quamplures.net/li_templates.html - tutorials and autodocs
77
8 * This file is used to display the content when $disp == 'page'. A template8 * This file is used to display the content when $disp == 'page'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evopress15 * @subpackage evopress
15 */16 */
1617
=== modified file 'qp_templates/evopress/posts.main.php'
--- qp_templates/evopress/posts.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/evopress/posts.main.php 2011-07-12 18:58:42 +0000
@@ -5,11 +5,12 @@
5Need help doing something with this file?5Need help doing something with this file?
6http://docs.quamplures.net/li_templates.html - tutorials and autodocs6http://docs.quamplures.net/li_templates.html - tutorials and autodocs
77
8 * This file is used to display the content when $disp == 'posts'. A template8 * This file is used to display the content when $disp == 'posts'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evopress15 * @subpackage evopress
15 */16 */
1617
=== modified file 'qp_templates/evopress/single.main.php'
--- qp_templates/evopress/single.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/evopress/single.main.php 2011-07-12 18:58:42 +0000
@@ -5,11 +5,12 @@
5Need help doing something with this file?5Need help doing something with this file?
6http://docs.quamplures.net/li_templates.html - tutorials and autodocs6http://docs.quamplures.net/li_templates.html - tutorials and autodocs
77
8 * This file is used to display the content when $disp == 'single'. A template8 * This file is used to display the content when $disp == 'single'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage evopress15 * @subpackage evopress
15 */16 */
1617
=== modified file 'qp_templates/glossyblue/index.main.php'
--- qp_templates/glossyblue/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/glossyblue/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage glossyblue14 * @subpackage glossyblue
14 */15 */
1516
=== modified file 'qp_templates/glossyblue/page.main.php'
--- qp_templates/glossyblue/page.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/glossyblue/page.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'page'. A template 8 * This file is used to display the content when $disp == 'page'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage glossyblue15 * @subpackage glossyblue
15 */16 */
1617
=== modified file 'qp_templates/glossyblue/posts.main.php'
--- qp_templates/glossyblue/posts.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/glossyblue/posts.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'posts'. A template 8 * This file is used to display the content when $disp == 'posts'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage glossyblue15 * @subpackage glossyblue
15 */16 */
1617
=== modified file 'qp_templates/glossyblue/single.main.php'
--- qp_templates/glossyblue/single.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/glossyblue/single.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'single'. A template 8 * This file is used to display the content when $disp == 'single'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage glossyblue15 * @subpackage glossyblue
15 */16 */
1617
=== modified file 'qp_templates/intense/index.main.php'
--- qp_templates/intense/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/intense/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage intense14 * @subpackage intense
14 */15 */
1516
=== modified file 'qp_templates/intense/page.main.php'
--- qp_templates/intense/page.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/intense/page.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'page'. A template 8 * This file is used to display the content when $disp == 'page'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage intense15 * @subpackage intense
15 */16 */
1617
=== modified file 'qp_templates/intense/posts.main.php'
--- qp_templates/intense/posts.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/intense/posts.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'posts'. A template 8 * This file is used to display the content when $disp == 'posts'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage intense15 * @subpackage intense
15 */16 */
1617
=== modified file 'qp_templates/intense/single.main.php'
--- qp_templates/intense/single.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/intense/single.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'single'. A template 8 * This file is used to display the content when $disp == 'single'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage intense15 * @subpackage intense
15 */16 */
1617
=== modified file 'qp_templates/miami_blue/index.main.php'
--- qp_templates/miami_blue/index.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/miami_blue/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage miami_blue14 * @subpackage miami_blue
14 */15 */
1516
=== modified file 'qp_templates/natural_pink/index.main.php'
--- qp_templates/natural_pink/index.main.php 2011-03-19 23:39:05 +0000
+++ qp_templates/natural_pink/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage natural_pink14 * @subpackage natural_pink
14 */15 */
1516
=== modified file 'qp_templates/nifty_corners/index.main.php'
--- qp_templates/nifty_corners/index.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/nifty_corners/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage nifty_corners14 * @subpackage nifty_corners
14 */15 */
1516
=== modified file 'qp_templates/photoblog/index.main.php'
--- qp_templates/photoblog/index.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/photoblog/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage photoblog14 * @subpackage photoblog
14 */15 */
1516
=== modified file 'qp_templates/pixelgreen/index.main.php'
--- qp_templates/pixelgreen/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/pixelgreen/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage pixelgreen14 * @subpackage pixelgreen
14 */15 */
1516
=== modified file 'qp_templates/pluralism/index.main.php'
--- qp_templates/pluralism/index.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/pluralism/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage pluralism14 * @subpackage pluralism
14 */15 */
1516
=== modified file 'qp_templates/pluralism/page.main.php'
--- qp_templates/pluralism/page.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/pluralism/page.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'page'. A template 8 * This file is used to display the content when $disp == 'page'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage pluralism15 * @subpackage pluralism
15 */16 */
1617
=== modified file 'qp_templates/pluralism/posts.main.php'
--- qp_templates/pluralism/posts.main.php 2010-08-03 21:49:39 +0000
+++ qp_templates/pluralism/posts.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'posts'. A template 8 * This file is used to display the content when $disp == 'posts'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage pluralism15 * @subpackage pluralism
15 */16 */
1617
=== modified file 'qp_templates/pluralism/single.main.php'
--- qp_templates/pluralism/single.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/pluralism/single.main.php 2011-07-12 18:58:42 +0000
@@ -8,8 +8,9 @@
8 * This file is used to display the content when $disp == 'single'. A template 8 * This file is used to display the content when $disp == 'single'. A template
9 * without this file will use index.main.php by default.9 * without this file will use index.main.php by default.
10 *10 *
11 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}11 * Quam Plures - {@link http://quamplures.net/}
12 * @license http://quamplures.net/license.html Our License12 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
13 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
13 * @package templates14 * @package templates
14 * @subpackage pluralism15 * @subpackage pluralism
15 */16 */
1617
=== modified file 'qp_templates/terrafirma/index.main.php'
--- qp_templates/terrafirma/index.main.php 2010-07-26 21:11:00 +0000
+++ qp_templates/terrafirma/index.main.php 2011-07-12 18:58:42 +0000
@@ -7,8 +7,9 @@
77
8 * This file is used to display the content when no $disp-matching .main.php file exists.8 * This file is used to display the content when no $disp-matching .main.php file exists.
9 *9 *
10 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}10 * Quam Plures - {@link http://quamplures.net/}
11 * @license http://quamplures.net/license.html Our License11 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
12 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
12 * @package templates13 * @package templates
13 * @subpackage terrafirma14 * @subpackage terrafirma
14 */15 */
1516
=== modified file 'qp_templates/vastitude/index.main.php'
--- qp_templates/vastitude/index.main.php 2010-08-06 20:14:58 +0000
+++ qp_templates/vastitude/index.main.php 2011-07-12 18:58:42 +0000
@@ -9,8 +9,9 @@
9 *9 *
10 * Vastitude design by Andrew Hreschak, www.thedarksighed.com10 * Vastitude design by Andrew Hreschak, www.thedarksighed.com
11 *11 *
12 * @copyright {@link http://quamplures.net/team.html The Quam Plures Team, 2010}12 * Quam Plures - {@link http://quamplures.net/}
13 * @license http://quamplures.net/license.html Our License13 * Released under GNU GPL License - {@link http://quamplures.net/license.html}
14 * @copyright (c) 2009 - 2011 by the Quam Plures developers - {@link http://quamplures.net/}
14 * @package templates15 * @package templates
15 * @subpackage vastitude16 * @subpackage vastitude
16 */17 */

Subscribers

People subscribed via source and target branches