You can subscribe to this list here.
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(16) |
Sep
(38) |
Oct
(7) |
Nov
|
Dec
|
|---|
|
From: <dac...@us...> - 2007-09-02 06:19:08
|
Revision: 49
http://thevr.svn.sourceforge.net/thevr/?rev=49&view=rev
Author: dachebodt
Date: 2007-09-01 23:19:04 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Fixed syntax error
Modified Paths:
--------------
mods/cms/trunk/modules/blocks/info/acp_blocks.php
Modified: mods/cms/trunk/modules/blocks/info/acp_blocks.php
===================================================================
--- mods/cms/trunk/modules/blocks/info/acp_blocks.php 2007-09-02 06:17:57 UTC (rev 48)
+++ mods/cms/trunk/modules/blocks/info/acp_blocks.php 2007-09-02 06:19:04 UTC (rev 49)
@@ -29,7 +29,7 @@
function install()
{
- global $db, $phpbb_root_path, $phpEx;
+ global $db, $config, $phpbb_root_path, $phpEx;
include_once($phpbb_root_path . "modules/blocks/constants.$phpEx");
@@ -45,7 +45,7 @@
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE utf8_bin;";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (1, 'left', 'Left Column', 1, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (2, 'right', 'Right Column', 1, 0, '513', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (2, 'right', 'Right Column', 1, 0, '', 1);";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (4, 'top', '', 0, 0, '', 1);";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (9, 'bottom', '', 0, 0, '', 1);";
@@ -59,20 +59,21 @@
`style` mediumint(8) NOT NULL default '0',
`permission` varchar(125) default NULL,
`class` char(10) NOT NULL,
- `xfer_to` tinyint(2) NOT NULL,
+ `xfer_to` tinyint(2) NOT NULL default '',
`xtype` tinyint(1) NOT NULL default '0',
`xmodules` varchar(125) default NULL,
`status` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`bid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE utf8_bin;";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (1, 'main_menu, 'blocks', 0, 1, 0, 1, 'default', '', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (2, 'whois', 'blocks', 0, 1, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (3, 'birthday', 'blocks', 0, 1, 2, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (4, 'login', 'blocks', 1, 2, 0, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (5, 'user_menu', 'blocks', 1, 2, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (6, 'recent_topics', 'forums', 1, 2, 2, 1, 0, 'default', 1, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (7, 'stats', 'blocks', 0, 2, 3, 1, 0, 'default', 0, 0, '', 1);";
+ $style = $config['default_style'];
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (1, 'main_menu', 'blocks', 0, 1, 0, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (2, 'whois', 'blocks', 0, 1, 1, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (3, 'birthday', 'blocks', 0, 1, 2, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (4, 'login', 'blocks', 0, 2, 0, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (5, 'user_menu', 'blocks', 0, 2, 1, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (6, 'recent_topics', 'forums', 0, 2, 2, $style, 0, '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (7, 'stats', 'blocks', 0, 2, 3, $style, 0, '', 0, 0, '', 1);";
$sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . BLOCKS_CONFIG_TABLE . " (
`bid` mediumint(8) NOT NULL,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 06:17:56
|
Revision: 48
http://thevr.svn.sourceforge.net/thevr/?rev=48&view=rev
Author: dachebodt
Date: 2007-09-01 23:17:57 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
session preservation fix for each refresh
Modified Paths:
--------------
mods/cms/trunk/cms_install.php
Modified: mods/cms/trunk/cms_install.php
===================================================================
--- mods/cms/trunk/cms_install.php 2007-09-02 04:00:40 UTC (rev 47)
+++ mods/cms/trunk/cms_install.php 2007-09-02 06:17:57 UTC (rev 48)
@@ -155,7 +155,7 @@
if($next_mod)
{
- $meta_info = append_sid("{$phpbb_root_path}cms_install.$phpEx", "action=install&m=$next_mod");
+ $meta_info = append_sid("{$phpbb_root_path}cms_install.$phpEx", "action=install&m=$next_mod", true, $user->session_id));
meta_refresh(3, $meta_info);
$content = "Installing $next_mod, please wait..."; //sprintf($user->lang['INSTALLING_MOD'], $next_mod);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 04:00:44
|
Revision: 47
http://thevr.svn.sourceforge.net/thevr/?rev=47&view=rev
Author: dachebodt
Date: 2007-09-01 21:00:40 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
added main menu block template
Added Paths:
-----------
mods/cms/trunk/modules/blocks/template/block_main_menu.html
Added: mods/cms/trunk/modules/blocks/template/block_main_menu.html
===================================================================
--- mods/cms/trunk/modules/blocks/template/block_main_menu.html (rev 0)
+++ mods/cms/trunk/modules/blocks/template/block_main_menu.html 2007-09-02 04:00:40 UTC (rev 47)
@@ -0,0 +1,16 @@
+<dl class="navlinks">
+ <!-- BEGIN l_block1 -->
+ <ul>
+ <!-- IF l_block1.S_SELECTED -->
+ <dd id="active-subsection"><span>{l_block1.L_TITLE}</span></dd>
+ <dl class="navlinks">
+ <!-- BEGIN l_block2 -->
+ <dd>» <!-- IF l_block1.l_block2.S_SELECTED --><b>{l_block1.l_block2.L_TITLE}</b><!-- ELSE --><a href="{l_block1.l_block2.U_TITLE}">{l_block1.l_block2.L_TITLE}</a><!-- ENDIF --></dd>
+ <!-- END l_block2 -->
+ </dl>
+ <!-- ELSE -->
+ <dd><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></dd>
+ <!-- ENDIF -->
+ </ul>
+ <!-- END l_block1 -->
+</dl>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 03:58:50
|
Revision: 46
http://thevr.svn.sourceforge.net/thevr/?rev=46&view=rev
Author: dachebodt
Date: 2007-09-01 20:58:50 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
added main_menu_block
Added Paths:
-----------
mods/cms/trunk/modules/blocks/blocks/cms_main_menu.php
Added: mods/cms/trunk/modules/blocks/blocks/cms_main_menu.php
===================================================================
--- mods/cms/trunk/modules/blocks/blocks/cms_main_menu.php (rev 0)
+++ mods/cms/trunk/modules/blocks/blocks/cms_main_menu.php 2007-09-02 03:58:50 UTC (rev 46)
@@ -0,0 +1,145 @@
+<?php
+/**
+*
+* @package blocks
+* @version $Id: cms_calendar.php,v 1.38 2006/11/24 14:58:07 acydburn Exp $
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+function main_menu_block($data)
+{
+ global $mtemplate, $module, $phpbb_root_path, $phpEx, $user;
+
+ $current_id = $right_id = false;
+ $module_url = append_sid("{$phpbb_root_path}index.$phpEx");
+
+ // Make sure the module_url has a question mark set, effectively determining the delimiter to use
+ $delim = (strpos($module_url, '?') === false) ? '?' : '&';
+
+ $current_padding = $current_depth = 0;
+ $linear_offset = 'l_block1';
+ $tabular_offset = 't_block2';
+
+ // Generate the list of modules, we'll do this in two ways ...
+ // 1) In a linear fashion
+ // 2) In a combined tabbed + linear fashion ... tabs for the categories
+ // and a linear list for subcategories/items
+ foreach ($module->module_ary as $row_id => $item_ary)
+ {
+ // Skip hidden modules
+ if (!$item_ary['display'])
+ {
+ continue;
+ }
+
+ // Skip branch
+ if ($right_id !== false)
+ {
+ if ($item_ary['left'] < $right_id)
+ {
+ continue;
+ }
+
+ $right_id = false;
+ }
+
+ // Category with no members on their way down (we have to check every level)
+ if (!$item_ary['name'])
+ {
+ $empty_category = true;
+
+ // We go through the branch and look for an activated module
+ foreach (array_slice($module->module_ary, $row_id + 1) as $temp_row)
+ {
+ if ($temp_row['left'] > $item_ary['left'] && $temp_row['left'] < $item_ary['right'])
+ {
+ // Module there and displayed?
+ if ($temp_row['name'] && $temp_row['display'])
+ {
+ $empty_category = false;
+ break;
+ }
+ continue;
+ }
+ break;
+ }
+
+ // Skip the branch
+ if ($empty_category)
+ {
+ $right_id = $item_ary['right'];
+ continue;
+ }
+ }
+
+ // Select first id we can get
+ if (!$current_id && (in_array($item_ary['id'], array_keys($module->module_cache['parents'])) || $item_ary['id'] == $module->p_id))
+ {
+ $current_id = $item_ary['id'];
+ }
+
+ $depth = $item_ary['depth'];
+
+ if ($depth > $current_depth)
+ {
+ $linear_offset = $linear_offset . '.l_block' . ($depth + 1);
+ $tabular_offset = ($depth + 1 > 2) ? $tabular_offset . '.t_block' . ($depth + 1) : $tabular_offset;
+ }
+ else if ($depth < $current_depth)
+ {
+ for ($i = $current_depth - $depth; $i > 0; $i--)
+ {
+ $linear_offset = substr($linear_offset, 0, strrpos($linear_offset, '.'));
+ $tabular_offset = ($i + $depth > 1) ? substr($tabular_offset, 0, strrpos($tabular_offset, '.')) : $tabular_offset;
+ }
+ }
+
+ $u_title = $module_url . $delim . 'i=' . (($item_ary['cat']) ? $item_ary['id'] : $item_ary['name'] . (($item_ary['is_duplicate']) ? '&icat=' . $current_id : '') . '&mode=' . $item_ary['mode']);
+
+ // Was not allowed in categories before - /*!$item_ary['cat'] && */
+ $u_title .= (isset($item_ary['url_extra'])) ? $item_ary['url_extra'] : '';
+
+ // Only output a categories items if it's currently selected
+ if (!$depth || ($depth && (in_array($item_ary['parent'], array_values($module->module_cache['parents'])) || $item_ary['parent'] == $module->p_parent)))
+ {
+ $use_tabular_offset = (!$depth) ? 't_block1' : $tabular_offset;
+
+ $tpl_ary = array(
+ 'L_TITLE' => $item_ary['lang'],
+ 'S_SELECTED' => (in_array($item_ary['id'], array_keys($module->module_cache['parents'])) || $item_ary['id'] == $module->p_id) ? true : false,
+ 'U_TITLE' => $u_title
+ );
+
+ $mtemplate->assign_block_vars($use_tabular_offset, array_merge($tpl_ary, array_change_key_case($item_ary, CASE_UPPER)));
+ }
+
+ $tpl_ary = array(
+ 'L_TITLE' => $item_ary['lang'],
+ 'S_SELECTED' => (in_array($item_ary['id'], array_keys($module->module_cache['parents'])) || $item_ary['id'] == $module->p_id) ? true : false,
+ 'U_TITLE' => $u_title
+ );
+
+ $mtemplate->assign_block_vars($linear_offset, array_merge($tpl_ary, array_change_key_case($item_ary, CASE_UPPER)));
+
+ $current_depth = $depth;
+ }
+
+ $mtemplate->set_filenames(array(
+ 'content' => 'block_main_menu.html')
+ );
+
+ $block['TITLE'] = $user->lang['MENU'];
+ $block['CONTENT'] = $mtemplate->assign_display('content');
+
+ return $block;
+}
+
+function calendar_block_config()
+{
+ $block_config = array();
+
+ return $block_config;
+}
+?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 03:53:40
|
Revision: 45
http://thevr.svn.sourceforge.net/thevr/?rev=45&view=rev
Author: dachebodt
Date: 2007-09-01 20:53:42 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
removed template variables for main menu
Modified Paths:
--------------
mods/cms/trunk/styles/subsilver2/template/layout.html
Modified: mods/cms/trunk/styles/subsilver2/template/layout.html
===================================================================
--- mods/cms/trunk/styles/subsilver2/template/layout.html 2007-09-02 03:52:03 UTC (rev 44)
+++ mods/cms/trunk/styles/subsilver2/template/layout.html 2007-09-02 03:53:42 UTC (rev 45)
@@ -4,29 +4,6 @@
<tr>
<td width="180" valign="top">
- <table class="tablebg" width="100%" cellspacing="1">
- <tr>
- <th>{L_MENU}</th>
- </tr>
-
- <!-- BEGIN l_block1 -->
- <tr>
- <!-- IF l_block1.S_SELECTED -->
- <td class="row1"><b class="nav">{l_block1.L_TITLE}</b>
- <ul class="nav" style="margin: 0px; padding: 0px; list-style-type: none; line-height: 175%;">
- <!-- BEGIN l_block2 -->
- <li>» <!-- IF l_block1.l_block2.S_SELECTED --><b>{l_block1.l_block2.L_TITLE}</b><!-- ELSE --><a href="{l_block1.l_block2.U_TITLE}">{l_block1.l_block2.L_TITLE}</a><!-- ENDIF --></li>
- <!-- END l_block2 -->
- </ul>
- <!-- ELSE -->
- <td class="row2" nowrap="nowrap" onmouseover="this.className='row1'" onmouseout="this.className='row2'" onclick="location.href='{l_block1.U_TITLE}'"><a class="nav" href="{l_block1.U_TITLE}">{l_block1.L_TITLE}</a>
- <!-- ENDIF -->
- </td>
- </tr>
- <!-- END l_block1 -->
- </table>
- <div style="padding: 2px; height:5px; min-width:200px;"></div>
-
<!-- BEGIN left -->
<table class="tablebg" width="100%" cellspacing="1">
<!-- IF left.TITLE -->
@@ -40,6 +17,7 @@
</table>
<div style="padding: 2px; height:5px; min-width:200px;"></div>
<!-- END left -->
+
</td>
<td width="4" valign="top"></td>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 03:52:02
|
Revision: 44
http://thevr.svn.sourceforge.net/thevr/?rev=44&view=rev
Author: dachebodt
Date: 2007-09-01 20:52:03 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
removed template variables for statis main menu
Modified Paths:
--------------
mods/cms/trunk/styles/prosilver/template/layout.html
Modified: mods/cms/trunk/styles/prosilver/template/layout.html
===================================================================
--- mods/cms/trunk/styles/prosilver/template/layout.html 2007-09-02 03:50:47 UTC (rev 43)
+++ mods/cms/trunk/styles/prosilver/template/layout.html 2007-09-02 03:52:03 UTC (rev 44)
@@ -1,40 +1,17 @@
<!-- INCLUDE overall_header.html -->
<div class="left-box" style="width:20%">
- <div class="panel">
- <div class="inner">
- <span class="corners-top"><span></span></span>
- <h3>{L_MENU}</h3>
- <dl class="navlinks">
- <!-- BEGIN l_block1 -->
- <ul>
- <!-- IF l_block1.S_SELECTED -->
- <dd id="active-subsection"><span>{l_block1.L_TITLE}</span></dd>
- <dl class="navlinks">
- <!-- BEGIN l_block2 -->
- <dd>» <!-- IF l_block1.l_block2.S_SELECTED --><b>{l_block1.l_block2.L_TITLE}</b><!-- ELSE --><a href="{l_block1.l_block2.U_TITLE}">{l_block1.l_block2.L_TITLE}</a><!-- ENDIF --></dd>
- <!-- END l_block2 -->
- </dl>
- <!-- ELSE -->
- <dd><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></dd>
- <!-- ENDIF -->
- <!-- END l_block1 -->
- </dl>
- <span class="corners-bottom"><span></span></span>
- </div>
+ <!-- BEGIN left -->
+ <div class="panel<!-- IF left.CLASS --> {left.CLASS}<!-- ENDIF -->">
+ <div class="inner">
+ <span class="corners-top"><span></span></span>
+ <!-- IF left.TITLE --><h3>{left.TITLE}</h3><!-- ENDIF -->
+ <span>{left.CONTENT}</span>
+ <span class="corners-bottom"><span></span></span>
</div>
-
- <!-- BEGIN left -->
- <div class="panel<!-- IF left.CLASS --> {left.CLASS}<!-- ENDIF -->">
- <div class="inner">
- <span class="corners-top"><span></span></span>
- <!-- IF left.TITLE --><h3>{left.TITLE}</h3><!-- ENDIF -->
- <span>{left.CONTENT}</span>
- <span class="corners-bottom"><span></span></span>
- </div>
- </div>
- <!-- END left -->
+ </div>
+ <!-- END left -->
</div>
<!-- IF .top_hor -->
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 03:50:44
|
Revision: 43
http://thevr.svn.sourceforge.net/thevr/?rev=43&view=rev
Author: dachebodt
Date: 2007-09-01 20:50:47 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
converting main menu to dynamic block
Modified Paths:
--------------
mods/cms/trunk/index.php
Modified: mods/cms/trunk/index.php
===================================================================
--- mods/cms/trunk/index.php 2007-09-02 03:49:25 UTC (rev 42)
+++ mods/cms/trunk/index.php 2007-09-02 03:50:47 UTC (rev 43)
@@ -41,9 +41,6 @@
// Select the active module
$module->set_active($id, $mode);
- // Assign data to the template engine for the list of modules
- $module->assign_tpl_vars(append_sid("{$phpbb_root_path}index.$phpEx"));
-
// Set custom template path
$tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
$mtemplate->set_custom_template($tpl_path, $module->p_dir);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-02 03:49:22
|
Revision: 42
http://thevr.svn.sourceforge.net/thevr/?rev=42&view=rev
Author: dachebodt
Date: 2007-09-01 20:49:25 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
changed main menu from statis block to dynamic block
Modified Paths:
--------------
mods/cms/trunk/modules/blocks/info/acp_blocks.php
Modified: mods/cms/trunk/modules/blocks/info/acp_blocks.php
===================================================================
--- mods/cms/trunk/modules/blocks/info/acp_blocks.php 2007-09-02 03:28:16 UTC (rev 41)
+++ mods/cms/trunk/modules/blocks/info/acp_blocks.php 2007-09-02 03:49:25 UTC (rev 42)
@@ -45,7 +45,7 @@
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE utf8_bin;";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (1, 'left', 'Left Column', 1, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (8, 'right', 'Right Column', 1, 0, '513', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (2, 'right', 'Right Column', 1, 0, '513', 1);";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (4, 'top', '', 0, 0, '', 1);";
$sql_ary[] = 'INSERT INTO ' . BLOCK_POSITIONS_TABLE . " VALUES (9, 'bottom', '', 0, 0, '', 1);";
@@ -57,7 +57,7 @@
`position` tinyint(2) NOT NULL default '1',
`weight` mediumint(8) NOT NULL default '0',
`style` mediumint(8) NOT NULL default '0',
- `permission` int(2) NOT NULL default '0',
+ `permission` varchar(125) default NULL,
`class` char(10) NOT NULL,
`xfer_to` tinyint(2) NOT NULL,
`xtype` tinyint(1) NOT NULL default '0',
@@ -66,11 +66,13 @@
PRIMARY KEY (`bid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE utf8_bin;";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (21, 'whois', 'blocks', 0, 1, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (18, 'birthday', 'blocks', 0, 1, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (19, 'login', 'blocks', 1, 8, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (20, 'stats', 'blocks', 0, 8, 1, 1, 0, 'default', 0, 0, '', 1);";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (22, 'recent_topics', 'forums', 1, 8, 1, 1, 0, 'default', 1, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (1, 'main_menu, 'blocks', 0, 1, 0, 1, 'default', '', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (2, 'whois', 'blocks', 0, 1, 1, 1, 0, 'default', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (3, 'birthday', 'blocks', 0, 1, 2, 1, 0, 'default', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (4, 'login', 'blocks', 1, 2, 0, 1, 0, 'default', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (5, 'user_menu', 'blocks', 1, 2, 1, 1, 0, 'default', 0, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (6, 'recent_topics', 'forums', 1, 2, 2, 1, 0, 'default', 1, 0, '', 1);";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_TABLE . " VALUES (7, 'stats', 'blocks', 0, 2, 3, 1, 0, 'default', 0, 0, '', 1);";
$sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . BLOCKS_CONFIG_TABLE . " (
`bid` mediumint(8) NOT NULL,
@@ -78,10 +80,10 @@
`bval` varchar(255) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE utf8_bin;";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (22, 'exclude_forums', '');";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (22, 'recent_title_limit', '20');";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (22, 'max_topics', '10');";
- $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (19, 'show_hide_me', '1');";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (6, 'exclude_forums', '');";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (6, 'recent_title_limit', '20');";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (6, 'max_topics', '10');";
+ $sql_ary[] = 'INSERT INTO ' . BLOCKS_CONFIG_TABLE . " VALUES (4, 'show_hide_me', '1');";
foreach($sql_ary as $i => $sql)
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-09-02 03:28:17
|
Revision: 41
http://thevr.svn.sourceforge.net/thevr/?rev=41&view=rev
Author: Yautja_cetanu
Date: 2007-09-01 20:28:16 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Updated properties so log messages are required.
Property Changed:
----------------
/
mods/cms/trunk/_install/
mods/cms/trunk/_install/convertors/
mods/cms/trunk/_install/data/
mods/cms/trunk/_install/schemas/
mods/cms/trunk/adm/
mods/cms/trunk/adm/images/
mods/cms/trunk/adm/style/
mods/cms/trunk/cache/
mods/cms/trunk/docs/
mods/cms/trunk/files/
mods/cms/trunk/images/
mods/cms/trunk/images/avatars/
mods/cms/trunk/images/avatars/gallery/
mods/cms/trunk/images/avatars/upload/
mods/cms/trunk/images/icons/
mods/cms/trunk/images/icons/misc/
mods/cms/trunk/images/icons/smile/
mods/cms/trunk/images/ranks/
mods/cms/trunk/images/smilies/
mods/cms/trunk/images/upload_icons/
mods/cms/trunk/includes/
mods/cms/trunk/includes/acm/
mods/cms/trunk/includes/acp/
mods/cms/trunk/includes/acp/info/
mods/cms/trunk/includes/auth/
mods/cms/trunk/includes/captcha/
mods/cms/trunk/includes/db/
mods/cms/trunk/includes/diff/
mods/cms/trunk/includes/js/
mods/cms/trunk/includes/mcp/
mods/cms/trunk/includes/mcp/info/
mods/cms/trunk/includes/search/
mods/cms/trunk/includes/ucp/
mods/cms/trunk/includes/ucp/info/
mods/cms/trunk/includes/utf/
mods/cms/trunk/includes/utf/data/
mods/cms/trunk/language/
mods/cms/trunk/language/en/
mods/cms/trunk/language/en/acp/
mods/cms/trunk/language/en/email/
mods/cms/trunk/language/en/mods/
mods/cms/trunk/modules/
mods/cms/trunk/modules/blocks/
mods/cms/trunk/modules/blocks/blocks/
mods/cms/trunk/modules/blocks/info/
mods/cms/trunk/modules/blocks/language/
mods/cms/trunk/modules/blocks/language/en/
mods/cms/trunk/modules/blocks/template/
mods/cms/trunk/modules/categories/
mods/cms/trunk/modules/categories/blocks/
mods/cms/trunk/modules/categories/info/
mods/cms/trunk/modules/categories/language/
mods/cms/trunk/modules/categories/language/en/
mods/cms/trunk/modules/categories/template/
mods/cms/trunk/modules/comments/
mods/cms/trunk/modules/comments/blocks/
mods/cms/trunk/modules/comments/info/
mods/cms/trunk/modules/comments/language/
mods/cms/trunk/modules/comments/language/en/
mods/cms/trunk/modules/comments/template/
mods/cms/trunk/modules/content/
mods/cms/trunk/modules/content/blocks/
mods/cms/trunk/modules/content/info/
mods/cms/trunk/modules/content/language/
mods/cms/trunk/modules/content/language/en/
mods/cms/trunk/modules/content/template/
mods/cms/trunk/modules/cs/
mods/cms/trunk/modules/cs/blocks/
mods/cms/trunk/modules/cs/images/
mods/cms/trunk/modules/cs/images/bg/
mods/cms/trunk/modules/cs/images/colorpicker/
mods/cms/trunk/modules/cs/images/hdr/
mods/cms/trunk/modules/cs/images/pointers/
mods/cms/trunk/modules/cs/images/structure/
mods/cms/trunk/modules/cs/images/themes/
mods/cms/trunk/modules/cs/info/
mods/cms/trunk/modules/cs/js/
mods/cms/trunk/modules/cs/language/
mods/cms/trunk/modules/cs/language/en/
mods/cms/trunk/modules/cs/template/
mods/cms/trunk/modules/forums/
mods/cms/trunk/modules/forums/blocks/
mods/cms/trunk/modules/forums/info/
mods/cms/trunk/modules/forums/language/
mods/cms/trunk/modules/forums/language/en/
mods/cms/trunk/modules/forums/template/
mods/cms/trunk/modules/mods/
mods/cms/trunk/modules/mods/info/
mods/cms/trunk/modules/mods/language/
mods/cms/trunk/modules/mods/language/en/
mods/cms/trunk/modules/mods/template/
mods/cms/trunk/modules/search/
mods/cms/trunk/modules/search/blocks/
mods/cms/trunk/modules/search/info/
mods/cms/trunk/modules/search/language/
mods/cms/trunk/modules/search/language/en/
mods/cms/trunk/modules/search/template/
mods/cms/trunk/modules/zebra/
mods/cms/trunk/modules/zebra/blocks/
mods/cms/trunk/modules/zebra/info/
mods/cms/trunk/modules/zebra/language/
mods/cms/trunk/modules/zebra/language/en/
mods/cms/trunk/modules/zebra/language/en/email/
mods/cms/trunk/modules/zebra/template/
mods/cms/trunk/modules/zebra/template/images/
mods/cms/trunk/store/
mods/cms/trunk/styles/
mods/cms/trunk/styles/prosilver/
mods/cms/trunk/styles/prosilver/imageset/
mods/cms/trunk/styles/prosilver/imageset/en/
mods/cms/trunk/styles/prosilver/template/
mods/cms/trunk/styles/prosilver/theme/
mods/cms/trunk/styles/prosilver/theme/images/
mods/cms/trunk/styles/subsilver2/
mods/cms/trunk/styles/subsilver2/imageset/
mods/cms/trunk/styles/subsilver2/imageset/en/
mods/cms/trunk/styles/subsilver2/template/
mods/cms/trunk/styles/subsilver2/theme/
mods/cms/trunk/styles/subsilver2/theme/images/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/convertors/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/schemas/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm/images/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm/style/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/cache/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/docs/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/files/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars/gallery/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars/upload/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons/misc/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons/smile/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/ranks/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/smilies/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/upload_icons/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acm/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acp/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acp/info/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/auth/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/captcha/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/db/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/diff/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/mcp/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/mcp/info/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/search/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/ucp/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/ucp/info/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/utf/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/utf/data/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/acp/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/email/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/mods/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/store/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/imageset/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/imageset/en/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/template/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/theme/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/theme/images/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/imageset/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/imageset/en/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/template/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/theme/
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/theme/images/
mods/pms/tags/thevr_0_2CVS/
mods/pms/tags/thevr_0_2CVS/adm/
mods/pms/tags/thevr_0_2CVS/adm/images/
mods/pms/tags/thevr_0_2CVS/adm/style/
mods/pms/tags/thevr_0_2CVS/cache/
mods/pms/tags/thevr_0_2CVS/docs/
mods/pms/tags/thevr_0_2CVS/files/
mods/pms/tags/thevr_0_2CVS/images/
mods/pms/tags/thevr_0_2CVS/images/avatars/
mods/pms/tags/thevr_0_2CVS/images/avatars/gallery/
mods/pms/tags/thevr_0_2CVS/images/avatars/upload/
mods/pms/tags/thevr_0_2CVS/images/icons/
mods/pms/tags/thevr_0_2CVS/images/icons/misc/
mods/pms/tags/thevr_0_2CVS/images/icons/smile/
mods/pms/tags/thevr_0_2CVS/images/ranks/
mods/pms/tags/thevr_0_2CVS/images/smilies/
mods/pms/tags/thevr_0_2CVS/images/upload_icons/
mods/pms/tags/thevr_0_2CVS/includes/
mods/pms/tags/thevr_0_2CVS/includes/acm/
mods/pms/tags/thevr_0_2CVS/includes/acp/
mods/pms/tags/thevr_0_2CVS/includes/acp/info/
mods/pms/tags/thevr_0_2CVS/includes/auth/
mods/pms/tags/thevr_0_2CVS/includes/captcha/
mods/pms/tags/thevr_0_2CVS/includes/db/
mods/pms/tags/thevr_0_2CVS/includes/diff/
mods/pms/tags/thevr_0_2CVS/includes/mcp/
mods/pms/tags/thevr_0_2CVS/includes/mcp/info/
mods/pms/tags/thevr_0_2CVS/includes/search/
mods/pms/tags/thevr_0_2CVS/includes/ucp/
mods/pms/tags/thevr_0_2CVS/includes/ucp/info/
mods/pms/tags/thevr_0_2CVS/includes/utf/
mods/pms/tags/thevr_0_2CVS/includes/utf/data/
mods/pms/tags/thevr_0_2CVS/installold/
mods/pms/tags/thevr_0_2CVS/installold/convertors/
mods/pms/tags/thevr_0_2CVS/installold/schemas/
mods/pms/tags/thevr_0_2CVS/language/
mods/pms/tags/thevr_0_2CVS/language/en/
mods/pms/tags/thevr_0_2CVS/language/en/acp/
mods/pms/tags/thevr_0_2CVS/language/en/email/
mods/pms/tags/thevr_0_2CVS/language/en/mods/
mods/pms/tags/thevr_0_2CVS/store/
mods/pms/tags/thevr_0_2CVS/styles/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/imageset/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/imageset/en/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/template/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/theme/
mods/pms/tags/thevr_0_2CVS/styles/prosilver/theme/images/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/imageset/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/imageset/en/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/template/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/theme/
mods/pms/tags/thevr_0_2CVS/styles/subsilver2/theme/images/
modx/cms/trunk/root/
modx/cms/trunk/root/adm/
modx/cms/trunk/root/adm/style/
modx/cms/trunk/root/includes/
modx/cms/trunk/root/includes/js/
modx/cms/trunk/root/modules/
modx/cms/trunk/root/modules/blocks/
modx/cms/trunk/root/modules/blocks/blocks/
modx/cms/trunk/root/modules/blocks/info/
modx/cms/trunk/root/modules/blocks/language/
modx/cms/trunk/root/modules/blocks/language/en/
modx/cms/trunk/root/modules/blocks/template/
modx/cms/trunk/root/modules/categories/
modx/cms/trunk/root/modules/categories/blocks/
modx/cms/trunk/root/modules/categories/info/
modx/cms/trunk/root/modules/categories/language/
modx/cms/trunk/root/modules/categories/language/en/
modx/cms/trunk/root/modules/categories/template/
modx/cms/trunk/root/modules/comments/
modx/cms/trunk/root/modules/comments/blocks/
modx/cms/trunk/root/modules/comments/info/
modx/cms/trunk/root/modules/comments/language/
modx/cms/trunk/root/modules/comments/language/en/
modx/cms/trunk/root/modules/comments/template/
modx/cms/trunk/root/modules/content/
modx/cms/trunk/root/modules/content/blocks/
modx/cms/trunk/root/modules/content/info/
modx/cms/trunk/root/modules/content/language/
modx/cms/trunk/root/modules/content/language/en/
modx/cms/trunk/root/modules/content/template/
modx/cms/trunk/root/modules/cs/
modx/cms/trunk/root/modules/cs/blocks/
modx/cms/trunk/root/modules/cs/images/
modx/cms/trunk/root/modules/cs/images/bg/
modx/cms/trunk/root/modules/cs/images/colorpicker/
modx/cms/trunk/root/modules/cs/images/hdr/
modx/cms/trunk/root/modules/cs/images/pointers/
modx/cms/trunk/root/modules/cs/images/structure/
modx/cms/trunk/root/modules/cs/images/themes/
modx/cms/trunk/root/modules/cs/info/
modx/cms/trunk/root/modules/cs/js/
modx/cms/trunk/root/modules/cs/language/
modx/cms/trunk/root/modules/cs/language/en/
modx/cms/trunk/root/modules/cs/template/
modx/cms/trunk/root/modules/forums/
modx/cms/trunk/root/modules/forums/blocks/
modx/cms/trunk/root/modules/forums/info/
modx/cms/trunk/root/modules/forums/language/
modx/cms/trunk/root/modules/forums/language/en/
modx/cms/trunk/root/modules/forums/template/
modx/cms/trunk/root/modules/mods/
modx/cms/trunk/root/modules/mods/info/
modx/cms/trunk/root/modules/mods/language/
modx/cms/trunk/root/modules/mods/language/en/
modx/cms/trunk/root/modules/mods/template/
modx/cms/trunk/root/modules/search/
modx/cms/trunk/root/modules/search/blocks/
modx/cms/trunk/root/modules/search/info/
modx/cms/trunk/root/modules/search/language/
modx/cms/trunk/root/modules/search/language/en/
modx/cms/trunk/root/modules/search/template/
modx/cms/trunk/root/modules/zebra/
modx/cms/trunk/root/modules/zebra/blocks/
modx/cms/trunk/root/modules/zebra/info/
modx/cms/trunk/root/modules/zebra/language/
modx/cms/trunk/root/modules/zebra/language/en/
modx/cms/trunk/root/modules/zebra/language/en/email/
modx/cms/trunk/root/modules/zebra/template/
modx/cms/trunk/root/modules/zebra/template/images/
modx/cms/trunk/root/styles/
modx/cms/trunk/root/styles/prosilver/
modx/cms/trunk/root/styles/prosilver/template/
modx/cms/trunk/root/styles/subsilver2/
modx/cms/trunk/root/styles/subsilver2/template/
vendor/phpBB3/tags/phpBB3RC1/
vendor/phpBB3/tags/phpBB3RC1/_install/
vendor/phpBB3/tags/phpBB3RC1/_install/convertors/
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/
vendor/phpBB3/tags/phpBB3RC1/adm/
vendor/phpBB3/tags/phpBB3RC1/adm/images/
vendor/phpBB3/tags/phpBB3RC1/adm/style/
vendor/phpBB3/tags/phpBB3RC1/cache/
vendor/phpBB3/tags/phpBB3RC1/docs/
vendor/phpBB3/tags/phpBB3RC1/files/
vendor/phpBB3/tags/phpBB3RC1/images/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/gallery/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/upload/
vendor/phpBB3/tags/phpBB3RC1/images/icons/
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/
vendor/phpBB3/tags/phpBB3RC1/images/ranks/
vendor/phpBB3/tags/phpBB3RC1/images/smilies/
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/
vendor/phpBB3/tags/phpBB3RC1/includes/
vendor/phpBB3/tags/phpBB3RC1/includes/acm/
vendor/phpBB3/tags/phpBB3RC1/includes/acp/
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/auth/
vendor/phpBB3/tags/phpBB3RC1/includes/captcha/
vendor/phpBB3/tags/phpBB3RC1/includes/db/
vendor/phpBB3/tags/phpBB3RC1/includes/diff/
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/search/
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/utf/
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/
vendor/phpBB3/tags/phpBB3RC1/language/
vendor/phpBB3/tags/phpBB3RC1/language/en/
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/
vendor/phpBB3/tags/phpBB3RC1/language/en/email/
vendor/phpBB3/tags/phpBB3RC1/language/en/mods/
vendor/phpBB3/tags/phpBB3RC1/store/
vendor/phpBB3/tags/phpBB3RC1/styles/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/theme/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/theme/images/
Property changes on:
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/_install
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/_install/convertors
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/_install/data
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/_install/schemas
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/adm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/adm/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/adm/style
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/cache
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/docs
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/files
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/avatars
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/avatars/gallery
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/avatars/upload
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/icons/misc
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/icons/smile
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/ranks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/smilies
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/images/upload_icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/acm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/acp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/auth
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/captcha
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/db
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/diff
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/js
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/mcp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/mcp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/search
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/ucp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/ucp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/utf
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/includes/utf/data
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/language/en/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/language/en/email
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/language/en/mods
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/blocks/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/categories/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/comments/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/content/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/bg
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/colorpicker
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/hdr
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/pointers
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/structure
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/images/themes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/js
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/cs/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/forums/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/mods
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/mods/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/mods/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/mods/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/mods/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/search/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/language/en/email
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/modules/zebra/template/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/store
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/prosilver/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/cms/trunk/styles/subsilver2/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/convertors
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/schemas
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/adm/style
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/cache
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/docs
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/files
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars/gallery
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/avatars/upload
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons/misc
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/icons/smile
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/ranks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/smilies
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/images/upload_icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/acp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/auth
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/captcha
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/db
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/diff
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/mcp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/mcp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/search
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/ucp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/ucp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/utf
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/includes/utf/data
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/email
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/language/en/mods
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/store
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/prosilver/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/styles/subsilver2/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/adm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/adm/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/adm/style
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/cache
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/docs
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/files
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/avatars
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/avatars/gallery
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/avatars/upload
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/icons/misc
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/icons/smile
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/ranks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/smilies
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/images/upload_icons
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/acm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/acp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/auth
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/captcha
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/db
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/diff
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/mcp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/mcp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/search
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/ucp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/ucp/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/utf
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/includes/utf/data
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/installold
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/installold/convertors
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/installold/schemas
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/language/en/acp
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/language/en/email
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/language/en/mods
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/store
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/prosilver/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2/imageset
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2/imageset/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2/theme
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: mods/pms/tags/thevr_0_2CVS/styles/subsilver2/theme/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/adm
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/adm/style
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/includes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/includes/js
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/blocks/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/categories/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/comments/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content/language/en
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/content/template
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/blocks
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/bg
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/colorpicker
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/hdr
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/pointers
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/structure
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/images/themes
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/info
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/js
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/language
___________________________________________________________________
Name: tsvn:logminsize
+ 1
Property changes on: modx/cms/trunk/root/modules/cs/language/en
______________________...
[truncated message content] |
|
From: <Yau...@us...> - 2007-09-02 03:19:14
|
Revision: 40
http://thevr.svn.sourceforge.net/thevr/?rev=40&view=rev
Author: Yautja_cetanu
Date: 2007-09-01 20:19:17 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Removed temporary code related to thevr in common.php and added a comment for temporary code in function_admin.php
Modified Paths:
--------------
mods/pms/trunk/common.php
mods/pms/trunk/includes/functions_admin.php
Modified: mods/pms/trunk/common.php
===================================================================
--- mods/pms/trunk/common.php 2007-09-02 03:04:03 UTC (rev 39)
+++ mods/pms/trunk/common.php 2007-09-02 03:19:17 UTC (rev 40)
@@ -263,19 +263,4 @@
}
/***** END *****/
-/* Temporary addition until cookies are sorted:
- if (strpos($domain, 'thevr.co.uk') == false AND $domain != 'thevr.co.uk')
- {
- $sql = 'SELECT su.domain
- FROM ' . SITE_URL_TABLE . " AS su
- WHERE su.site_id = '" . $config['site_id'] . "'
- AND su.domain LIKE '%thevr.co.uk'
- LIMIT 1";
- $result = $db->sql_query($sql);
- $row = $db->sql_fetchrow($result);
-
- header('Location: http://' . $row['domain'] . $_SERVER['REQUEST_URI']);
- }
-*/
-
?>
\ No newline at end of file
Modified: mods/pms/trunk/includes/functions_admin.php
===================================================================
--- mods/pms/trunk/includes/functions_admin.php 2007-09-02 03:04:03 UTC (rev 39)
+++ mods/pms/trunk/includes/functions_admin.php 2007-09-02 03:19:17 UTC (rev 40)
@@ -112,7 +112,7 @@
$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
FROM ' . FORUMS_TABLE . '
ORDER BY left_id ASC';
- $result = $db->sql_query($sql, 0);
+ $result = $db->sql_query($sql, 0); //THEVR Temporary fix for parent bug before next version
$right = 0;
$padding_store = array('0' => '');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-09-02 03:04:02
|
Revision: 39
http://thevr.svn.sourceforge.net/thevr/?rev=39&view=rev
Author: Yautja_cetanu
Date: 2007-09-01 20:04:03 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Added changed to the modx file found between /pms/trunk r21:32 (root files not sorted)
Modified Paths:
--------------
modx/pms/trunk/TheVR_0.1.1c.xml
Modified: modx/pms/trunk/TheVR_0.1.1c.xml
===================================================================
--- modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-02 03:00:01 UTC (rev 38)
+++ modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-02 03:04:03 UTC (rev 39)
@@ -109,7 +109,8 @@
<file from="/root/includes/acp/info/acp_siteconfig.php" to="includes/acp/info/acp_siteconfig.php" />
<file from="/root/language/en/acp/sites.php" to="language/en/acp/sites.php" />
<file from="/root/language/en/acp/siteconfig.php" to="language/en/acp/siteconfig.php" />
- <file from="/root/language/en/mods/permissions_sites.php" to="language/en/mods/permissions_sites.php"/>
+ <file from="/root/language/en/mods/permissions_sites.php" to="language/en/mods/permissions_sites.php" />
+ <file from="/root/thevr_pms_install.php" to="thevr_pms_install.php" />
</copy>
<open src="/common.php">
<edit>
@@ -123,7 +124,7 @@
<action type="after-add">
/***** START
-ADDED by andrewbelcher for thevr.co.uk
+ADDED for thevr.co.uk
This processes the URL so the correct site settings can be used.
*****/
@@ -137,14 +138,14 @@
<![CDATA[while ($i <= $bits)]]>
{
$domains[$i] = $domain_bits[$bits - $i] . '.' . $domains[$i - 1];
-
+
$i++;
}
$sql = 'SELECT s.*, su.domain
FROM ' . SITES_TABLE . ' s INNER JOIN ' . SITE_URL_TABLE . ' su ON s.site_id = su.site_id
WHERE su.domain IN ';
-
+$notfirst = false;
foreach ($domains AS $key => $value)
{
$sql .= ($notfirst == false) ? '(': ', ';
@@ -176,7 +177,7 @@
'site_domain' => $domain,
'site_file' => $filename,
'site_vars' => $vars)
-
+
);
}
//Fetch site specific config data:
@@ -192,22 +193,7 @@
{
define('MOBILE_VERSION', true);
}
-/***** END *****/
-
-// Temporary addition until cookies are sorted:
- if (strpos($domain, 'thevr.co.uk') == false AND $domain != 'thevr.co.uk')
- {
- $sql = 'SELECT su.domain
- FROM ' . SITE_URL_TABLE . " AS su
- WHERE su.site_id = '" . $config['site_id'] . "'
- AND su.domain LIKE '%thevr.co.uk'
- LIMIT 1";
- $result = $db->sql_query($sql);
- $row = $db->sql_fetchrow($result);
-
- header('Location: http://' . $row['domain'] . $_SERVER['REQUEST_URI']);
- }
- </action>
+/***** END *****/</action>
</edit>
</open>
<open src="/adm/style/acp_forums.html">
@@ -334,5 +320,11 @@
'SITE_GLOBAL' => 'Global Forum',</action>
</edit>
</open>
+ <open src="/includes/functions_admin.php">
+ <edit>
+ <find><![CDATA[ $result = $db->sql_query($sql, 600);]]></find>
+ <action type="replace-with"><![CDATA[ $result = $db->sql_query($sql, 0); //Temporary fix for parent buy before next version]]></action>
+ </edit>
+ </open>
</action-group>
</mod>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <and...@us...> - 2007-09-02 02:59:59
|
Revision: 38
http://thevr.svn.sourceforge.net/thevr/?rev=38&view=rev
Author: andrewbelcher
Date: 2007-09-01 20:00:01 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Added to the version history, added the install file information and removed the SQL.
Modified Paths:
--------------
modx/pms/trunk/TheVR_0.1.1c.xml
Modified: modx/pms/trunk/TheVR_0.1.1c.xml
===================================================================
--- modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-02 01:09:34 UTC (rev 37)
+++ modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-02 03:00:01 UTC (rev 38)
@@ -67,6 +67,7 @@
<change>Fixed bugs</change>
<change>Some site settings (such as site description/tiele) are now site specific</change>
<change>Made sure modx file works</change>
+ <change>Now included is an install file to do the database and initial setup</change>
</changelog>
</entry>
<entry>
@@ -95,6 +96,7 @@
</changelog>
</entry>
</history>
+ <installation>Run the database installation file, <em>thevr_pms_install.php</em>, <b>before</b> making the following changes to the code.</installation>
</header>
<action-group>
<copy>
@@ -109,43 +111,6 @@
<file from="/root/language/en/acp/siteconfig.php" to="language/en/acp/siteconfig.php" />
<file from="/root/language/en/mods/permissions_sites.php" to="language/en/mods/permissions_sites.php"/>
</copy>
- <sql dbms="mysqli"><![CDATA[
-CREATE TABLE `phpbb3_site_config` (
-`config_name` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
-`config_value` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
-`is_dynamic` tinyint(1) NOT NULL,
-`site_id` mediumint(4) NOT NULL,
-`overide` tinyint(1) NOT NULL
-)
-
-
-CREATE TABLE `phpbb3_site_urls` (
-`id` mediumint(8) NOT NULL auto_increment,
-`site_id` mediumint(4) NOT NULL,
-`domain` varchar(255) character set utf8 collate utf8_bin NOT NULL,
-PRIMARY KEY (`id`)
-)
-
-
-CREATE TABLE `phpbb3_sites` (
-`site_id` mediumint(4) NOT NULL auto_increment,
-`name` varchar(255) character set utf8 collate utf8_bin NOT NULL,
-`description` varchar(255) character set utf8 collate utf8_bin NOT NULL,
-`group_id` mediumint(8) NOT NULL default '1',
-`home` varchar(255) character set utf8 collate utf8_bin NOT NULL default 'index.php',
-`default_style` tinyint(4) NOT NULL default '1',
-PRIMARY KEY (`site_id`)
-)
-
-INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_a', '1', '0', '0' );
-INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_e', '1', '0', '0' );
-INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_d', '1', '0', '0' );
-INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_ug', '1', '0', '0' );
-INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_f', '1', '0', '0' );
-
-ALTER TABLE `phpbb_forums` ADD `site_id` MEDIUMINT( 4 ) NOT NULL DEFAULT '0';
-]]>
- </sql>
<open src="/common.php">
<edit>
<find>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-09-02 01:09:32
|
Revision: 37
http://thevr.svn.sourceforge.net/thevr/?rev=37&view=rev
Author: Yautja_cetanu
Date: 2007-09-01 18:09:34 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Initial Upload of modx files alongside initial upload of CMS at revision 33
Revision Links:
--------------
http://thevr.svn.sourceforge.net/thevr/?rev=33&view=rev
Added Paths:
-----------
modx/cms/trunk/install.xml
modx/cms/trunk/modx.prosilver.en.xsl
modx/cms/trunk/root/
modx/cms/trunk/root/adm/
modx/cms/trunk/root/adm/style/
modx/cms/trunk/root/adm/style/acp_mods.html
modx/cms/trunk/root/adm/style/mod_admin.html
modx/cms/trunk/root/cms_install.php
modx/cms/trunk/root/includes/
modx/cms/trunk/root/includes/js/
modx/cms/trunk/root/includes/js/accordion.js
modx/cms/trunk/root/includes/js/animateClass.js
modx/cms/trunk/root/includes/js/animateStyle.js
modx/cms/trunk/root/includes/js/carousel.js
modx/cms/trunk/root/includes/js/easing.js
modx/cms/trunk/root/includes/js/fisheye.js
modx/cms/trunk/root/includes/js/iautocompleter.js
modx/cms/trunk/root/includes/js/iautoscroller.js
modx/cms/trunk/root/includes/js/idrag.js
modx/cms/trunk/root/includes/js/idrop.js
modx/cms/trunk/root/includes/js/iexpander.js
modx/cms/trunk/root/includes/js/ifx.js
modx/cms/trunk/root/includes/js/ifxblind.js
modx/cms/trunk/root/includes/js/ifxbounce.js
modx/cms/trunk/root/includes/js/ifxdrop.js
modx/cms/trunk/root/includes/js/ifxfold.js
modx/cms/trunk/root/includes/js/ifxhighlight.js
modx/cms/trunk/root/includes/js/ifxopenclose.js
modx/cms/trunk/root/includes/js/ifxpulsate.js
modx/cms/trunk/root/includes/js/ifxscale.js
modx/cms/trunk/root/includes/js/ifxscrollto.js
modx/cms/trunk/root/includes/js/ifxshake.js
modx/cms/trunk/root/includes/js/ifxslide.js
modx/cms/trunk/root/includes/js/ifxtransfer.js
modx/cms/trunk/root/includes/js/imagebox.js
modx/cms/trunk/root/includes/js/interface.js
modx/cms/trunk/root/includes/js/iresizable.js
modx/cms/trunk/root/includes/js/iselect.js
modx/cms/trunk/root/includes/js/islider.js
modx/cms/trunk/root/includes/js/islideshow.js
modx/cms/trunk/root/includes/js/isortables.js
modx/cms/trunk/root/includes/js/itooltip.js
modx/cms/trunk/root/includes/js/ittabs.js
modx/cms/trunk/root/includes/js/iutil.js
modx/cms/trunk/root/includes/js/jquery.js
modx/cms/trunk/root/modules/
modx/cms/trunk/root/modules/blocks/
modx/cms/trunk/root/modules/blocks/acp_blocks.php
modx/cms/trunk/root/modules/blocks/blocks/
modx/cms/trunk/root/modules/blocks/blocks/cms_birthday.php
modx/cms/trunk/root/modules/blocks/blocks/cms_calendar.php
modx/cms/trunk/root/modules/blocks/blocks/cms_last_bots.php
modx/cms/trunk/root/modules/blocks/blocks/cms_login.php
modx/cms/trunk/root/modules/blocks/blocks/cms_recent_members.php
modx/cms/trunk/root/modules/blocks/blocks/cms_stats.php
modx/cms/trunk/root/modules/blocks/blocks/cms_user_menu.php
modx/cms/trunk/root/modules/blocks/blocks/cms_whois.php
modx/cms/trunk/root/modules/blocks/constants.php
modx/cms/trunk/root/modules/blocks/functions_blocks.php
modx/cms/trunk/root/modules/blocks/info/
modx/cms/trunk/root/modules/blocks/info/acp_blocks.php
modx/cms/trunk/root/modules/blocks/info/blocks_info.php
modx/cms/trunk/root/modules/blocks/language/
modx/cms/trunk/root/modules/blocks/language/en/
modx/cms/trunk/root/modules/blocks/language/en/admin.php
modx/cms/trunk/root/modules/blocks/language/en/common.php
modx/cms/trunk/root/modules/blocks/template/
modx/cms/trunk/root/modules/blocks/template/acp_blocks.html
modx/cms/trunk/root/modules/blocks/template/block_config.html
modx/cms/trunk/root/modules/blocks/template/block_last_bots.html
modx/cms/trunk/root/modules/blocks/template/block_login.html
modx/cms/trunk/root/modules/blocks/template/block_recent_members.html
modx/cms/trunk/root/modules/blocks/template/block_user_menu.html
modx/cms/trunk/root/modules/blocks/template/block_whois.html
modx/cms/trunk/root/modules/categories/
modx/cms/trunk/root/modules/categories/acp_categories.php
modx/cms/trunk/root/modules/categories/blocks/
modx/cms/trunk/root/modules/categories/blocks/categories.php
modx/cms/trunk/root/modules/categories/constants.php
modx/cms/trunk/root/modules/categories/functions_categories.php
modx/cms/trunk/root/modules/categories/info/
modx/cms/trunk/root/modules/categories/info/acp_categories.php
modx/cms/trunk/root/modules/categories/info/categories_info.php
modx/cms/trunk/root/modules/categories/language/
modx/cms/trunk/root/modules/categories/language/en/
modx/cms/trunk/root/modules/categories/language/en/common.php
modx/cms/trunk/root/modules/categories/template/
modx/cms/trunk/root/modules/categories/template/acp_categories.html
modx/cms/trunk/root/modules/comments/
modx/cms/trunk/root/modules/comments/acp_comments.php
modx/cms/trunk/root/modules/comments/blocks/
modx/cms/trunk/root/modules/comments/blocks/WS_FTP.LOG
modx/cms/trunk/root/modules/comments/blocks/menu.php
modx/cms/trunk/root/modules/comments/constants.php
modx/cms/trunk/root/modules/comments/functions_comments.php
modx/cms/trunk/root/modules/comments/info/
modx/cms/trunk/root/modules/comments/info/acp_comments.php
modx/cms/trunk/root/modules/comments/info/comments_info.php
modx/cms/trunk/root/modules/comments/language/
modx/cms/trunk/root/modules/comments/language/en/
modx/cms/trunk/root/modules/comments/language/en/common.php
modx/cms/trunk/root/modules/comments/language/en/permissions_comments.php
modx/cms/trunk/root/modules/comments/template/
modx/cms/trunk/root/modules/comments/template/acp_comments.html
modx/cms/trunk/root/modules/comments/template/comment_posting.html
modx/cms/trunk/root/modules/comments/template/comments.html
modx/cms/trunk/root/modules/content/
modx/cms/trunk/root/modules/content/acp_content.php
modx/cms/trunk/root/modules/content/blocks/
modx/cms/trunk/root/modules/content/cms_content.php
modx/cms/trunk/root/modules/content/constants.php
modx/cms/trunk/root/modules/content/functions_content.php
modx/cms/trunk/root/modules/content/functions_properties.php
modx/cms/trunk/root/modules/content/info/
modx/cms/trunk/root/modules/content/info/acp_content.php
modx/cms/trunk/root/modules/content/info/cms_content.php
modx/cms/trunk/root/modules/content/info/content_info.php
modx/cms/trunk/root/modules/content/info/mcp_content.php
modx/cms/trunk/root/modules/content/info/ucp_content.php
modx/cms/trunk/root/modules/content/language/
modx/cms/trunk/root/modules/content/language/en/
modx/cms/trunk/root/modules/content/language/en/common.php
modx/cms/trunk/root/modules/content/language/en/content.php
modx/cms/trunk/root/modules/content/mcp_content.php
modx/cms/trunk/root/modules/content/template/
modx/cms/trunk/root/modules/content/template/acp_content.html
modx/cms/trunk/root/modules/content/template/author_info.html
modx/cms/trunk/root/modules/content/template/cms_content.html
modx/cms/trunk/root/modules/content/template/content_fields.html
modx/cms/trunk/root/modules/content/template/ucp_content.html
modx/cms/trunk/root/modules/content/ucp_content.php
modx/cms/trunk/root/modules/cs/
modx/cms/trunk/root/modules/cs/acp_cs.php
modx/cms/trunk/root/modules/cs/blocks/
modx/cms/trunk/root/modules/cs/blocks/grp_static_block.php
modx/cms/trunk/root/modules/cs/blocks/pro_static_block.php
modx/cms/trunk/root/modules/cs/constants.php
modx/cms/trunk/root/modules/cs/custom_style.php
modx/cms/trunk/root/modules/cs/custom_style_config.php
modx/cms/trunk/root/modules/cs/custom_style_grids.php
modx/cms/trunk/root/modules/cs/functions_blocks_admin.php
modx/cms/trunk/root/modules/cs/functions_style_generator.php
modx/cms/trunk/root/modules/cs/gcp_cs.php
modx/cms/trunk/root/modules/cs/images/
modx/cms/trunk/root/modules/cs/images/bg/
modx/cms/trunk/root/modules/cs/images/bg/50percent.png
modx/cms/trunk/root/modules/cs/images/bg/bg1.jpg
modx/cms/trunk/root/modules/cs/images/bg/cellpic1.gif
modx/cms/trunk/root/modules/cs/images/bg/cellpic12.gif
modx/cms/trunk/root/modules/cs/images/bg/cellpic3.gif
modx/cms/trunk/root/modules/cs/images/bg/d.jpg
modx/cms/trunk/root/modules/cs/images/bg/h.jpg
modx/cms/trunk/root/modules/cs/images/bg/menu1.gif
modx/cms/trunk/root/modules/cs/images/bg/raindro2.gif
modx/cms/trunk/root/modules/cs/images/bg/sidebar-h3.gif
modx/cms/trunk/root/modules/cs/images/bg/wdbk001.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk002.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk003.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk004.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk005.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk006.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk009.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk010.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk011.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk014.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk023.jpg
modx/cms/trunk/root/modules/cs/images/bg/wdbk026.jpg
modx/cms/trunk/root/modules/cs/images/colorpicker/
modx/cms/trunk/root/modules/cs/images/colorpicker/blank.gif
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_arrows.gif
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_color_slider.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_cur_color_background.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_horizontal_picker.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_lg_background.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_lg_overlay.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_mini_icon.png
modx/cms/trunk/root/modules/cs/images/colorpicker/cp_web_safe.gif
modx/cms/trunk/root/modules/cs/images/hdr/
modx/cms/trunk/root/modules/cs/images/marker.png
modx/cms/trunk/root/modules/cs/images/mask.png
modx/cms/trunk/root/modules/cs/images/pointers/
modx/cms/trunk/root/modules/cs/images/pointers/cursor-crosshair.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-e-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-hand.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-help.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-move.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-n-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-ne-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-nw-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-s-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-se-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-sw-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-text.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-w-resize.gif
modx/cms/trunk/root/modules/cs/images/pointers/cursor-wait.gif
modx/cms/trunk/root/modules/cs/images/structure/
modx/cms/trunk/root/modules/cs/images/themes/
modx/cms/trunk/root/modules/cs/images/wheel.png
modx/cms/trunk/root/modules/cs/info/
modx/cms/trunk/root/modules/cs/info/acp_cs.php
modx/cms/trunk/root/modules/cs/info/cs_info.php
modx/cms/trunk/root/modules/cs/info/gcp_cs.php
modx/cms/trunk/root/modules/cs/info/pro_cs.php
modx/cms/trunk/root/modules/cs/info/ucp_cs.php
modx/cms/trunk/root/modules/cs/js/
modx/cms/trunk/root/modules/cs/js/farbtastic.js
modx/cms/trunk/root/modules/cs/js/stylegenerator.js
modx/cms/trunk/root/modules/cs/language/
modx/cms/trunk/root/modules/cs/language/en/
modx/cms/trunk/root/modules/cs/language/en/common.php
modx/cms/trunk/root/modules/cs/language/en/style_generator.php
modx/cms/trunk/root/modules/cs/pro_cs.php
modx/cms/trunk/root/modules/cs/template/
modx/cms/trunk/root/modules/cs/template/acp_cs.html
modx/cms/trunk/root/modules/cs/template/blank.html
modx/cms/trunk/root/modules/cs/template/cs.css
modx/cms/trunk/root/modules/cs/template/cs_css.html
modx/cms/trunk/root/modules/cs/template/cs_generator.html
modx/cms/trunk/root/modules/cs/template/cs_setup.html
modx/cms/trunk/root/modules/cs/template/custom_style_view.html
modx/cms/trunk/root/modules/cs/template/farbtastic.css
modx/cms/trunk/root/modules/cs/template/stylegenerator.css
modx/cms/trunk/root/modules/cs/ucp_cs.php
modx/cms/trunk/root/modules/forums/
modx/cms/trunk/root/modules/forums/blocks/
modx/cms/trunk/root/modules/forums/blocks/cms_polls.php
modx/cms/trunk/root/modules/forums/blocks/cms_recent_topics.php
modx/cms/trunk/root/modules/forums/blocks/grp_recent_topics.php
modx/cms/trunk/root/modules/forums/cms_forums.php
modx/cms/trunk/root/modules/forums/cms_search.php
modx/cms/trunk/root/modules/forums/functions_display.php
modx/cms/trunk/root/modules/forums/functions_posting.php
modx/cms/trunk/root/modules/forums/grp_forums.php
modx/cms/trunk/root/modules/forums/info/
modx/cms/trunk/root/modules/forums/info/cms_forums.php
modx/cms/trunk/root/modules/forums/info/cms_search.php
modx/cms/trunk/root/modules/forums/info/forums_info.php
modx/cms/trunk/root/modules/forums/info/grp_forums.php
modx/cms/trunk/root/modules/forums/language/
modx/cms/trunk/root/modules/forums/language/en/
modx/cms/trunk/root/modules/forums/language/en/admin.php
modx/cms/trunk/root/modules/forums/language/en/common.php
modx/cms/trunk/root/modules/forums/posting.php
modx/cms/trunk/root/modules/forums/template/
modx/cms/trunk/root/modules/forums/template/blank.html
modx/cms/trunk/root/modules/forums/template/block_polls.html
modx/cms/trunk/root/modules/forums/template/block_recent_topics.html
modx/cms/trunk/root/modules/forums/template/block_wordgraph.html
modx/cms/trunk/root/modules/forums/viewforum.php
modx/cms/trunk/root/modules/forums/viewtopic.php
modx/cms/trunk/root/modules/mods/
modx/cms/trunk/root/modules/mods/acp_mods.php
modx/cms/trunk/root/modules/mods/functions_mods.php
modx/cms/trunk/root/modules/mods/functions_permissions.php
modx/cms/trunk/root/modules/mods/info/
modx/cms/trunk/root/modules/mods/info/acp_mods.php
modx/cms/trunk/root/modules/mods/info/mods_info.php
modx/cms/trunk/root/modules/mods/language/
modx/cms/trunk/root/modules/mods/language/en/
modx/cms/trunk/root/modules/mods/language/en/common.php
modx/cms/trunk/root/modules/mods/language/en/mods.php
modx/cms/trunk/root/modules/mods/template/
modx/cms/trunk/root/modules/mods/template/acp_mods.html
modx/cms/trunk/root/modules/search/
modx/cms/trunk/root/modules/search/Copy of cms_search.php
modx/cms/trunk/root/modules/search/blocks/
modx/cms/trunk/root/modules/search/blocks/cms_wordgraph.php
modx/cms/trunk/root/modules/search/cms_search.php
modx/cms/trunk/root/modules/search/info/
modx/cms/trunk/root/modules/search/info/cms_search.php
modx/cms/trunk/root/modules/search/info/search_info.php
modx/cms/trunk/root/modules/search/language/
modx/cms/trunk/root/modules/search/language/en/
modx/cms/trunk/root/modules/search/language/en/admin.php
modx/cms/trunk/root/modules/search/language/en/common.php
modx/cms/trunk/root/modules/search/template/
modx/cms/trunk/root/modules/search/template/block_wordgraph.html
modx/cms/trunk/root/modules/zebra/
modx/cms/trunk/root/modules/zebra/blocks/
modx/cms/trunk/root/modules/zebra/blocks/pro_friends.php
modx/cms/trunk/root/modules/zebra/constants.php
modx/cms/trunk/root/modules/zebra/functions_zebra.php
modx/cms/trunk/root/modules/zebra/info/
modx/cms/trunk/root/modules/zebra/info/pro_zebra.php
modx/cms/trunk/root/modules/zebra/info/ucp_zebra.php
modx/cms/trunk/root/modules/zebra/info/zebra_info.php
modx/cms/trunk/root/modules/zebra/language/
modx/cms/trunk/root/modules/zebra/language/en/
modx/cms/trunk/root/modules/zebra/language/en/common.php
modx/cms/trunk/root/modules/zebra/language/en/email/
modx/cms/trunk/root/modules/zebra/language/en/email/WS_FTP.LOG
modx/cms/trunk/root/modules/zebra/language/en/email/user_invite.txt
modx/cms/trunk/root/modules/zebra/pro_zebra.php
modx/cms/trunk/root/modules/zebra/template/
modx/cms/trunk/root/modules/zebra/template/balloons.css
modx/cms/trunk/root/modules/zebra/template/images/
modx/cms/trunk/root/modules/zebra/template/images/bubble.gif
modx/cms/trunk/root/modules/zebra/template/images/bubble_filler.gif
modx/cms/trunk/root/modules/zebra/template/pro_zebra.html
modx/cms/trunk/root/modules/zebra/template/ucp_zebra.html
modx/cms/trunk/root/modules/zebra/ucp_zebra.php
modx/cms/trunk/root/styles/
modx/cms/trunk/root/styles/prosilver/
modx/cms/trunk/root/styles/prosilver/template/
modx/cms/trunk/root/styles/prosilver/template/cs_css.html
modx/cms/trunk/root/styles/prosilver/template/cs_generator.html
modx/cms/trunk/root/styles/prosilver/template/custom_style_view.html
modx/cms/trunk/root/styles/prosilver/template/layout.html
modx/cms/trunk/root/styles/prosilver/template/ucp_blank.html
modx/cms/trunk/root/styles/subsilver2/
modx/cms/trunk/root/styles/subsilver2/template/
modx/cms/trunk/root/styles/subsilver2/template/cs_css.html
modx/cms/trunk/root/styles/subsilver2/template/cs_generator.html
modx/cms/trunk/root/styles/subsilver2/template/custom_style_view.html
modx/cms/trunk/root/styles/subsilver2/template/layout.html
modx/cms/trunk/root/styles/subsilver2/template/ucp_blank.html
Added: modx/cms/trunk/install.xml
===================================================================
--- modx/cms/trunk/install.xml (rev 0)
+++ modx/cms/trunk/install.xml 2007-09-02 01:09:34 UTC (rev 37)
@@ -0,0 +1,734 @@
+<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
+<?xml-stylesheet type="text/xsl" href="modx.prosilver.en.xsl"?>
+<!--For security purposes, please check: http://www.phpbb.com/mods/ for the latest version of this MOD. Although MODs are checked before being allowed in the MODs Database there is no guarantee that there are no security problems within the MOD. No support will be given for MODs not found within the MODs Database which can be found at http://www.phpbb.com/mods/-->
+<mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.0.xsd">
+ <header>
+ <license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license>
+
+ <title lang="en">Hello World</title>
+ <title lang="nl">Hallo Werld</title>
+
+ <description lang="en">Quick Start Tutorial sample</description>
+
+ <description lang="nl">Snel start tutorial voorbeeld</description>
+
+ <author-notes lang="en">This is a tutorial, do not install this MOD</author-notes>
+ <author-notes lang="nl">Dit is een tutorial, installeer deze mod niet</author-notes>
+
+ <author-group>
+ <author>
+ <realname>David Smith</realname>
+ <username>smithy_dll</username>
+
+ <email>smi...@ph...</email>
+ <homepage>http://www.phpbb.com/mods/modx/</homepage>
+ </author>
+ <author>
+ <realname>Eric Faerber</realname>
+ <username>wGEric</username>
+ </author>
+
+ </author-group>
+
+ <mod-version>
+ <major>1</major>
+ <minor>0</minor>
+ <revision>0</revision>
+ <release>b</release>
+ </mod-version>
+
+
+ <installation>
+ <level>easy</level>
+ <time>0</time>
+ <target-version>
+ <target-primary>2.0</target-primary>
+ <target-major allow="exact">2</target-major>
+ <target-minor allow="exact">0</target-minor>
+
+ </target-version>
+ </installation>
+
+ <history>
+ <entry>
+ <date>2006-03-19</date>
+ <rev-version>
+ <major>1</major>
+ <minor>0</minor>
+
+ <revision>0</revision>
+ <release>a</release>
+ </rev-version>
+ <changelog lang="en">
+ <change>Completed MODX Quick Start Tutorial</change>
+ </changelog>
+ <changelog lang="nl">
+
+ <change>MODX snel start tutorial afgemaakt</change>
+ </changelog>
+ </entry>
+ <entry>
+ <date>2007-04-25</date>
+ <rev-version>
+ <major>1</major>
+
+ <minor>0</minor>
+ <revision>0</revision>
+ <release>b</release>
+ </rev-version>
+ <changelog lang="en">
+ <change>Updated MODX XSLT to prosilver</change>
+ <change>Updated MODX Quick Start Tutorial to include dutch example</change>
+
+ </changelog>
+ <changelog lang="nl">
+ <change>MODX XSLT geupdated naar prosilver</change>
+ <change>MODX snel start tutorial aangepast om Nederlands voorbeeld in te voegen</change>
+ </changelog>
+ </entry>
+ </history>
+ </header>
+
+
+ <action-group>
+
+ <copy>
+ <file from="root/cms_install.php" to="cms_install.php" />
+ <file from="root/includes/functions_permissions.php" to="includes/functions_permissions.php" />
+ <file from="root/includes/acp/acp_mods.php" to="includes/acp/acp_mods.php" />
+ <file from="root/includes/acp/info/acp_mods.php" to="includes/acp/info/acp_mods.php" />
+ <file from="root/language/en/acp_mods.php" to="language/en/acp_mods.php" />
+ <file from="root/styles/subsilver2/template/acp_mods.html" to="styles/subsilver2/template/acp_mods.html" />
+ <file from="root/styles/prosilver/template/acp_mods.html" to="styles/prosilver/template/acp_mods.html" />
+ </copy>
+
+ <open src="common.php">
+ <edit>
+ <find>$config = $cache->obtain_config();</find>
+ <action type="after-add">
+$mtemplate = new template();
+$cms_modules = array();
+if($config['cms_enabled'])
+{
+ require($phpbb_root_path . 'modules/mods/functions_mods.' . $phpEx);
+
+ $cms_modules = get_installed_modules();
+}</action>
+ </edit>
+ </open>
+ <open src="faq.php">
+ <edit>
+ <find>$mode = request_var('mode', '');</find>
+ <action type="after-add"><![CDATA[
+if($config['cms_enabled'])
+{
+ $mod_lang = array();
+ foreach($cms_modules as $i => $dir)
+ {
+ $module_lang = $phpbb_root_path . 'modules/' . $dir . '/language/' . $config['default_lang'] . '/help_' . $dir . ".$phpEx";
+ if(file_exists($module_lang))
+ {
+ $mod_lang[$dir] = $dir . '_help';
+ }
+ }
+
+ $user->add_mod_lang($mod_lang);
+
+ if(in_array($mode, $cms_modules))
+ {
+ $l_title = $user->lang[strtoupper($mod_list[$mode])];
+ $user->add_mod_lang(array($mode, 'help_' . $mode));
+ }
+ else
+ {
+ // Load the appropriate faq file
+ switch ($mode)
+ {
+ case 'bbcode':
+ $l_title = $user->lang['BBCODE_GUIDE'];
+ $user->add_lang('bbcode', false, true);
+ break;
+
+ default:
+ $mode = 'faq';
+ $l_title = $user->lang['FAQ_EXPLAIN'];
+ $user->add_lang('faq', false, true);
+ break;
+ }
+ }
+
+ // generate faq menu
+ $modes_ary['FAQ_EXPLAIN'] = 'faq';
+ $modes_ary['BBCODE_GUIDE'] = 'bbcode';
+
+ $modes_ary = array_merge($modes_ary, array_change_key_case($mod_lang, CASE_UPPER));
+ foreach($modes_ary as $lang => $val)
+ {
+ $template->assign_block_vars('faqrow', array(
+ 'S_CURRENT' => ($val == $mode) ? true : false,
+ 'L_TITLE' => $user->lang[$lang],
+ 'U_TITLE' => append_sid("{$phpbb_root_path}faq.$phpEx", 'mode=' . $val),
+ ));
+ }
+}
+else
+{
+]]></action>
+ <find>
+// Pull the array data from the lang pack</find>
+ <action type="before-add">}</action>
+ </edit>
+ </open>
+ <open src="index.php">
+ <edit>
+ <find>$user->setup('viewforum');</find>
+ <action type="before-add">
+if($config['cms_enabled'])
+{
+ include($phpbb_root_path . 'includes/functions_module.' . $phpEx);
+ include($phpbb_root_path . 'modules/blocks/functions_blocks.' . $phpEx);
+
+ // Basic parameter data
+ $id = request_var('i', '');
+ $mode = request_var('mode', '');
+
+ $user->setup('common');
+
+ $blocks = new blocks();
+ $module = new p_master();
+
+ // Instantiate module system and generate list of available modules
+ $module->list_modules('cms');
+
+ // Select the active module
+ $module->set_active($id, $mode);
+
+ // Assign data to the template engine for the list of modules
+ $module->assign_tpl_vars(append_sid("{$phpbb_root_path}index.$phpEx"));
+
+ // Set custom template path
+ $tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
+ $mtemplate->set_custom_template($tpl_path, $module->p_dir);
+
+ // generate nav
+ init_cms_nav();
+
+ $template->assign_vars(array('S_CMS_ENABLED' => true));
+
+ // Load and execute the relevant module
+ $module->load_active();
+
+ page_header($module->get_page_title());
+
+ // get active blocks
+ $blocks->display($module->p_id, $module->p_mode);
+
+ $template->assign_vars(array('L_INDEX' => $user->lang['HOME']));
+
+ $template->set_filenames(array(
+ 'body' => 'layout.html')
+ );
+}
+else
+{
+
+</action>
+ <find>page_footer();</find>
+ <action type="before-add">}
+
+</action>
+ </edit>
+ </open>
+ <open src="mcp.php">
+ <edit>
+ <find>// Load and execute the relevant module</find>
+ <action type="before-add">// Set custom template path
+$tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
+$mtemplate->set_custom_template($tpl_path, $module->p_dir);
+
+</action>
+ </edit>
+ </open>
+ <open src="ucp.php">
+ <edit>
+ <find>// Load and execute the relevant module</find>
+ <action type="before-add">// Set custom template path
+$tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
+$mtemplate->set_custom_template($tpl_path, $module->p_dir);
+
+</action>
+ </edit>
+ </open>
+ <open src="adm/index.php">
+ <edit>
+ <find>// Load and execute the relevant module</find>
+ <action type="before-add">// Set custom template path
+$tpl_path = $phpbb_root_path . "modules/$module->p_dir/template";
+$mtemplate->set_custom_template($tpl_path, $module->p_dir);
+
+</action>
+ </edit>
+ </open>
+ <open src="includes/acp/info/acp_modules.php">
+ <edit>
+ <find> 'mcp' => array('title' => 'MCP', 'auth' => 'acl_a_modules', 'cat' => array('ACP_MODULE_MANAGEMENT')),</find>
+ <action type="after-add">
+ 'cms' => array('title' => 'CMS', 'auth' => 'acl_a_modules', 'cat' => array('ACP_MODULE_MANAGEMENT')),
+ 'gcp' => array('title' => 'GCP', 'auth' => 'acl_a_modules', 'cat' => array('ACP_MODULE_MANAGEMENT')),
+ 'pro' => array('title' => 'PRO', 'auth' => 'acl_a_modules', 'cat' => array('ACP_MODULE_MANAGEMENT')),
+ 'grp' => array('title' => 'GRP', 'auth' => 'acl_a_modules', 'cat' => array('ACP_MODULE_MANAGEMENT')),
+</action>
+ </edit>
+ </open>
+ <open src="includes/acp/acp_board.php">
+ <edit>
+ <find> 'board_disable' => array('lang' => 'DISABLE_BOARD', 'validate' => 'bool', 'type' => 'custom', 'method' => 'board_disable', 'explain' => true),</find>
+ <action type="after-add"> 'cms_enabled' => array('lang' => 'CMS_ENABLED', 'validate' => 'bool', 'type' => 'custom', 'method' => 'cms_enabled', 'explain' => true),
+</action>
+ <find> /**
+ * Select default dateformat
+ */</find>
+ <action type="before-add">
+ /**
+ * CMS enable/disable option and message
+ */
+ function cms_enabled($value, $key)
+ {
+ global $user;
+
+ $radio_ary = array(1 => 'YES', 0 => 'NO');
+
+ return h_radio('config[cms_enabled]', $radio_ary, $value);
+ }
+</action>
+ </edit>
+ </open>
+ <open src="includes/acp/acp_permissions.php">
+ <edit>
+ <find> add_permission_language();</find>
+ <action type="after-add"> add_mod_permission_language();
+</action>
+ </edit>
+ </open>
+ <open src="includes/acp/acp_permission_roles.php">
+ <edit>
+ <find> add_permission_language();</find>
+ <action type="after-add"> add_mod_permission_language();
+</action>
+ </edit>
+ </open>
+ <open src="includes/functions.php">
+ <edit>
+ <find>function page_header($page_title = '', $display_online_list = true)
+{
+ global $db, $config, $template, $SID, $_SID, $user, $auth, $phpEx, $phpbb_root_path;</find>
+ <inline-edit>
+ <inline-find>$template,</inline-find>
+
+ <inline-action type="after-add"> $mtemplate,</inline-action>
+ </inline-edit>
+ <find> $tz = ($user->data['user_id'] != ANONYMOUS) ? strval(doubleval($user->data['user_timezone'])) : strval(doubleval($config['board_timezone']));</find>
+ <action type="after-add"> $mtemplate->assign_vars(array(
+ 'S_DISPLAY_ONLINE_LIST' => ($l_online_time) ? 1 : 0,
+ 'LOGGED_IN_USER_LIST' => $online_userlist,
+ 'TOTAL_USERS_ONLINE' => $l_online_users,
+ 'VISIBLE_ONLINE' => $logged_visible_online,
+ 'HIDDEN_ONLINE' => $logged_hidden_online,
+ 'GUEST_ONLINE' => $guests_online,
+ 'RECORD_USERS' => $l_online_record,
+ 'L_ONLINE_EXPLAIN' => $l_online_time,
+ ));
+ </action>
+ </edit>
+ </open>
+ <open src="includes/functions_admin.php">
+ <edit>
+ <find>?></find>
+ <action type="before-add">
+
+<![CDATA[/**
+* Add module permission language - this will make sure module permission files will be included
+* permission file must be of form: permission_<module_name>
+*/
+function add_mod_permission_language()
+{
+ global $db, $user, $cms_modules;
+
+ $mod_lang = array();
+ foreach($cms_modules as $i => $dir)
+ {
+ $mod_lang[$dir] = 'permissions_' . $dir;
+ }
+
+ $user->add_mod_lang($mod_lang);
+
+ return true;
+}]]></action>
+ </edit>
+ </open>
+ <open src="includes/functions_module.php">
+ <edit>
+ <find> var $active_module = false;</find>
+ <action type="before-add"> var $p_dir = '';
+</action>
+ <find> $this->p_class = str_replace(array('.', '/', '\\'), '', basename($p_class));</find>
+ <action type="after-add"> $lang_dir = $user->lang_path;
+</action>
+ <find> }
+
+ // Re-index (this is needed, else we are not able to array_slice later)
+ $this->module_cache['modules'] = array_merge($this->module_cache['modules']);</find>
+ <action type="before-add"><![CDATA[
+ if($row['module_dir'])
+ {
+ $user->add_mod_lang(array($row['module_dir'] => 'common'));
+ }
+ ]]></action>
+ <find> 'right' => $row['right_id'],</find>
+ <action type="after-add"> 'module_dir' => $row['module_dir'],
+</action>
+ <find> unset($this->module_cache['modules'], $names);</find>
+ <action type="before-add"> $user->lang_path = $lang_dir;
+</action>
+ <find> $this->p_right = $item_ary['right'];</find>
+ <action type="after-add"> $this->p_dir = $item_ary['module_dir'];
+</action>
+ <find> $module_path = $phpbb_root_path . 'includes/' . $this->p_class;</find>
+ <action type="replace-with"> //$module_path = $phpbb_root_path . 'includes/' . $this->p_class;</action>
+ <action type="after-add"> $module_path = $phpbb_root_path . (($this->p_dir) ? 'modules/' . $this->p_dir : 'includes/' . $this->p_class);
+</action>
+ <find> function assign_tpl_vars($module_url)</find>
+ <inline-edit>
+ <inline-find>$module_url</inline-find>
+ <inline-action type="after-add">, $cat_var = 'i', $mode_var = 'mode', $offset_prefix = ''</inline-action>
+ </inline-edit>
+ <find> $linear_offset = 'l_block1';
+ $tabular_offset = 't_block2';</find>
+ <action type="replace-with"> $linear_offset = $offset_prefix . 'l_block1';
+ $tabular_offset = $offset_prefix . 't_block2';</action>
+ <find> $u_title = $module_url . $delim . 'i=' . (($item_ary['cat']) ? $item_ary['id'] : $item_ary['name'] . (($item_ary['is_duplicate']) ? '&icat=' . $current_id : '') . '&mode=' . $item_ary['mode']);</find>
+ <action type="replace-with"><![CDATA[ $u_title = $module_url . $delim . $cat_var . '=' . (($item_ary['cat']) ? $item_ary['id'] : $item_ary['name'] . (($item_ary['is_duplicate']) ? '&icat=' . $current_id : '') . '&' . $mode_var . '=' . $item_ary['mode']);
+]]></action>
+ <find> $use_tabular_offset = (!$depth) ? 't_block1' : $tabular_offset;</find>
+ <action type="replace-with"> $use_tabular_offset = (!$depth) ? $offset_prefix . 't_block1' : $tabular_offset;</action>
+ </edit>
+ </open>
+ <open src="includes/sessions.php">
+ <edit>
+ <find> /**
+ * Set language entry (called by add_lang)</find>
+ <action type="before-add"><![CDATA[
+ /**
+ * Add module lang
+ * argument should be of form: array('module_name' => $langset)
+ * $langset can be an array or a string
+ */
+ function add_mod_lang($mod_lang)
+ {
+ global $phpbb_root_path, $phpEx, $config;
+
+ $l_path = $this->lang_path;
+
+ foreach($mod_lang as $mod => $lang_set)
+ {
+ $module_lang_dir = $phpbb_root_path . 'modules/' . $mod . '/language/';
+
+ if(is_array($lang_set))
+ {
+ foreach($lang_set as $key => $lang_file)
+ {
+ if(file_exists($module_lang_dir . "$this->lang_name/$lang_file.$phpEx"))
+ {
+ $this->lang_path = $module_lang_dir . $this->lang_name . "/";
+ $this->set_lang($this->lang, $this->help, $lang_set);
+ }
+ else if(file_exists($module_lang_dir . $config['default_lang'] . "/$lang_file.$phpEx"))
+ {
+ $this->lang_path = $module_lang_dir . $config['default_lang'] . "/";
+ $this->set_lang($this->lang, $this->help, $lang_set);
+ }
+ }
+ }
+ else
+ {
+ if(file_exists($module_lang_dir . "$this->lang_name/$lang_set.$phpEx"))
+ {
+ $this->lang_path = $module_lang_dir . $this->lang_name . "/";
+ $this->set_lang($this->lang, $this->help, $lang_set);
+ }
+ else if(file_exists($module_lang_dir . $config['default_lang'] . "/$lang_set.$phpEx"))
+ {
+ $this->lang_path = $module_lang_dir . $config['default_lang'] . "/";
+ $this->set_lang($this->lang, $this->help, $lang_set);
+ }
+ }
+ }
+
+ //restore lang_path
+ $this->lang_path = $l_path;
+ }
+
+]]></action>
+ </edit>
+ </open>
+ <open src="includes/acp/acp_modules.php">
+ <edit>
+ <find> list($module_basename, $module_mode) = explode('::', $quick_install);</find>
+ <action type="after-add"><![CDATA[
+
+ $sql = 'SELECT module_class, module_dir
+ FROM ' . MODULES_TABLE . "
+ WHERE module_basename = '" . $db->sql_escape($module_basename) . "'";
+ $result = $db->sql_query($sql);
+ $row = $db->sql_fetchrow($result);
+ $db->sql_freeresult($result);
+ ]]></action>
+ <find> $fileinfo = $this->get_module_infos($module_basename);</find>
+ <action type="replace-with"> $fileinfo = $this->get_module_infos($module_basename, $row['module_class'], $row['module_dir']);</action>
+ <find> 'module_auth' => $fileinfo['modes'][$module_mode]['auth'],</find>
+ <action type="after-add"> 'module_dir' => $row['module_dir'],
+</action>
+ <find> 'module_auth' => '',</find>
+ <action type="after-add"> 'module_dir' => '',
+</action>
+ <find> $fileinfo = $this->get_module_infos($module_data['module_basename']);</find>
+ <action type="replace-with"> $fileinfo = $this->get_module_infos($module_data['module_basename'], false, $module_row['module_dir']);</action>
+ <find> $module_infos = $this->get_module_infos();</find>
+ <action type="after-add"> $module_infos += $this->get_module_infos(false, false, true);
+ ksort($module_infos);
+</action>
+ <find> function get_module_infos($module = '', $module_class = false)</find>
+ <action type="replace-with"> function get_module_infos($module = '', $module_class = false, $module_dir = false)</action>
+ <find> $directory = $phpbb_root_path . 'includes/' . $module_class . '/info/';</find>
+ <action type="replace-with"> $directory = $phpbb_root_path . (($module_dir) ? 'modules/' . (($module) ? "$module_dir/info/" : '') : 'includes/' . $module_class . '/info/');</action>
+ <find> if (preg_match('/^' . $module_class . '_.+\.' . $phpEx . '$/', $file))
+ {
+ $class = str_replace(".$phpEx", '', $file) . '_info';</find>
+ <action type="replace-with"><![CDATA[ $class = str_replace(".$phpEx", '', $file) . '_info';
+ if($module_dir)
+ {
+ $mod = $file;
+ $class = $module_class . "_{$mod}_info";
+ $file = "$mod/info/{$module_class}_{$mod}.$phpEx";
+ }
+
+ if (preg_match('/^' . $module_class . '_.+\.' . $phpEx . '$/', $file) || ($file != '.' && $file != '..' && file_exists($directory . $file)))
+ {
+ //$class = str_replace(".$phpEx", '', $file) . '_info';
+]]></action>
+ </edit>
+ </open>
+ <open src="language/en/acp/board.php">
+ <edit>
+ <find> 'OVERRIDE_STYLE' => 'Override user style',</find>
+ <action type="before-add"> 'CMS_ENABLED' => 'Enable CMS?',
+ 'CMS_ENABLED_EXPLAIN' => 'If set to yes, this will enable the CMS system',</action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/faq_body.html">
+ <edit>
+ <find><![CDATA[<h2>{L_FAQ_TITLE}</h2>]]></find>
+ <action type="after-add"><![CDATA[<div class="panel bg1" id="faqlinks">
+ <div class="inner"><span class="corners-top"><span></span></span>
+ <h3>{L_OPTIONS}</h3>
+ <!-- BEGIN faqrow -->
+ <li><span class="gen"><!-- IF faqrow.S_CURRENT --><b>{faqrow.L_TITLE}</b><!-- ELSE --><a href="{faqrow.U_TITLE}">{faqrow.L_TITLE}</a><!-- ENDIF --></span></li>
+ <!-- END faqrow -->
+ <span class="corners-bottom"><span></span></span></div>
+</div>]]></action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/overall_header.html">
+ <edit>
+ <find><![CDATA[<script type="text/javascript">]]></find>
+ <action type="before-add"><![CDATA[<!-- IF .header -->
+ <!-- BEGIN header -->
+ <!-- IF header.TYPE == 'css' -->
+ <link rel="stylesheet" href="{header.LINK}" type="text/css" />
+ <!-- ELSEIF header.TYPE == 'javascript' -->
+ <script type="text/javascript" src="{header.LINK}"></script>
+ <!-- ENDIF -->
+ <!-- END header -->
+<!-- ENDIF -->]]></action>
+ <find><![CDATA[<!-- BEGIN navlinks --> <strong>‹</strong> <a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a>]]></find>
+ <inline-edit>
+ <inline-find><![CDATA[<a href="{navlinks.U_VIEW_FORUM}">{navlinks.FORUM_NAME}</a>]]></inline-find>
+ <inline-action type="before-add"><![CDATA[<!-- IF navlinks.S_LAST_ROW -->{navlinks.FORUM_NAME}<!-- ELSE -->]]></inline-action>
+ <inline-action type="after-add"><![CDATA[<!-- ENDIF -->]]></inline-action>
+ </inline-edit>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/posting_layout.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/search_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/search_results.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/viewforum_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/prosilver/template/viewtopic_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/faq_body.html">
+ <edit>
+ <find><![CDATA[ <th>{L_FAQ_TITLE}</th>
+ </tr>
+ <tr>
+ <td class="row1">]]></find>
+ <action type="after-add"><![CDATA[ <div style="float:right">
+ <h3>{L_OPTIONS}</h3>
+ <!-- BEGIN faqrow -->
+ <li><span class="gen"><!-- IF faqrow.S_CURRENT --><b>{faqrow.L_TITLE}</b><!-- ELSE --><a href="{faqrow.U_TITLE}">{faqrow.L_TITLE}</a><!-- ENDIF --></span></li>
+ <!-- END faqrow -->
+ </div>
+
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/overall_header.html">
+ <edit>
+ <find><![CDATA[<script type="text/javascript">]]></find>
+ <action type="before-add"><![CDATA[<!-- BEGIN header -->
+ <!-- IF header.TYPE == 'css' -->
+ <link rel="stylesheet" href="{header.LINK}" type="text/css" />
+ <!-- ELSEIF header.TYPE == 'javascript' -->
+ <script type="text/javascript" src="{header.LINK}"></script>
+ <!-- ENDIF -->
+<!-- END header -->]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/posting_body.html">
+ <edit>
+ <find><![CDATA[ <!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[ <!-- IF not S_CMS_ENABLED -->
+ <!-- INCLUDE overall_header.html -->
+ <!-- ENDIF -->
+]]></action>
+ <find><![CDATA[ <!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[ <!-- IF not S_CMS_ENABLED -->
+ <!-- INCLUDE overall_footer.html -->
+ <!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/search_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/search_results.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/viewforum_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+ <open src="styles/subsilver2/template/viewtopic_body.html">
+ <edit>
+ <find><![CDATA[<!-- INCLUDE overall_header.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_header.html -->
+<!-- ENDIF -->
+]]></action>
+ <find><![CDATA[<!-- INCLUDE overall_footer.html -->]]></find>
+ <action type="replace-with"><![CDATA[<!-- IF not S_CMS_ENABLED -->
+<!-- INCLUDE overall_footer.html -->
+<!-- ENDIF -->
+]]></action>
+ </edit>
+ </open>
+
+ <diy-instructions lang="en"><![CDATA[
+ Using your browser, run the script <path_to_phpbb>cms_install.php
+ ]]></diy-instructions>
+ </action-group>
+</mod>
\ No newline at end of file
Added: modx/cms/trunk/modx.prosilver.en.xsl
===================================================================
--- modx/cms/trunk/modx.prosilver.en.xsl (rev 0)
+++ modx/cms/trunk/modx.prosilver.en.xsl 2007-09-02 01:09:34 UTC (rev 37)
@@ -0,0 +1,1734 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!-- MODX by the phpBB MOD Team XSL file v1.0 copyright 2005-2007 the phpBB MOD Team.
+ $Id: modx.prosilver.en.xsl,v 1.3 2007/05/20 09:31:00 vic Exp $ -->
+<!DOCTYPE xsl:stylesheet[
+ <!ENTITY nbsp " ">
+]>
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:mod="http://www.phpbb.com/mods/xml/modx-1.0.xsd">
+ <xsl:output method="html" omit-xml-declaration="no" indent="yes" />
+<xsl:variable name="title" select="mod:mod/mod:header/mod:title" />
+<xsl:variable name="version">
+<xsl:for-each select="mod:mod/mod:header/mod:mod-version">
+ <xsl:call-template name="give-version">
+ </xsl:call-template>
+ </xsl:for-each>
+</xsl:variable>
+ <xsl:template match="mod:mod">
+ <html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Language" content="en" />
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <style>
+
+/* phpBB 3.0 Admin Style Sheet
+ ------------------------------------------------------------------------
+ Original author: subBlue ( http://www.subblue.com/ )
+ Copyright 2007 phpBB Group ( http://www.phpbb.com/ )
+ ------------------------------------------------------------------------
+*/
+
+/* General markup styles
+---------------------------------------- */
+* {
+ /* Reset browsers default margin, padding and font sizes */
+ margin: 0;
+ padding: 0;
+ font-size: 100%;
+}
+
+body, div, p, th, td, li, dd {
+ font-size: x-small;
+ voice-family: "\"}\"";
+ voice-family: inherit;
+ font-size: small
+}
+
+html>body, html>div, html>p, html>th, html>td, html>li, html>dd {
+ font-size: small
+}
+
+html {
+ color: #536482;
+ background: #DBD7D1;
+ /* Always show a scrollbar for short pages - stops the jump when the scrollbar appears. non-ie browsers */
+ height: 100%;
+ margin-bottom: 1px;
+}
+
+body {
+ /* Text-Sizing with ems: http://www.clagnut.com/blog/348/ */
+ font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif;
+ color: #536482;
+ background: #DBD7D1;
+ font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */
+ margin: 10px 15px;
+}
+
+img {
+ border: 0;
+}
+
+h1 {
+ font-family: "Trebuchet MS", Helvetica, sans-serif;
+ font-size: 1.70em;
+ font-weight: normal;
+ color: #333333;
+}
+
+h2, caption {
+ font-family: "Trebuchet MS", Helvetica, sans-serif;
+ font-size: 1.40em;
+ font-weight: normal;
+ color: #115098;
+ text-align: left;
+ margin-top: 25px;
+}
+
+.rtl h2, .rtl caption {
+ text-align: right;
+}
+
+h3, h4, h5 {
+ font-family: "Trebuchet MS", Helvetica, sans-serif;
+ font-size: 1.20em;
+ text-decoration: none;
+ line-height: 1.20em;
+ margin-top: 10px;
+}
+
+p {
+ margin-bottom: 0.7em;
+ line-height: 1.40em;
+ font-size: 0.90em;
+}
+
+ul {
+ list-style: disc;
+ margin: 0 0 1em 2em;
+}
+
+.rtl ul {
+ margin: 0 2em 1em 0;
+}
+
+hr {
+ border: 0 none;
+ border-top: 1px dashed #999999;
+ margin-bottom: 5px;
+ padding-bottom: 5px;
+ height: 1px;
+}
+
+.small {
+ font-size: 0.85em;
+}
+
+/* General links */
+a:link, a:visited {
+ color: #105289;
+ text-decoration: none;
+}
+
+a:hover {
+ color: #BC2A4D;
+ text-decoration: underline;
+}
+
+a:active {
+ color: #368AD2;
+ text-decoration: none;
+}
+
+/* Main blocks
+---------------------------------------- */
+#wrap {
+ padding: 0 0 15px 0;
+ min-width: 615px;
+}
+
+#page-header {
+ clear: both;
+ text-align: right;
+ background: url(data:image/gif;base64,R0lGODlhiwAwAPf/AMG+uerr7b66tf38/aWint3g4dbSzZaUkefs7+/u7a2qpuHf2tTQyrm2sc7T1bzBxKimoePi4djUz6Wkofb4+ubm5urv8evq6J2bmOjq7N3a1K6sqNDU1/L09rGuqo6MitDMx7m+wcLExejm4318ebS5vNTZ3Pr6+u7w8tbY2PHz9JKQjd/e3e3s69LOyKqopLSxrfj6+pyZlc7KxW1raezv8HV0coWDgeTn6NrW0MTFxeDl6NPW2OXo6np5duHg37a1srKvq8zQ08zOztrd3+no5/n7/JiWk76+vuDk5tbW1ubk4JCNiuXi3crO0KKgnHJxbuLk5t3f4cnNzsjEv+7w8bGxsL+9usXEwvX08+zw8ubq7MfDvoiGg/T299jb3LW1tdza2MjFwNba3N3c2fX3+MbJytDNyMLBv9fTzYqJh9jX1IB/fKuqqNvf4cfEv/n5+PDy887R0rq4tMTBvLWyrvT09PLz9O/y9KCem3h3dNrZ19LU1s3LycrGweHj5Lq5uPf398vIw+br7unt8MbKzdHW2cLHyuXq7NPX2uPo68nN0L/Ex+Ln6tfc39/k593i5dne4drf4tbb3tzh5K+0t62ytdnV0LK2uezq5szJw7azrre8vs/MxqyxtM3JxOvw88nIxvz8+/Hv7c/LxvD1+K+xssvHwu/099PPyuzx9O3y9e7z9sfLzvr6+ff29cLAu/H2+fL3+bO3ur+8t+Dc17i9v8fMzvv8/G9ua8LGx9bU0OHm6bC1uPPy8M/U1bOwrMPIy9TX2t/i4+bp69/c18DFx8HGyM3KxOPm59XRy9XSzauws83R1MbCvdHV1/T4+unu8Ort783P0N/j5fTz8cTAu7a4uMTCwLy6uLu4s9PT0rCztLK0tbSysMvKyMvMzc7NzM3Q0M7Q0fb19NXT0dnW0MfGxNHOyNDOy9PU1ayrq4OBfre0sOPl5aqvsrG2ucnGwNjZ2fn498XCvfHx8NPQzLO4u8LCwsLDxK6ztqekoPj39szIw////9vX0SH5BAEAAP8ALAAAAACLADAAAAj/AP8JHEiwoMGD//wpdDWqFsKHECNKnEixosWLB9Mo3DigGMaPFDUsyTQqy4CNKLOMGqEhokiSJlFuVMkSZMVO/t69K/HLX5FUNoMWbOFKplGjo1oaJHq0qcKkQiH28+eJmVU+cBpEFXpJoZFkX+TogueprFlPuuQUMOJvQJOCXf19DTv2rNm0a9u+3Wpwqj5LgO/5U8DXZip/tgArXsxY8ReFewUeTty4smPIhQlO7VWpcy9/+zJ/nOGPc+fTqFOfnhLgxLKBpE2rnr269WvRU2dh2j3LHwHRGHPvHj6Lm6njproNX+7EXxgJAoUvL448+fLhzZ/j9leie3ffwC9O//XeXUcuGyTSk/DBZt0D8iWknKATnTt58+jVs3cPXz59hBqMUNJJ/rjiSyZKHTSVLZw0aAtoAjXhC4H8HOhQRQEOuNCBCfaFWIOcOMHCAcDUsckmdQQBwQFAmAEiJ8b4A0t9DDYoIokmoqgiiy6CGOOMBmmQCYFNIaigPyEkmaQ/XGiQhVNZXAiRkEQeZaSHSoYgxA8vkNIJCCB0MoMY7byQQpYh3HEFUFNluWWXX4Y5ZplnZqmmQQvAoRAOXzhwzAMPFMLDH7j488oCHgKqqD+7nFQFD38+4MSggbQ1AkR57tlnpIISaiiiBU2l6AMORACMQRKcIcAaToxaxRwz/P8jqqKlnlpQqqu2quir0A20gCj+RHELI8QWW+wtUfgjCqgDTWWMsXZU+oex1Eqh0KUH/RrssNQem+yyofrzLLEcmHrQJZqEUYCxVQDRj6ziFluurXClu26x7aYxUDHAEnHIvwAHDDAR/syTg2b+BBMwwf4KLLADxLhmEL/+NOywwAQbjLDC/yZi7kEu1DNMwFVMoAm8HB/iMb0FhTwywCXrK1A1/khRyM04t9IKzjxbWwTCO/PsAM9B83wzB/4soUxBNNtstM5G3+wz0DiP8bFBZPjzDM9FyMCmP0VbzTJBWW+Nc9cyLxDsImyzfc0HNORywwRTtM12D4w2648Tdrf/LcIBNuTiQx759L1IsmIQpHYUfb8d99x12433LnrzzfYXFZxy0BKixGF3IlZAcAm8li+CueYGce5526CL/k8OCdwhxOxC8PCCDysQoMA+B6ygBO2z3zHCGfU1A/zsgNigRh4vQCCDGjocL8QA9vQKu+y024677rz7frzwxMNr/OxEkDNSJuiTVFTNwIPTBQDF017++emPsr4U7b8vkDn+DOPA/w4ABxsgAItTnOINAoAAAdwBQAcMwx+Jg9cvGugAIvjgCQAQwynEAIAN5CEFFKwBGaiwv/41UIAENCACFchAAD4wglOZ4P9M4JQquKGBSLgBBJYmQQDSsCk2xKEO/3m4gAFw4IgcSMYRnjADAxxMAgzgQhDCMQYkcuAE6VjaVJ5hRSIEQQaCUMboLmGAfrQDCwWwYjIqIACBFFGNS2ziE6M4xSoiEYta1JoVxxCAPvoxGXY8ohmOwAYC9GN08OIiEvnoxz4C0oqDLOQh/3GJH8TBEJg0RAWY8AZEDiQNdJhDADJpCBFyAV6kLKUMtNGrgUggHg24ZCYhMY9TVVKWmNxkJwsCSlGS0pSoTKUwUwmJFpyjAf1o5VSGyUxMFvOYyRSIARIgjURYkwjhIIDMCoIOASTAmtbEARvhJQxwJuIEBwDBQZQBgAGYcwz+eME/plnNa2ZzmwTp5jfBKf/ONk6lnOYMqECt5Y8EHExvABWoQhNBUIMOhAEtSIIJJkoMNGwCIRJ4QxEkMVETJMEfp5pKRyfqjzy0kiCXEEMRRkrD30BUohS1KEY1ytGJfjSk/mCpCXQggp769BkjpYYKDJUgkbKUpz7tKVA7KlSiCuQM/tjBJKZagyvQ4iGf2INUpzoJf0AAXlydKngQookLbFWsv4HqWat6VYRk9axd/epUwjoJFEBBPenxgR5WMISw1sAfF9AbXe2K1/Xsta9c/Wtg/0EKfzjisY5AQTac8RAQrEEakHUEeKaSWc3+BiGkuAAvMguexmZWspRFiGUxC9nNOpa0HziRbGHgwSP/yCOzf6UcvDrrj9jKdhO0zYNtcZu3T/gjEsiNRAe+cUqEpGIPVUhuJFwr3el+9iAguAAOpAse40p3uc09yHOjm1zqchcDYEovKfoBC2BgY7vJ9QILYjWV6voDvekFwXrb+17pyjcHU5GEgCWBgj785yAMCAMKBiwJFoQmwAweK3Yv0IMI/wbCAi7wgQ2S4AUP2MHwYrAkJEyQNFChAR1gcADu4E9/iJjEnzxxige84jRMhRI4pgQeKgA/hEAUDzkmxg82AK8c4xjGBMkuMYzsWiPvuMcIbgGQcSxkIt+YydctiAHaaeQdDKbIWEbIlgfQZX+4YCqQSDMktuAPKBsk/xUn2IKat4AGnKo5zUgeSHblrGbX3pnNbi4InPm85jrD686QyDMloYroQDzYH4hW9CUYfedArNcfj8h0pv2xBk8WpBb+4IWmVeCNFmt601kuSHYRcGrXnvoRnPY0QUAt6kyT2tSt/ipCfoCLU/OCBXLFdK4fwmtfs0ATU9mBspWtAlzwsCA5yEIZlr2DMhwhccmmtqL/kd0AaPvCUaV2s59NkGhPe9nWxna4l+2P8BlkBP5QAbUDcAUPwIvaXnZ3QeAt72XTGxlTaYTABc5mcnRIIAnwhzQG3ohtyIAB8GJ4I7ad3Wgw3LUSL/jB/5HwhQ/c4RDvRwIkfgJRtKAJKP9vwkhe4Q8vbIHhHTjCVUVOcpOnXOWZYLnLYX4EEExFEUAPegeUlYkLNeFJXgi6IlBAAA+M7udKp/gFLBB1cCsd6EMXRdEjhHSlM93p/9AECwjhdad4AQFXP0c6wz72sjfl7Gk/AAOmgoi62x0RQzeKF+6OCCUwAYb+4LvUtXB31/K97nmXyd7v7vcIaqIPKuA7AjoQg8rHgAIdiMbhA9AFGEDn8ZG/++Qtf/nMb77zEpjKIFbP+tVHwwsEOgEeWj+IDBzhBQaIjh1oL3VVtN61tGf962M/+9bbHvcCIQUMfhD85gc/AyuQASmSv3znW3/10Jc+vBDAfe6ro/vgDz//ArTQhhWI4aBitwD4t02KNaBg/eAO//fFL37ym/+gBhDAC3BA//5zPwUfsALW0Cv5t3/+138AKIDQMRWE0ICEgAeAYAUo4IAU6IA9MAFd0ADb5Ad1UAMUuG2fAAN/8IHgRoEQKIEVWIEXmIHblAOfoAAHoAMpOIOEgAProAcHQAu5JxAuCIMySIMVaIM4qIP1YQFGaAEUgAQfsAEBcIROaAHi8AGdBxQDcQYegAH4UABGeF8PwQDtgAFgoIUWwIVT4YRJuIRN+IRGGIVTyEtUsAEr8AFWMA5i+IRDgAQYAAVdsA9cAHEl9oZxOId16IR3mId72Id6AwqKCAoUgAX7/4ABcigHitgD0wAGauADBzAHLuBpGaUAK+ADUJALbEAYGCUIQXAAbBCKowgvi8iIjgiJViCJoECJloiJmihr83QKDbAiN6AHoZgLwJgLUKAHN7ACEEALn7CDWqaLvOiLwQiMw1iMx5iMCKMK1qgKFHBMAKAAR8AOgQMFPtAFMuABXJAKuGgA8aANwLABG9AAnQARaaAJtEBb7fiOU3GN2KiN3OiNwhiO41iOuCgQEuACVCAA7RAE7JiQ7FgH2gAL/cAAASmQBGmQCKmQC9mQDylrU7EKHLkKFBAKAMAAp0ALm8COHrAJAsAFnYBPt5IKpIBsKxkRUPSS/RCTG9mRH/8ZkiNZkhtwkikZkzLJAGcwA8jWD0bZD5/QCangRBMBRUNZlEeZlEt5UOHCClbJCjEAkv8ARSDwCZqADCDAACwZHvBylViplVzplWAplmRJllOBCnCJClkZaG35EG8Zl3NZl3oZKglQCn5ZCnm5l1LRl38ZmIKpl5pQDtAQC4xpBFp5mAghBorJmLHgmHQJmaLRCRBQAbLQmZaJmQdxCpvZmbLwmaBJlgzQAAcABkRQmmjQRqdJEKm5mq1pBK8Zm+FxCTOwi0+QB/sgAH6Im5S0mxDQm78ZnMJZGBIwA7RQBxsAA/SgjMK5nM35nNGZnMBxCQzQCZowAxCJnQKhndwI6Z0RCZ4YERAAOw==) top left no-repeat;
+ height: 69px;
+ font-size: 0.85em;
+ margin-bottom: 10px;
+}
+
+.rtl #page-header {
+ text-align: left;
+ background: top right no-repeat;
+}
+
+#page-header h1 {
+ color: #767676;
+ font-family: "Trebuchet MS",Helvetica,sans-serif;
+ font-size: 1.70em;
+ padding-top: 10px;
+}
+
+#page-header p {
+ font-size: 1.00em;
+}
+
+#page-body {
+ clear: both;
+ min-width: 700px;
+}
+
+#page-footer {
+ clear: both;
+ font-size: 0.75em;
+ text-align: center;
+}
+
+#content {
+ padding: 30px 10px 10px;
+ position: relative;
+}
+
+#content h1 {
+ color: #115098;
+ line-height: 1.2em;
+ margin-bottom: 0px;
+}
+
+#main {
+ width: 100%;
+ margin: 0;
+ min-height: 350px;
+}
+
+.rtl #main {
+ float: right;
+ margin: 0;
+}
+
+* html #main {
+ height: 350px;
+}
+
+/* Main Panel
+---------------------------------------- */
+#acp {
+ margin: 4px 0;
+ padding: 3px 1px;
+ min-width: 550px;
+ background-color: #FFFFFF;
+ border: 1px #999999 solid;
+}
+
+.panel {
+ background: #F3F3F3 url(data:image/gif;base64,R0lGODlhBQAiAfcAAPLy8t7h5Nzf4/Pz8+zt7vHx8uLk5+Xn6e3u79ve4u/v8PHx8d3f4/Dw8d/i5ejp693g4+nq7OPl6PDx8evs7ebo6uTm6N3g5Orr7dze4u/w8ODi5eHj5t/h5ers7fLz8+vs7u7u7+Dj5u7v8N7g5Ofo6uDi5ujq7PLy8+fp6+nr7PHy8t/h5O7v7+Xm6e3t7+Tm6dzf4uHk5+Hj5+bn6ufp6tvf4urr7O/w8ePl59zg4+Hk5vDw8PLx8ubn6ezs7uTl6OLl5+jp7Ojq69ze497h5evr7fPy8uXm6OXn6uDj5efo6+zt7+Pk5+7u8O/v8dve4+3t7uLk5vPz8urq7O3u7unq6/Hy8ebo6d3h5PPy8+Dh5ezu7uPm6O3v7+Ll6PDx8uvt7vLz8unr7d3f5Nzf5Ojo69/i5OLj5uTn6eHj5evt7ebo6+Hi5eTl6fLx8eLk6N/i5uXo6d7i5fLy8ezs7fDx8OLj597h4/Hy8+Pk6Ojp6u/u8N7g4/Hw8fDv8O7w8O7u7uDh5unp693f4uDk5urq7eTl5/Dw8ufn6uvs7OXm6uTn6O/x8ezu79vf4+Hi5uXo6u/v7+Xn6Ors7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAAAAAAALAAAAAAFACIBAAj/ABPYSEAwQ4IMAwkWJALFYEGFCB8mhAKFoI2GFjM8EkgkQ8eOUATEiGHDhkGSGTIIgEIkRgaXNmKIlCmAiICaN1W2FHlTJIOeQHvGICTgpwAdEBjouPnTqI6lTZsWZUC1jI6qDCAcnar0KQMyZCCILXOBTFYdF7JCSCt2bdYLa+GSuEBXLQQSc+mKhdsnLok+AehmCYAXbgAIWdbiCbA4AGHHjkkQHiw5QJYihCtDjvzYMYvNRTAH6EA49GcWRVDPYfE5wOcOqDuc6TDHwWkWsDs4mK0btoMOunf/7rBFd/HiDhxs2ZC8Q5zkyeMIcsDcgYgN1auboL7BRHcl15V0//fuvTt2EUpMKFHSRo2J9xtEmBDBQbwJNRzii6APicP+NvTRZ4J/HBRIHwc7+FfIDjM0OIMMHMgwww5oJDgDGjNEiCCGEkohww4fyiDDHRPKYIABd+xggIceGqCiATOcaKIUK554YhA2NmEjjjjm+MUXBujRhI455ABHEDjmIEEOQTRxpAR6GPBFE0p+IcGSTC55pZZbdgHEkodIYMGVXloAhJdiSgDEmGKOaUEXMLhhwZxzAiHnmmvCMCcMfLqAhAt6WsDnJEjoicSfSDBS6AEuMHoADC6k4WihkTra6AGYXorpIo4m4UISmGLqQ6gH+JCED3IkQcMBNLRKgw9YlP8aKw0VREKDqnL4UEEFptKKRQVY0KprIrtWQGsFJSCrrLIlsFHCs8mmUEENS7BRQwrUlpCCtNAuUcIS1FK7xx41mJGCGTVci+0DNTzg7gPmbvsuu+5um8IQ8+L7gBDunvDACfzuO4QVQgwxBL8GD3JCBENEIMQJ/gphhRUQPxwBxBFYcbHGC18cgccfqxCByB+XrMLJI0dwwxgqUEFFy4acrMINGKjAMgY30HyDyyvjjHPOGHgQNAY+e2AE0R4ILbQRQiOttAeKGEGB0R5QYMTRVU+dtREgUNA1BRRQAgIIWX8Nttdje01BHV0T0PUPIITxw9xruA0C2wSEAQIBa/z/QAABP4Tx99x/F2744X9HQcALf7/AhSNc/M0E40xEEUXlTFThOAFVIPDCC55PzgUCTCBQRRSef9655wi07nrnISAQCAKxux5C7F7U7jrtIYzgRO+5I+DFCC20cPsIXhg/AvG/396CEy3w0fvz1PsevQItKKC9AiNIwj3xI2Af/vbaA6KABtujz/0T53OvwRPoa4A+DjjAj8Mf8scvP/t/2I/D+TyoXwMGqAH68aABB+SBAhGIAwU2AgcasMMAJ9CACVgQBwMcoAQtOMEKZpCCIKygHyawADBY8IQkLEADCjCBAizAhQtYACL8AAYYlrCFMXRhAVYQwxiC4YU7LIAOma+gwxzu8AoxfIMQAUBEIrqwB0KEIhQBAAA6FKAHVtzhAq6wgjesoAdfLAAAVrACAIixBz0YIxXHmAcqpnGNZVxjG+O4RhRQ0Y5rzCMAPgAAFBzhAyjgIyABqYUPABIAAxDDEVDAyCMMYAoD0MIAAHAERxpykQAQwyMHwEkUDOADkTzCFCT5yVJ+QAyA3CQkQcnJVnKSla4MCAA7) repeat-x top;
+ padding: 0;
+}
+
+span.corners-top, span.corners-bottom,
+span.corners-top span, span.corners-bottom span {
+ font-size: 1px;
+ line-height: 1px;
+ display: block;
+ height: 5px;
+ background-repeat: no-repeat;
+}
+
+span.corners-top, span.corners-bottom {
+ background-image: url(data:image/gif;base64,R0lGODlhiBMMAMQSAP///5mZmfPz89vX0cvIw9zc3PX19bKysqmopvb29pqamvn5+Z2dnLy6t62sqp+fnqCgn/T09P///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABIALAAAAACIEwwAAAX/4DAQDhScaKqubOu+cCzPdG3feK7vfO//wKBwSCwaj8ikcslsOp/QqHRKrVqv2Kx2y+16v+CweEwum8/otHrNbrvf8Lh8Tq/b7/i8fs/v+/+AgYKDhIWGh4hSAw0HBREAkJGSk5SVlpeYmZqbnJ2en6ChoqOkpaanqKmqq6ytrq+wsbKztLW2t7i5uru8vb6/wMHCw8TFxsfIycrLzM3Oz9DR0tPU1dbX2Nna29zd3t/g4eLj5OXm5+jp6uvs7e7v8PG7BAoCAAkCEvr7/P3+/wADChxIsKDBgwgTKlzIsKHDhxAjSpxIsaLFixgzatzIsaPHjyBDihxJsqTJkyhT/6pcybKly5cwY8qcSbOmzZs4c+rcybOnz59AgwodSrSo0aNIkypdyrSp06dQo0qdSrWq1atYs2rdShJBAQBcw4odS7as2bNo06pdy7at27dw48qdS7eu3bt48+rdy7ev37+AAwseTLiw4cOIizJYYCCx48eQI0ueTLmy5cuYM2vezLmz58+gQ4seTbq06dOoU6teHToAgHysY8ueTbu27du4c+vezbu379/AgwsfTry48ePIkyuX4Br28ufQo0ufTr269evYs2vfzr279+/gw4sfT7704sbl06tfz769+/fw48ufT7++/fv48+vfzx+vV7D9BSjggAQWaOCBCCao4JmCDDbo4IMQRijhdfTYg8+EGGao4YYcdujhhyCGKOKIJJZo4oko5rVIIwbI4+KLMMYo44w01mjjjTjmqOOOPPbo449ABinkkEQWaeSRSCap5JJMNunkk1BGKeWUVFaZjQgkPJDIllx26eWXYIYp5phklmnmmWimqeaabLbp5ptwxinnnHTWaeedeOap55589unnn4AGKigcIQAAOw==);
+}
+
+span.corners-top span, span.corners-bottom span {
+ background-image: url(data:image/gif;base64,R0lGODlhBgAMAMQWAP///9vX0fPz85mZmdzc3Jqamtvb28vIw7y6t62sqsvIxPX19bKysqmop/T09Pb29pycnJ+fnp2dnKCgn/n5+fr6+v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABYALAAAAAAGAAwAAAUs4DAlRxAADsEggfAAQqFYNGA0tLVQUi4AAx8w56hAcraGCyYDLFSsQYRkCgEAOw==);
+}
+
+span.corners-top {
+ background-position: 0 0;
+ margin: -4px -2px 0;
+}
+
+span.corners-top span {
+ background-position: 100% 0;
+}
+
+span.corners-bottom {
+ background-position: 0 100%;
+ margin: 0 -2px -4px;
+ clear: both;
+}
+
+span.corners-bottom span {
+ background-position: 100% 100%;
+}
+
+/* General form styles
+----------------------------------------*/
+fieldset {
+ margin: 15px 0;
+ padding: 10px;
+ border-top: 1px solid #D7D7D7;
+ border-right: 1px solid #CCCCCC;
+ border-bottom: 1px solid #CCCCCC;
+ border-left: 1px solid #D7D7D7;
+ background-color: #FFFFFF;
+ /*position: relative;*/
+}
+
+.rtl fieldset {
+ border-top: 1px solid #D7D7D7;
+ border-right: 1px solid #D7D7D7;
+ border-bottom: 1px solid #CCCCCC;
+ border-left: 1px solid #CCCCCC;
+}
+
+* html fieldset {
+ padding: 0 10px 5px 10px;
+}
+
+fieldset p {
+ font-size: 0.85em;
+}
+
+legend {
+ padding: 1px 0;
+ font-family: Tahoma,arial,Verdana,Sans-serif;
+ font-size: 0.85em;
+ font-weight: bold;
+ color: #115098;
+ position: relative;
+ text-transform: capitalize;
+ line-height: 1.00em;
+ top: 0em;
+ vertical-align: middle;
+}
+
+/* Hide from macIE \*/
+legend { top: -1.2em; }
+/* end */
+
+* html legend {
+ margin-bottom: -10px;
+ margin-left: -7px;
+}
+
+/* Holly hack, .rtl comes after html */
+* html .rtl legend {
+ margin: 0;
+ margin-right: -7px;
+}
+
+optgroup, select {
+ font-family: Verdana, Helvetica, Arial, sans-serif;
+ font-size: 0.85em;
+ font-weight: normal;
+ font-style: no...
[truncated message content] |
|
From: <dac...@us...> - 2007-09-01 23:53:03
|
Revision: 36
http://thevr.svn.sourceforge.net/thevr/?rev=36&view=rev
Author: dachebodt
Date: 2007-09-01 16:53:02 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
fixed installation bug
Modified Paths:
--------------
mods/cms/trunk/modules/content/info/acp_content.php
mods/cms/trunk/modules/content/info/cms_content.php
Modified: mods/cms/trunk/modules/content/info/acp_content.php
===================================================================
--- mods/cms/trunk/modules/content/info/acp_content.php 2007-09-01 23:52:02 UTC (rev 35)
+++ mods/cms/trunk/modules/content/info/acp_content.php 2007-09-01 23:53:02 UTC (rev 36)
@@ -30,99 +30,53 @@
{
global $db, $phpbb_root_path, $phpEx;
- include_once($phpbb_root_path . "modules/mods/acp_mods.$phpEx");
include_once($phpbb_root_path . "modules/content/constants.$phpEx");
- $_module = new acp_modules();
- $_module->module_class = 'cms';
+ $sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . CONTENT_TABLE . " (
+ `id` mediumint(8) NOT NULL auto_increment,
+ `title` varchar(100) collate utf8_bin NOT NULL,
+ `content_id` mediumint(8) NOT NULL,
+ `summary_bitfield` varchar(255) collate utf8_bin NOT NULL,
+ `summary_uid` varchar(5) collate utf8_bin NOT NULL,
+ `summary_options` int(11) unsigned NOT NULL default '7',
+ `summary` text collate utf8_bin,
+ `image` text collate utf8_bin NOT NULL,
+ `content` text collate utf8_bin,
+ `content_bitfield` varchar(255) collate utf8_bin NOT NULL,
+ `content_uid` varchar(5) collate utf8_bin NOT NULL,
+ `content_options` int(11) NOT NULL default '7',
+ `keywords` text collate utf8_bin,
+ `author` mediumint(8) NOT NULL,
+ `post_time` int(11) NOT NULL default '0',
+ `status` tinyint(1) NOT NULL default '0',
+ `approver` mediumint(8) NOT NULL,
+ PRIMARY KEY (`id`)
+ ) CHARACTER SET `utf8` COLLATE `utf8_bin`";
- $errors = array();
- $module_data = array(
- 'parent_id' => 0,
- 'module_langname' => 'CMS_CONTENT',
- 'module_basename' => '',
- 'module_mode' => '',
- 'module_auth' => '',
- 'module_enabled' => 1,
- 'module_display' => 1,
- 'module_class' => 'cms',
- 'module_dir' => 'content',
- );
+ $sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . CONTENT_TYPES_TABLE . " (
+ `content_id` int(3) NOT NULL auto_increment,
+ `content_name` varchar(125) collate utf8_bin NOT NULL,
+ `content_langname` varchar(255) collate utf8_bin NOT NULL,
+ `permission` mediumtext collate utf8_bin NOT NULL,
+ `content_fields` text collate utf8_bin,
+ `req_approval` tinyint(1) NOT NULL default '1',
+ `allow_comments` tinyint(1) NOT NULL default '1',
+ `allow_ratings` tinyint(1) NOT NULL default '1',
+ `allow_views` tinyint(1) NOT NULL default '1',
+ `allow_keywords` tinyint(1) NOT NULL default '0',
+ `allow_bbcode` tinyint(1) NOT NULL default '1',
+ `allow_smilies` tinyint(1) NOT NULL default '1',
+ `allow_urls` tinyint(1) NOT NULL default '1',
+ `display_type` tinyint(1) NOT NULL default '0',
+ `active` tinyint(1) NOT NULL default '0',
+ `content_order` tinyint(2) NOT NULL default '0',
+ PRIMARY KEY (`content_id`)
+ ) CHARACTER SET `utf8` COLLATE `utf8_bin`";
- $errors = $_module->update_module_data($module_data, true);
-
- if(!sizeof($errors))
+ foreach($sql_ary as $i => $sql)
{
- $parent_id = $db->sql_nextid();
-
- $module_data = array(
- 'parent_id' => $parent_id,
- 'module_langname' => 'News',
- 'module_basename' => 'content',
- 'module_mode' => 'news',
- 'module_auth' => '',
- 'module_enabled' => 1,
- 'module_display' => 1,
- 'module_class' => 'cms',
- 'module_dir' => 'content',
- );
-
- $errors = $_module->update_module_data($module_data, true);
- $mod_id = $db->sql_nextid();
+ $db->sql_query($sql);
}
-
- if(!sizeof($errors))
- {
- $sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . CONTENT_TABLE . " (
- `id` mediumint(8) NOT NULL auto_increment,
- `title` varchar(100) collate utf8_bin NOT NULL,
- `content_id` mediumint(8) NOT NULL,
- `summary_bitfield` varchar(255) collate utf8_bin NOT NULL,
- `summary_uid` varchar(5) collate utf8_bin NOT NULL,
- `summary_options` int(11) unsigned NOT NULL default '7',
- `summary` text collate utf8_bin,
- `image` text collate utf8_bin NOT NULL,
- `content` text collate utf8_bin,
- `content_bitfield` varchar(255) collate utf8_bin NOT NULL,
- `content_uid` varchar(5) collate utf8_bin NOT NULL,
- `content_options` int(11) NOT NULL default '7',
- `keywords` text collate utf8_bin,
- `author` mediumint(8) NOT NULL,
- `post_time` int(11) NOT NULL default '0',
- `status` tinyint(1) NOT NULL default '0',
- `approver` mediumint(8) NOT NULL,
- PRIMARY KEY (`id`)
- ) CHARACTER SET `utf8` COLLATE `utf8_bin`";
-
- $sql_ary[] = 'CREATE TABLE IF NOT EXISTS ' . CONTENT_TYPES_TABLE . " (
- `content_id` int(3) NOT NULL auto_increment,
- `content_name` varchar(125) collate utf8_bin NOT NULL,
- `content_langname` varchar(255) collate utf8_bin NOT NULL,
- `permission` mediumtext collate utf8_bin NOT NULL,
- `content_fields` text collate utf8_bin,
- `req_approval` tinyint(1) NOT NULL default '1',
- `allow_comments` tinyint(1) NOT NULL default '1',
- `allow_ratings` tinyint(1) NOT NULL default '1',
- `allow_views` tinyint(1) NOT NULL default '1',
- `allow_keywords` tinyint(1) NOT NULL default '0',
- `allow_bbcode` tinyint(1) NOT NULL default '1',
- `allow_smilies` tinyint(1) NOT NULL default '1',
- `allow_urls` tinyint(1) NOT NULL default '1',
- `display_type` tinyint(1) NOT NULL default '0',
- `active` tinyint(1) NOT NULL default '0',
- `content_order` tinyint(2) NOT NULL default '0',
- PRIMARY KEY (`content_id`)
- ) CHARACTER SET `utf8` COLLATE `utf8_bin`";
-
- $time = time();
- $sql_ary[] = 'INSERT INTO ' . CONTENT_TABLE . " VALUES (1, 'Welcome to phpbb3 CMS', $mod_id, '', '', 7, NULL, '', 'Congratulations! You have successfully installed the phpbb3 CMS. You may now configure your site as you wish. From the administrative control panel you can enable/disable modules and their blocks.\n\nEnjoy.', '', '', 7, '', 2, $time, 1, 0);";
- $sql_ary[] = 'INSERT INTO ' . CONTENT_TYPES_TABLE . " VALUES ($mod_id, '', '', '', 0x613a343a7b733a353a227469746c65223b613a373a7b733a353a226c6162656c223b733a353a225469746c65223b733a343a2274797065223b733a313a2230223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a383a227265717569726564223b733a313a2231223b733a343a226e616d65223b733a353a227469746c65223b733a383a2276616c6964617465223b733a313a2230223b7d733a353a22696d616765223b613a373a7b733a353a226c6162656c223b733a353a22496d616765223b733a343a2274797065223b733a313a2230223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a343a226e616d65223b733a353a22696d616765223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d733a373a2273756d6d617279223b613a373a7b733a353a226c6162656c223b733a303a22223b733a343a2274797065223b733a313a2231223b733a343a226e616d65223b733a373a2273756d6d617279223b733a363a22746561736572223b733a313a2230223b733a343a22626f6479223b733a313a2230223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d733a373a22636f6e74656e74223b613a373a7b733a353a226c6162656c223b733a343a224e657773223b733a343a2274797065223b733a313a2232223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a343a226e616d65223b733a373a22636f6e74656e74223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d7d, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0);";
-
- foreach($sql_ary as $i => $sql)
- {
- $db->sql_query($sql);
- }
- }
}
function uninstall()
Modified: mods/cms/trunk/modules/content/info/cms_content.php
===================================================================
--- mods/cms/trunk/modules/content/info/cms_content.php 2007-09-01 23:52:02 UTC (rev 35)
+++ mods/cms/trunk/modules/content/info/cms_content.php 2007-09-01 23:53:02 UTC (rev 36)
@@ -26,21 +26,28 @@
$parent_id = $db->sql_fetchfield('module_id');
$db->sql_freeresult($result);
- $sql = 'SELECT module_langname, module_mode, module_auth
- FROM ' . MODULES_TABLE . "
- WHERE parent_id = $parent_id
- AND module_dir = 'content'
- AND module_class = 'cms'
- AND module_mode <> ''
- ORDER BY left_id";
- $result = $db->sql_query($sql);
+ if($parent_id)
+ {
+ $sql = 'SELECT module_langname, module_mode, module_auth
+ FROM ' . MODULES_TABLE . "
+ WHERE parent_id = $parent_id
+ AND module_dir = 'content'
+ AND module_class = 'cms'
+ AND module_mode <> ''
+ ORDER BY left_id";
+ $result = $db->sql_query($sql);
- $modes_ary = array();
- while($row = $db->sql_fetchrow($result))
+ $modes_ary = array();
+ while($row = $db->sql_fetchrow($result))
+ {
+ $modes_ary[$row['module_mode']] = array('title' => $row['module_langname'], 'auth' => $row['module_auth'], 'cat' => array('CMS_CONTENT'));
+ }
+ $db->sql_freeresult($result);
+ }
+ else
{
- $modes_ary[$row['module_mode']] = array('title' => $row['module_langname'], 'auth' => $row['module_auth'], 'cat' => array('CMS_CONTENT'));
+ $modes_ary['news'] = array('title' => 'News', 'auth' => '', 'cat' => array('CMS_CONTENT'));
}
- $db->sql_freeresult($result);
return array(
'filename' => 'cms_content',
@@ -52,6 +59,30 @@
function install()
{
+ global $db, $phpbb_root_path, $phpEx;
+
+ include_once($phpbb_root_path . "modules/content/constants.$phpEx");
+
+ $mod_id = '';
+ $sql = 'SELECT module_id
+ FROM ' . MODULES_TABLE . "
+ WHERE module_mode = 'news'
+ AND module_dir = 'content'";
+ $result = $db->sql_query($sql);
+ $mod_id = $db->sql_fetchfield('module_id');
+ $db->sql_freeresult($result);
+
+ if($mod_id)
+ {
+ $time = time();
+ $sql_ary[] = 'INSERT INTO ' . CONTENT_TABLE . " VALUES (1, 'Welcome to phpbb3 CMS', $mod_id, '', '', 7, NULL, '', 'Congratulations! You have successfully installed the phpbb3 CMS. You may now configure your site as you wish. From the administrative control panel you can enable/disable modules and their blocks.\n\nEnjoy.', '', '', 7, '', 2, $time, 1, 0);";
+ $sql_ary[] = 'INSERT INTO ' . CONTENT_TYPES_TABLE . " VALUES ($mod_id, '', '', '', 0x613a343a7b733a353a227469746c65223b613a373a7b733a353a226c6162656c223b733a353a225469746c65223b733a343a2274797065223b733a313a2230223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a383a227265717569726564223b733a313a2231223b733a343a226e616d65223b733a353a227469746c65223b733a383a2276616c6964617465223b733a313a2230223b7d733a353a22696d616765223b613a373a7b733a353a226c6162656c223b733a353a22496d616765223b733a343a2274797065223b733a313a2230223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a343a226e616d65223b733a353a22696d616765223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d733a373a2273756d6d617279223b613a373a7b733a353a226c6162656c223b733a303a22223b733a343a2274797065223b733a313a2231223b733a343a226e616d65223b733a373a2273756d6d617279223b733a363a22746561736572223b733a313a2230223b733a343a22626f6479223b733a313a2230223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d733a373a22636f6e74656e74223b613a373a7b733a353a226c6162656c223b733a343a224e657773223b733a343a2274797065223b733a313a2232223b733a363a22746561736572223b733a313a2231223b733a343a22626f6479223b733a313a2231223b733a343a226e616d65223b733a373a22636f6e74656e74223b733a383a227265717569726564223b733a313a2230223b733a383a2276616c6964617465223b733a313a2230223b7d7d, 1, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0);";
+
+ foreach($sql_ary as $i => $sql)
+ {
+ $db->sql_query($sql);
+ }
+ }
}
function uninstall()
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-01 23:52:04
|
Revision: 35
http://thevr.svn.sourceforge.net/thevr/?rev=35&view=rev
Author: dachebodt
Date: 2007-09-01 16:52:02 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
updated to show mod viewonline
Modified Paths:
--------------
mods/cms/trunk/viewonline.php
Modified: mods/cms/trunk/viewonline.php
===================================================================
--- mods/cms/trunk/viewonline.php 2007-09-01 23:51:08 UTC (rev 34)
+++ mods/cms/trunk/viewonline.php 2007-09-01 23:52:02 UTC (rev 35)
@@ -1,452 +1,487 @@
-<?php
-/**
-*
-* @package phpBB3
-* @version $Id: viewonline.php,v 1.123 2007/08/15 17:28:31 acydburn Exp $
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
-*
-*/
-
-/**
-* @ignore
-*/
-define('IN_PHPBB', true);
-$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
-$phpEx = substr(strrchr(__FILE__, '.'), 1);
-include($phpbb_root_path . 'common.' . $phpEx);
-
-// Start session management
-$user->session_begin();
-$auth->acl($user->data);
-$user->setup('memberlist');
-
-// Get and set some variables
-$mode = request_var('mode', '');
-$session_id = request_var('s', '');
-$start = request_var('start', 0);
-$sort_key = request_var('sk', 'b');
-$sort_dir = request_var('sd', 'd');
-$show_guests= ($config['load_online_guests']) ? request_var('sg', 0) : 0;
-
-// Can this user view profiles/memberlist?
-if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))
-{
- if ($user->data['user_id'] != ANONYMOUS)
- {
- trigger_error('NO_VIEW_USERS');
- }
-
- login_box('', $user->lang['LOGIN_EXPLAIN_VIEWONLINE']);
-}
-
-$sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_JOINED'], 'c' => $user->lang['SORT_LOCATION']);
-$sort_key_sql = array('a' => 'u.username_clean', 'b' => 's.session_time', 'c' => 's.session_page');
-
-// Sorting and order
-if (!isset($sort_key_text[$sort_key]))
-{
- $sort_key = 'b';
-}
-
-$order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
-
-// Whois requested
-if ($mode == 'whois')
-{
- include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
-
- $sql = 'SELECT u.user_id, u.username, u.user_type, s.session_ip
- FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . " s
- WHERE s.session_id = '" . $db->sql_escape($session_id) . "'
- AND u.user_id = s.session_user_id";
- $result = $db->sql_query($sql);
-
- if ($row = $db->sql_fetchrow($result))
- {
- $whois = user_ipwhois($row['session_ip']);
-
- $whois = preg_replace('#(\s)([\w\-\._\+]+@[\w\-\.]+)(\s)#', '\1<a href="mailto:\2">\2</a>\3', $whois);
- $whois = preg_replace('#(\s)(http:/{2}[^\s]*)(\s)#', '\1<a href="\2">\2</a>\3', $whois);
-
- $template->assign_vars(array(
- 'WHOIS' => trim($whois))
- );
- }
- $db->sql_freeresult($result);
-
- // Output the page
- page_header($user->lang['WHO_IS_ONLINE']);
-
- $template->set_filenames(array(
- 'body' => 'viewonline_whois.html')
- );
- make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
-
- page_footer();
-}
-
-// Forum info
-$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
- FROM ' . FORUMS_TABLE . '
- ORDER BY left_id ASC';
-$result = $db->sql_query($sql, 600);
-
-$forum_data = array();
-while ($row = $db->sql_fetchrow($result))
-{
- $forum_data[$row['forum_id']] = $row;
-}
-$db->sql_freeresult($result);
-
-$guest_counter = 0;
-
-// Get number of online guests (if we do not display them)
-if (!$show_guests)
-{
- switch ($db->sql_layer)
- {
- case 'sqlite':
- $sql = 'SELECT COUNT(session_ip) as num_guests
- FROM (
- SELECT DISTINCT session_ip
- FROM ' . SESSIONS_TABLE . '
- WHERE session_user_id = ' . ANONYMOUS . '
- AND session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
- ')';
- break;
-
- default:
- $sql = 'SELECT COUNT(DISTINCT session_ip) as num_guests
- FROM ' . SESSIONS_TABLE . '
- WHERE session_user_id = ' . ANONYMOUS . '
- AND session_time >= ' . (time() - ($config['load_online_time'] * 60));
- break;
- }
- $result = $db->sql_query($sql);
- $guest_counter = (int) $db->sql_fetchfield('num_guests');
- $db->sql_freeresult($result);
-}
-
-// Get user list
-$sql = 'SELECT u.user_id, u.username, u.username_clean, u.user_type, u.user_colour, s.session_id, s.session_time, s.session_page, s.session_ip, s.session_browser, s.session_viewonline
- FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . ' s
- WHERE u.user_id = s.session_user_id
- AND s.session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
- ((!$show_guests) ? ' AND s.session_user_id <> ' . ANONYMOUS : '') . '
- ORDER BY ' . $order_by;
-$result = $db->sql_query($sql);
-
-$prev_id = $prev_ip = $user_list = array();
-$logged_visible_online = $logged_hidden_online = $counter = 0;
-
-while ($row = $db->sql_fetchrow($result))
-{
- if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
- {
- $view_online = $s_user_hidden = false;
- $user_colour = ($row['user_colour']) ? ' style="color:#' . $row['user_colour'] . '" class="username-coloured"' : '';
-
- $username_full = ($row['user_type'] != USER_IGNORE) ? get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']) : '<span' . $user_colour . '>' . $row['username'] . '</span>';
-
- if (!$row['session_viewonline'])
- {
- $view_online = ($auth->acl_get('u_viewonline')) ? true : false;
- $logged_hidden_online++;
-
- $username_full = '<em>' . $username_full . '</em>';
- $s_user_hidden = true;
- }
- else
- {
- $view_online = true;
- $logged_visible_online++;
- }
-
- $prev_id[$row['user_id']] = 1;
-
- if ($view_online)
- {
- $counter++;
- }
-
- if (!$view_online || $counter > $start + $config['topics_per_page'] || $counter <= $start)
- {
- continue;
- }
- }
- else if ($show_guests && $row['user_id'] == ANONYMOUS && !isset($prev_ip[$row['session_ip']]))
- {
- $prev_ip[$row['session_ip']] = 1;
- $guest_counter++;
- $counter++;
-
- if ($counter > $start + $config['topics_per_page'] || $counter <= $start)
- {
- continue;
- }
-
- $s_user_hidden = false;
- $username_full = get_username_string('full', $row['user_id'], $user->lang['GUEST']);
- }
- else
- {
- continue;
- }
-
- preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
- if (!sizeof($on_page))
- {
- $on_page[1] = '';
- }
-
- switch ($on_page[1])
- {
- case 'index':
- $location = $user->lang['INDEX'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- case 'adm/index':
- $location = $user->lang['ACP'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- case 'posting':
- case 'viewforum':
- case 'viewtopic':
- preg_match('#_f_=([0-9]+)x#i', $row['session_page'], $forum_id);
- $forum_id = (sizeof($forum_id)) ? (int) $forum_id[1] : 0;
-
- if ($forum_id && $auth->acl_get('f_list', $forum_id))
- {
- $location = '';
- $location_url = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id);
-
- if ($forum_data[$forum_id]['forum_type'] == FORUM_LINK)
- {
- $location = sprintf($user->lang['READING_LINK'], $forum_data[$forum_id]['forum_name']);
- break;
- }
-
- switch ($on_page[1])
- {
- case 'posting':
- preg_match('#mode=([a-z]+)#', $row['session_page'], $on_page);
-
- switch ($on_page[1])
- {
- case 'reply':
- case 'quote':
- $location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
- break;
-
- default:
- $location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
- break;
- }
- break;
-
- case 'viewtopic':
- $location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]['forum_name']);
- break;
-
- case 'viewforum':
- $location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]['forum_name']);
- break;
- }
- }
- else
- {
- $location = $user->lang['INDEX'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- }
- break;
-
- case 'search':
- $location = $user->lang['SEARCHING_FORUMS'];
- $location_url = append_sid("{$phpbb_root_path}search.$phpEx");
- break;
-
- case 'faq':
- $location = $user->lang['VIEWING_FAQ'];
- $location_url = append_sid("{$phpbb_root_path}faq.$phpEx");
- break;
-
- case 'viewonline':
- $location = $user->lang['VIEWING_ONLINE'];
- $location_url = append_sid("{$phpbb_root_path}viewonline.$phpEx");
- break;
-
- case 'memberlist':
- $location = (strpos($row['session_page'], 'mode=viewprofile') !== false) ? $user->lang['VIEWING_MEMBER_PROFILE'] : $user->lang['VIEWING_MEMBERS'];
- $location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
- break;
-
- case 'mcp':
- $location = $user->lang['VIEWING_MCP'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- case 'ucp':
- $location = $user->lang['VIEWING_UCP'];
-
- // Grab some common modules
- $url_params = array(
- 'mode=register' => 'VIEWING_REGISTER',
- 'i=pm&mode=compose' => 'POSTING_PRIVATE_MESSAGE',
- 'i=pm&' => 'VIEWING_PRIVATE_MESSAGES',
- 'i=profile&' => 'CHANGING_PROFILE',
- 'i=prefs&' => 'CHANGING_PREFERENCES',
- );
-
- foreach ($url_params as $param => $lang)
- {
- if (strpos($row['session_page'], $param) !== false)
- {
- $location = $user->lang[$lang];
- break;
- }
- }
-
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- case 'download':
- $location = $user->lang['DOWNLOADING_FILE'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- case 'report':
- $location = $user->lang['REPORTING_POST'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
-
- default:
- $location = $user->lang['INDEX'];
- $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
- break;
- }
-
- $template->assign_block_vars('user_row', array(
- 'USERNAME' => $row['username'],
- 'USERNAME_COLOUR' => $row['user_colour'],
- 'USERNAME_FULL' => $username_full,
- 'LASTUPDATE' => $user->format_date($row['session_time']),
- 'FORUM_LOCATION' => $location,
- 'USER_IP' => ($auth->acl_get('a_')) ? (($mode == 'lookup' && $session_id == $row['session_id']) ? gethostbyaddr($row['session_ip']) : $row['session_ip']) : '',
- 'USER_BROWSER' => ($auth->acl_get('a_user')) ? $row['session_browser'] : '',
-
- 'U_USER_PROFILE' => ($row['user_type'] != USER_IGNORE) ? get_username_string('profile', $row['user_id'], '') : '',
- 'U_USER_IP' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=lookup' . (($mode != 'lookup' || $row['session_id'] != $session_id) ? '&s=' . $row['session_id'] : '') . "&sg=$show_guests&start=$start&sk=$sort_key&sd=$sort_dir"),
- 'U_WHOIS' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=whois&s=' . $row['session_id']),
- 'U_FORUM_LOCATION' => $location_url,
-
- 'S_USER_HIDDEN' => $s_user_hidden,
- 'S_GUEST' => ($row['user_id'] == ANONYMOUS) ? true : false,
- 'S_USER_TYPE' => $row['user_type'],
- ));
-}
-$db->sql_freeresult($result);
-unset($prev_id, $prev_ip);
-
-// Generate reg/hidden/guest online text
-$vars_online = array(
- 'REG' => array('logged_visible_online', 'l_r_user_s'),
- 'HIDDEN'=> array('logged_hidden_online', 'l_h_user_s'),
- 'GUEST' => array('guest_counter', 'l_g_user_s')
-);
-
-foreach ($vars_online as $l_prefix => $var_ary)
-{
- switch ($$var_ary[0])
- {
- case 0:
- $$var_ary[1] = $user->lang[$l_prefix . '_USERS_ZERO_ONLINE'];
- break;
-
- case 1:
- $$var_ary[1] = $user->lang[$l_prefix . '_USER_ONLINE'];
- break;
-
- default:
- $$var_ary[1] = $user->lang[$l_prefix . '_USERS_ONLINE'];
- break;
- }
-}
-unset($vars_online);
-
-$pagination = generate_pagination(append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir"), $counter, $config['topics_per_page'], $start);
-
-// Grab group details for legend display
-if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
-{
- $sql = 'SELECT group_id, group_name, group_colour, group_type
- FROM ' . GROUPS_TABLE . '
- WHERE group_legend = 1
- ORDER BY group_name ASC';
-}
-else
-{
- $sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
- FROM ' . GROUPS_TABLE . ' g
- LEFT JOIN ' . USER_GROUP_TABLE . ' ug
- ON (
- g.group_id = ug.group_id
- AND ug.user_id = ' . $user->data['user_id'] . '
- AND ug.user_pending = 0
- )
- WHERE g.group_legend = 1
- AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
- ORDER BY g.group_name ASC';
-}
-$result = $db->sql_query($sql);
-
-$legend = '';
-while ($row = $db->sql_fetchrow($result))
-{
- if ($row['group_name'] == 'BOTS')
- {
- $legend .= (($legend != '') ? ', ' : '') . '<span style="color:#' . $row['group_colour'] . '">' . $user->lang['G_BOTS'] . '</span>';
- }
- else
- {
- $legend .= (($legend != '') ? ', ' : '') . '<a style="color:#' . $row['group_colour'] . '" href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</a>';
- }
-}
-$db->sql_freeresult($result);
-
-// Refreshing the page every 60 seconds...
-meta_refresh(60, append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir&start=$start"));
-
-// Send data to template
-$template->assign_vars(array(
- 'TOTAL_REGISTERED_USERS_ONLINE' => sprintf($l_r_user_s, $logged_visible_online) . sprintf($l_h_user_s, $logged_hidden_online),
- 'TOTAL_GUEST_USERS_ONLINE' => sprintf($l_g_user_s, $guest_counter),
- 'LEGEND' => $legend,
- 'PAGINATION' => $pagination,
- 'PAGE_NUMBER' => on_page($counter, $config['topics_per_page'], $start),
-
- 'U_SORT_USERNAME' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=a&sd=' . (($sort_key == 'a' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
- 'U_SORT_UPDATED' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=b&sd=' . (($sort_key == 'b' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
- 'U_SORT_LOCATION' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=c&sd=' . (($sort_key == 'c' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
-
- 'U_SWITCH_GUEST_DISPLAY' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sg=' . ((int) !$show_guests)),
- 'L_SWITCH_GUEST_DISPLAY' => ($show_guests) ? $user->lang['HIDE_GUESTS'] : $user->lang['DISPLAY_GUESTS'],
- 'S_SWITCH_GUEST_DISPLAY' => ($config['load_online_guests']) ? true : false)
-);
-
-// We do not need to load the who is online box here. ;)
-$config['load_online'] = false;
-
-// Output the page
-page_header($user->lang['WHO_IS_ONLINE']);
-
-$template->set_filenames(array(
- 'body' => 'viewonline_body.html')
-);
-make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
-
-page_footer();
-
+<?php
+/**
+*
+* @package phpBB3
+* @version $Id: viewonline.php,v 1.123 2007/08/15 17:28:31 acydburn Exp $
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* @ignore
+*/
+define('IN_PHPBB', true);
+$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
+$phpEx = substr(strrchr(__FILE__, '.'), 1);
+include($phpbb_root_path . 'common.' . $phpEx);
+
+// Start session management
+$user->session_begin();
+$auth->acl($user->data);
+$user->setup('memberlist');
+
+// Get and set some variables
+$mode = request_var('mode', '');
+$session_id = request_var('s', '');
+$start = request_var('start', 0);
+$sort_key = request_var('sk', 'b');
+$sort_dir = request_var('sd', 'd');
+$show_guests= ($config['load_online_guests']) ? request_var('sg', 0) : 0;
+
+// Can this user view profiles/memberlist?
+if (!$auth->acl_gets('u_viewprofile', 'a_user', 'a_useradd', 'a_userdel'))
+{
+ if ($user->data['user_id'] != ANONYMOUS)
+ {
+ trigger_error('NO_VIEW_USERS');
+ }
+
+ login_box('', $user->lang['LOGIN_EXPLAIN_VIEWONLINE']);
+}
+
+$sort_key_text = array('a' => $user->lang['SORT_USERNAME'], 'b' => $user->lang['SORT_JOINED'], 'c' => $user->lang['SORT_LOCATION']);
+$sort_key_sql = array('a' => 'u.username_clean', 'b' => 's.session_time', 'c' => 's.session_page');
+
+// Sorting and order
+if (!isset($sort_key_text[$sort_key]))
+{
+ $sort_key = 'b';
+}
+
+$order_by = $sort_key_sql[$sort_key] . ' ' . (($sort_dir == 'a') ? 'ASC' : 'DESC');
+
+// Whois requested
+if ($mode == 'whois')
+{
+ include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
+
+ $sql = 'SELECT u.user_id, u.username, u.user_type, s.session_ip
+ FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . " s
+ WHERE s.session_id = '" . $db->sql_escape($session_id) . "'
+ AND u.user_id = s.session_user_id";
+ $result = $db->sql_query($sql);
+
+ if ($row = $db->sql_fetchrow($result))
+ {
+ $whois = user_ipwhois($row['session_ip']);
+
+ $whois = preg_replace('#(\s)([\w\-\._\+]+@[\w\-\.]+)(\s)#', '\1<a href="mailto:\2">\2</a>\3', $whois);
+ $whois = preg_replace('#(\s)(http:/{2}[^\s]*)(\s)#', '\1<a href="\2">\2</a>\3', $whois);
+
+ $template->assign_vars(array(
+ 'WHOIS' => trim($whois))
+ );
+ }
+ $db->sql_freeresult($result);
+
+ // Output the page
+ page_header($user->lang['WHO_IS_ONLINE']);
+
+ $template->set_filenames(array(
+ 'body' => 'viewonline_whois.html')
+ );
+ make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
+
+ page_footer();
+}
+
+// Forum info
+$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
+ FROM ' . FORUMS_TABLE . '
+ ORDER BY left_id ASC';
+$result = $db->sql_query($sql, 600);
+
+$forum_data = array();
+while ($row = $db->sql_fetchrow($result))
+{
+ $forum_data[$row['forum_id']] = $row;
+}
+$db->sql_freeresult($result);
+
+$guest_counter = 0;
+
+// Get number of online guests (if we do not display them)
+if (!$show_guests)
+{
+ switch ($db->sql_layer)
+ {
+ case 'sqlite':
+ $sql = 'SELECT COUNT(session_ip) as num_guests
+ FROM (
+ SELECT DISTINCT session_ip
+ FROM ' . SESSIONS_TABLE . '
+ WHERE session_user_id = ' . ANONYMOUS . '
+ AND session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
+ ')';
+ break;
+
+ default:
+ $sql = 'SELECT COUNT(DISTINCT session_ip) as num_guests
+ FROM ' . SESSIONS_TABLE . '
+ WHERE session_user_id = ' . ANONYMOUS . '
+ AND session_time >= ' . (time() - ($config['load_online_time'] * 60));
+ break;
+ }
+ $result = $db->sql_query($sql);
+ $guest_counter = (int) $db->sql_fetchfield('num_guests');
+ $db->sql_freeresult($result);
+}
+
+if($config['cms_enabled'])
+{
+ foreach($cms_modules as $i => $mod)
+ {
+ $user->add_mod_lang(array($mod => 'common'));
+ }
+
+ $sql = 'SELECT module_id, module_mode, module_langname, module_dir
+ FROM ' . MODULES_TABLE . "
+ WHERE module_class = 'cms'
+ AND module_dir <> ''
+ AND module_enabled = 1";
+ $result = $db->sql_query($sql);
+
+ $module_data = array();
+ while($row = $db->sql_fetchrow($result))
+ {
+ $module_data['id'][$row['module_id']] = $row;
+
+ if($row['module_mode'])
+ {
+ $module_data['mode'][$row['module_mode']] = $row;
+ }
+ }
+}
+
+// Get user list
+$sql = 'SELECT u.user_id, u.username, u.username_clean, u.user_type, u.user_colour, s.session_id, s.session_time, s.session_page, s.session_ip, s.session_browser, s.session_viewonline
+ FROM ' . USERS_TABLE . ' u, ' . SESSIONS_TABLE . ' s
+ WHERE u.user_id = s.session_user_id
+ AND s.session_time >= ' . (time() - ($config['load_online_time'] * 60)) .
+ ((!$show_guests) ? ' AND s.session_user_id <> ' . ANONYMOUS : '') . '
+ ORDER BY ' . $order_by;
+$result = $db->sql_query($sql);
+
+$prev_id = $prev_ip = $user_list = array();
+$logged_visible_online = $logged_hidden_online = $counter = 0;
+
+while ($row = $db->sql_fetchrow($result))
+{
+ if ($row['user_id'] != ANONYMOUS && !isset($prev_id[$row['user_id']]))
+ {
+ $view_online = $s_user_hidden = false;
+ $user_colour = ($row['user_colour']) ? ' style="color:#' . $row['user_colour'] . '" class="username-coloured"' : '';
+
+ $username_full = ($row['user_type'] != USER_IGNORE) ? get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']) : '<span' . $user_colour . '>' . $row['username'] . '</span>';
+
+ if (!$row['session_viewonline'])
+ {
+ $view_online = ($auth->acl_get('u_viewonline')) ? true : false;
+ $logged_hidden_online++;
+
+ $username_full = '<em>' . $username_full . '</em>';
+ $s_user_hidden = true;
+ }
+ else
+ {
+ $view_online = true;
+ $logged_visible_online++;
+ }
+
+ $prev_id[$row['user_id']] = 1;
+
+ if ($view_online)
+ {
+ $counter++;
+ }
+
+ if (!$view_online || $counter > $start + $config['topics_per_page'] || $counter <= $start)
+ {
+ continue;
+ }
+ }
+ else if ($show_guests && $row['user_id'] == ANONYMOUS && !isset($prev_ip[$row['session_ip']]))
+ {
+ $prev_ip[$row['session_ip']] = 1;
+ $guest_counter++;
+ $counter++;
+
+ if ($counter > $start + $config['topics_per_page'] || $counter <= $start)
+ {
+ continue;
+ }
+
+ $s_user_hidden = false;
+ $username_full = get_username_string('full', $row['user_id'], $user->lang['GUEST']);
+ }
+ else
+ {
+ continue;
+ }
+
+ preg_match('#^([a-z/]+)#i', $row['session_page'], $on_page);
+ if (!sizeof($on_page))
+ {
+ $on_page[1] = '';
+ }
+
+ switch ($on_page[1])
+ {
+ case 'index':
+ $location = $user->lang['INDEX'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+
+ if($config['cms_enabled'])
+ {
+ $data = cms_viewonline($row['session_page']);
+ $location = $data['page'];
+ $location_url = $data['page_url'];
+ }
+
+ break;
+
+ case 'adm/index':
+ $location = $user->lang['ACP'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+
+ case 'posting':
+ case 'viewforum':
+ case 'viewtopic':
+ preg_match('#_f_=([0-9]+)x#i', $row['session_page'], $forum_id);
+ $forum_id = (sizeof($forum_id)) ? (int) $forum_id[1] : 0;
+
+ if ($forum_id && $auth->acl_get('f_list', $forum_id))
+ {
+ $location = '';
+ $location_url = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id);
+
+ if ($forum_data[$forum_id]['forum_type'] == FORUM_LINK)
+ {
+ $location = sprintf($user->lang['READING_LINK'], $forum_data[$forum_id]['forum_name']);
+ break;
+ }
+
+ switch ($on_page[1])
+ {
+ case 'posting':
+ preg_match('#mode=([a-z]+)#', $row['session_page'], $on_page);
+
+ switch ($on_page[1])
+ {
+ case 'reply':
+ case 'quote':
+ $location = sprintf($user->lang['REPLYING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
+ break;
+
+ default:
+ $location = sprintf($user->lang['POSTING_MESSAGE'], $forum_data[$forum_id]['forum_name']);
+ break;
+ }
+ break;
+
+ case 'viewtopic':
+ $location = sprintf($user->lang['READING_TOPIC'], $forum_data[$forum_id]['forum_name']);
+ break;
+
+ case 'viewforum':
+ $location = sprintf($user->lang['READING_FORUM'], $forum_data[$forum_id]['forum_name']);
+ break;
+ }
+ }
+ else
+ {
+ $location = $user->lang['INDEX'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ }
+ break;
+
+ case 'search':
+ $location = $user->lang['SEARCHING_FORUMS'];
+ $location_url = append_sid("{$phpbb_root_path}search.$phpEx");
+ break;
+
+ case 'faq':
+ $location = $user->lang['VIEWING_FAQ'];
+ $location_url = append_sid("{$phpbb_root_path}faq.$phpEx");
+ break;
+
+ case 'viewonline':
+ $location = $user->lang['VIEWING_ONLINE'];
+ $location_url = append_sid("{$phpbb_root_path}viewonline.$phpEx");
+ break;
+
+ case 'memberlist':
+ $location = (strpos($row['session_page'], 'mode=viewprofile') !== false) ? $user->lang['VIEWING_MEMBER_PROFILE'] : $user->lang['VIEWING_MEMBERS'];
+ $location_url = append_sid("{$phpbb_root_path}memberlist.$phpEx");
+ break;
+
+ case 'mcp':
+ $location = $user->lang['VIEWING_MCP'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+
+ case 'ucp':
+ $location = $user->lang['VIEWING_UCP'];
+
+ // Grab some common modules
+ $url_params = array(
+ 'mode=register' => 'VIEWING_REGISTER',
+ 'i=pm&mode=compose' => 'POSTING_PRIVATE_MESSAGE',
+ 'i=pm&' => 'VIEWING_PRIVATE_MESSAGES',
+ 'i=profile&' => 'CHANGING_PROFILE',
+ 'i=prefs&' => 'CHANGING_PREFERENCES',
+ );
+
+ foreach ($url_params as $param => $lang)
+ {
+ if (strpos($row['session_page'], $param) !== false)
+ {
+ $location = $user->lang[$lang];
+ break;
+ }
+ }
+
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+
+ case 'download':
+ $location = $user->lang['DOWNLOADING_FILE'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+
+ case 'report':
+ $location = $user->lang['REPORTING_POST'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+
+ default:
+ $location = $user->lang['INDEX'];
+ $location_url = append_sid("{$phpbb_root_path}index.$phpEx");
+ break;
+ }
+
+ $template->assign_block_vars('user_row', array(
+ 'USERNAME' => $row['username'],
+ 'USERNAME_COLOUR' => $row['user_colour'],
+ 'USERNAME_FULL' => $username_full,
+ 'LASTUPDATE' => $user->format_date($row['session_time']),
+ 'FORUM_LOCATION' => $location,
+ 'USER_IP' => ($auth->acl_get('a_')) ? (($mode == 'lookup' && $session_id == $row['session_id']) ? gethostbyaddr($row['session_ip']) : $row['session_ip']) : '',
+ 'USER_BROWSER' => ($auth->acl_get('a_user')) ? $row['session_browser'] : '',
+
+ 'U_USER_PROFILE' => ($row['user_type'] != USER_IGNORE) ? get_username_string('profile', $row['user_id'], '') : '',
+ 'U_USER_IP' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=lookup' . (($mode != 'lookup' || $row['session_id'] != $session_id) ? '&s=' . $row['session_id'] : '') . "&sg=$show_guests&start=$start&sk=$sort_key&sd=$sort_dir"),
+ 'U_WHOIS' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'mode=whois&s=' . $row['session_id']),
+ 'U_FORUM_LOCATION' => $location_url,
+
+ 'S_USER_HIDDEN' => $s_user_hidden,
+ 'S_GUEST' => ($row['user_id'] == ANONYMOUS) ? true : false,
+ 'S_USER_TYPE' => $row['user_type'],
+ ));
+}
+$db->sql_freeresult($result);
+unset($prev_id, $prev_ip);
+
+// Generate reg/hidden/guest online text
+$vars_online = array(
+ 'REG' => array('logged_visible_online', 'l_r_user_s'),
+ 'HIDDEN'=> array('logged_hidden_online', 'l_h_user_s'),
+ 'GUEST' => array('guest_counter', 'l_g_user_s')
+);
+
+foreach ($vars_online as $l_prefix => $var_ary)
+{
+ switch ($$var_ary[0])
+ {
+ case 0:
+ $$var_ary[1] = $user->lang[$l_prefix . '_USERS_ZERO_ONLINE'];
+ break;
+
+ case 1:
+ $$var_ary[1] = $user->lang[$l_prefix . '_USER_ONLINE'];
+ break;
+
+ default:
+ $$var_ary[1] = $user->lang[$l_prefix . '_USERS_ONLINE'];
+ break;
+ }
+}
+unset($vars_online);
+unset($module_data);
+
+$pagination = generate_pagination(append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir"), $counter, $config['topics_per_page'], $start);
+
+// Grab group details for legend display
+if ($auth->acl_gets('a_group', 'a_groupadd', 'a_groupdel'))
+{
+ $sql = 'SELECT group_id, group_name, group_colour, group_type
+ FROM ' . GROUPS_TABLE . '
+ WHERE group_legend = 1
+ ORDER BY group_name ASC';
+}
+else
+{
+ $sql = 'SELECT g.group_id, g.group_name, g.group_colour, g.group_type
+ FROM ' . GROUPS_TABLE . ' g
+ LEFT JOIN ' . USER_GROUP_TABLE . ' ug
+ ON (
+ g.group_id = ug.group_id
+ AND ug.user_id = ' . $user->data['user_id'] . '
+ AND ug.user_pending = 0
+ )
+ WHERE g.group_legend = 1
+ AND (g.group_type <> ' . GROUP_HIDDEN . ' OR ug.user_id = ' . $user->data['user_id'] . ')
+ ORDER BY g.group_name ASC';
+}
+$result = $db->sql_query($sql);
+
+$legend = '';
+while ($row = $db->sql_fetchrow($result))
+{
+ if ($row['group_name'] == 'BOTS')
+ {
+ $legend .= (($legend != '') ? ', ' : '') . '<span style="color:#' . $row['group_colour'] . '">' . $user->lang['G_BOTS'] . '</span>';
+ }
+ else
+ {
+ $legend .= (($legend != '') ? ', ' : '') . '<a style="color:#' . $row['group_colour'] . '" href="' . append_sid("{$phpbb_root_path}memberlist.$phpEx", 'mode=group&g=' . $row['group_id']) . '">' . (($row['group_type'] == GROUP_SPECIAL) ? $user->lang['G_' . $row['group_name']] : $row['group_name']) . '</a>';
+ }
+}
+$db->sql_freeresult($result);
+
+// Refreshing the page every 60 seconds...
+meta_refresh(60, append_sid("{$phpbb_root_path}viewonline.$phpEx", "sg=$show_guests&sk=$sort_key&sd=$sort_dir&start=$start"));
+
+// Send data to template
+$template->assign_vars(array(
+ 'TOTAL_REGISTERED_USERS_ONLINE' => sprintf($l_r_user_s, $logged_visible_online) . sprintf($l_h_user_s, $logged_hidden_online),
+ 'TOTAL_GUEST_USERS_ONLINE' => sprintf($l_g_user_s, $guest_counter),
+ 'LEGEND' => $legend,
+ 'PAGINATION' => $pagination,
+ 'PAGE_NUMBER' => on_page($counter, $config['topics_per_page'], $start),
+
+ 'U_SORT_USERNAME' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=a&sd=' . (($sort_key == 'a' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
+ 'U_SORT_UPDATED' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=b&sd=' . (($sort_key == 'b' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
+ 'U_SORT_LOCATION' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sk=c&sd=' . (($sort_key == 'c' && $sort_dir == 'a') ? 'd' : 'a') . '&sg=' . ((int) $show_guests)),
+
+ 'U_SWITCH_GUEST_DISPLAY' => append_sid("{$phpbb_root_path}viewonline.$phpEx", 'sg=' . ((int) !$show_guests)),
+ 'L_SWITCH_GUEST_DISPLAY' => ($show_guests) ? $user->lang['HIDE_GUESTS'] : $user->lang['DISPLAY_GUESTS'],
+ 'S_SWITCH_GUEST_DISPLAY' => ($config['load_online_guests']) ? true : false)
+);
+
+// We do not need to load the who is online box here. ;)
+$config['load_online'] = false;
+
+// Output the page
+page_header($user->lang['WHO_IS_ONLINE']);
+
+$template->set_filenames(array(
+ 'body' => 'viewonline_body.html')
+);
+make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
+
+page_footer();
+
?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <dac...@us...> - 2007-09-01 23:51:13
|
Revision: 34
http://thevr.svn.sourceforge.net/thevr/?rev=34&view=rev
Author: dachebodt
Date: 2007-09-01 16:51:08 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
updated for cs module
Modified Paths:
--------------
mods/cms/trunk/memberlist.php
Modified: mods/cms/trunk/memberlist.php
===================================================================
--- mods/cms/trunk/memberlist.php 2007-09-01 22:14:22 UTC (rev 33)
+++ mods/cms/trunk/memberlist.php 2007-09-01 23:51:08 UTC (rev 34)
@@ -594,6 +594,30 @@
$page_title = sprintf($user->lang['VIEWING_PROFILE'], $member['username']);
$template_html = 'memberlist_view.html';
+ // Now generate page tilte
+ $page_title = sprintf($user->lang['VIEWING_PROFILE'], $member['username']);
+ $template_html = 'memberlist_view.html';
+
+ // Begin Custom style mod
+ include_once($phpbb_root_path . 'includes/functions_module.' . $phpEx);
+ $module = new p_master();
+ $module->list_modules('ucp');
+ $module->set_active('cs');
+
+ if($member['custom_style'] && $module->active_module)
+ {
+ include_once($phpbb_root_path . 'modules/cs/custom_style.' . $phpEx);
+
+ $mod_data = array();
+ $cp = new custom_style('user_id', $member['custom_style']);
+ $cp->get_auth_level_user();
+ $cp->display_custom_style();
+ $template_html = 'custom_style_view.html';
+ unset($mod_data);
+ }
+ unset($module);
+ // End Custom style mod
+
break;
case 'email':
@@ -1119,6 +1143,26 @@
$sql_where .= " AND ug.user_pending = 0 AND u.user_id = ug.user_id AND ug.group_id = $group_id";
$sql_where_data = " AND u.user_id = ug.user_id AND ug.group_id = $group_id";
+
+ // Begin Custom style mod
+ include_once($phpbb_root_path . 'includes/functions_module.' . $phpEx);
+ $module = new p_master();
+ $module->list_modules('gcp');
+ $module->set_active('cs');
+
+ if($group_row['custom_style'] && $module->active_module)
+ {
+ include_once($phpbb_root_path . 'modules/cs/custom_style.' . $phpEx);
+
+ $mod_data = array();
+ $cp = new custom_style('group_id', $group_row['custom_style']);
+ $cp->get_auth_level_group();
+ $cp->display_custom_style();
+ $template_html = 'custom_style_view.html';
+ unset($mod_data);
+ }
+ unset($module);
+ // End custom style
}
// Sorting and order
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-09-01 22:14:32
|
Revision: 33
http://thevr.svn.sourceforge.net/thevr/?rev=33&view=rev
Author: Yautja_cetanu
Date: 2007-09-01 15:14:22 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Uploading Blitzes CMS mod
Added Paths:
-----------
mods/cms/trunk/.htaccess
mods/cms/trunk/_config.php
mods/cms/trunk/_install/
mods/cms/trunk/_install/convertors/
mods/cms/trunk/_install/convertors/convert_phpbb20.php
mods/cms/trunk/_install/convertors/functions_phpbb20.php
mods/cms/trunk/_install/data/
mods/cms/trunk/_install/data/confusables.php
mods/cms/trunk/_install/data/new_normalizer.php
mods/cms/trunk/_install/database_update.php
mods/cms/trunk/_install/index.php
mods/cms/trunk/_install/install_convert.php
mods/cms/trunk/_install/install_install.php
mods/cms/trunk/_install/install_main.php
mods/cms/trunk/_install/phpinfo.php
mods/cms/trunk/_install/schemas/
mods/cms/trunk/_install/schemas/firebird_schema.sql
mods/cms/trunk/_install/schemas/index.htm
mods/cms/trunk/_install/schemas/mssql_schema.sql
mods/cms/trunk/_install/schemas/mysql_40_schema.sql
mods/cms/trunk/_install/schemas/mysql_41_schema.sql
mods/cms/trunk/_install/schemas/oracle_schema.sql
mods/cms/trunk/_install/schemas/postgres_schema.sql
mods/cms/trunk/_install/schemas/schema_data.sql
mods/cms/trunk/_install/schemas/sqlite_schema.sql
mods/cms/trunk/adm/
mods/cms/trunk/adm/images/
mods/cms/trunk/adm/images/arrow_down.gif
mods/cms/trunk/adm/images/arrow_left.gif
mods/cms/trunk/adm/images/arrow_right.gif
mods/cms/trunk/adm/images/arrow_up.gif
mods/cms/trunk/adm/images/bg_button.gif
mods/cms/trunk/adm/images/bg_hash1.gif
mods/cms/trunk/adm/images/bg_hash2.gif
mods/cms/trunk/adm/images/bg_hash3.gif
mods/cms/trunk/adm/images/bg_hash4.gif
mods/cms/trunk/adm/images/bg_header.gif
mods/cms/trunk/adm/images/bg_header.jpg
mods/cms/trunk/adm/images/bg_tabs1.gif
mods/cms/trunk/adm/images/bg_tabs2.gif
mods/cms/trunk/adm/images/bg_tabs_alt1.gif
mods/cms/trunk/adm/images/bg_tabs_alt2.gif
mods/cms/trunk/adm/images/cellpic3.gif
mods/cms/trunk/adm/images/corners_left.gif
mods/cms/trunk/adm/images/corners_left2.gif
mods/cms/trunk/adm/images/corners_right.gif
mods/cms/trunk/adm/images/corners_right2.gif
mods/cms/trunk/adm/images/file_conflict.gif
mods/cms/trunk/adm/images/file_modified.gif
mods/cms/trunk/adm/images/file_new.gif
mods/cms/trunk/adm/images/file_new_conflict.gif
mods/cms/trunk/adm/images/file_not_modified.gif
mods/cms/trunk/adm/images/file_up_to_date.gif
mods/cms/trunk/adm/images/gradient2b.gif
mods/cms/trunk/adm/images/icon_delete.gif
mods/cms/trunk/adm/images/icon_delete_disabled.gif
mods/cms/trunk/adm/images/icon_down.gif
mods/cms/trunk/adm/images/icon_down_disabled.gif
mods/cms/trunk/adm/images/icon_edit.gif
mods/cms/trunk/adm/images/icon_edit_disabled.gif
mods/cms/trunk/adm/images/icon_folder.gif
mods/cms/trunk/adm/images/icon_folder_link.gif
mods/cms/trunk/adm/images/icon_folder_lock.gif
mods/cms/trunk/adm/images/icon_subfolder.gif
mods/cms/trunk/adm/images/icon_sync.gif
mods/cms/trunk/adm/images/icon_sync_disabled.gif
mods/cms/trunk/adm/images/icon_trace.gif
mods/cms/trunk/adm/images/icon_up.gif
mods/cms/trunk/adm/images/icon_up_disabled.gif
mods/cms/trunk/adm/images/innerbox_bg.gif
mods/cms/trunk/adm/images/no_avatar.gif
mods/cms/trunk/adm/images/no_image.png
mods/cms/trunk/adm/images/phpbb_logo.gif
mods/cms/trunk/adm/images/progress_bar.gif
mods/cms/trunk/adm/images/spacer.gif
mods/cms/trunk/adm/images/toggle.gif
mods/cms/trunk/adm/index.php
mods/cms/trunk/adm/style/
mods/cms/trunk/adm/style/acp_attachments.html
mods/cms/trunk/adm/style/acp_ban.html
mods/cms/trunk/adm/style/acp_bbcodes.html
mods/cms/trunk/adm/style/acp_board.html
mods/cms/trunk/adm/style/acp_bots.html
mods/cms/trunk/adm/style/acp_captcha.html
mods/cms/trunk/adm/style/acp_database.html
mods/cms/trunk/adm/style/acp_disallow.html
mods/cms/trunk/adm/style/acp_email.html
mods/cms/trunk/adm/style/acp_forums.html
mods/cms/trunk/adm/style/acp_groups.html
mods/cms/trunk/adm/style/acp_icons.html
mods/cms/trunk/adm/style/acp_inactive.html
mods/cms/trunk/adm/style/acp_jabber.html
mods/cms/trunk/adm/style/acp_language.html
mods/cms/trunk/adm/style/acp_logs.html
mods/cms/trunk/adm/style/acp_main.html
mods/cms/trunk/adm/style/acp_mods.html
mods/cms/trunk/adm/style/acp_modules.html
mods/cms/trunk/adm/style/acp_permission_roles.html
mods/cms/trunk/adm/style/acp_permissions.html
mods/cms/trunk/adm/style/acp_php_info.html
mods/cms/trunk/adm/style/acp_profile.html
mods/cms/trunk/adm/style/acp_prune_forums.html
mods/cms/trunk/adm/style/acp_prune_users.html
mods/cms/trunk/adm/style/acp_ranks.html
mods/cms/trunk/adm/style/acp_reasons.html
mods/cms/trunk/adm/style/acp_search.html
mods/cms/trunk/adm/style/acp_styles.html
mods/cms/trunk/adm/style/acp_update.html
mods/cms/trunk/adm/style/acp_users.html
mods/cms/trunk/adm/style/acp_users_avatar.html
mods/cms/trunk/adm/style/acp_users_feedback.html
mods/cms/trunk/adm/style/acp_users_overview.html
mods/cms/trunk/adm/style/acp_users_prefs.html
mods/cms/trunk/adm/style/acp_users_profile.html
mods/cms/trunk/adm/style/acp_users_signature.html
mods/cms/trunk/adm/style/acp_words.html
mods/cms/trunk/adm/style/admin.css
mods/cms/trunk/adm/style/colour_swatch.html
mods/cms/trunk/adm/style/confirm_body.html
mods/cms/trunk/adm/style/confirm_body_prune.html
mods/cms/trunk/adm/style/custom_profile_fields.html
mods/cms/trunk/adm/style/editor.js
mods/cms/trunk/adm/style/install_convert.html
mods/cms/trunk/adm/style/install_error.html
mods/cms/trunk/adm/style/install_footer.html
mods/cms/trunk/adm/style/install_header.html
mods/cms/trunk/adm/style/install_install.html
mods/cms/trunk/adm/style/install_main.html
mods/cms/trunk/adm/style/install_update.html
mods/cms/trunk/adm/style/install_update_diff.html
mods/cms/trunk/adm/style/message_body.html
mods/cms/trunk/adm/style/mod_admin.html
mods/cms/trunk/adm/style/overall_footer.html
mods/cms/trunk/adm/style/overall_header.html
mods/cms/trunk/adm/style/permission_mask.html
mods/cms/trunk/adm/style/permission_roles_mask.html
mods/cms/trunk/adm/style/permission_trace.html
mods/cms/trunk/adm/style/permissions.js
mods/cms/trunk/adm/style/progress_bar.html
mods/cms/trunk/adm/style/simple_body.html
mods/cms/trunk/adm/style/simple_footer.html
mods/cms/trunk/adm/style/simple_header.html
mods/cms/trunk/adm/style/tooltip.js
mods/cms/trunk/adm/style/viewsource.html
mods/cms/trunk/adm/swatch.php
mods/cms/trunk/cache/
mods/cms/trunk/cache/.htaccess
mods/cms/trunk/cache/index.htm
mods/cms/trunk/cms_install.php
mods/cms/trunk/common.php
mods/cms/trunk/cron.php
mods/cms/trunk/docs/
mods/cms/trunk/docs/AUTHORS
mods/cms/trunk/docs/CHANGELOG.html
mods/cms/trunk/docs/COPYING
mods/cms/trunk/docs/FAQ.html
mods/cms/trunk/docs/INSTALL.html
mods/cms/trunk/docs/README.html
mods/cms/trunk/docs/auth_api.html
mods/cms/trunk/docs/coding-guidelines.html
mods/cms/trunk/docs/header_bg.jpg
mods/cms/trunk/docs/header_left.jpg
mods/cms/trunk/download.php
mods/cms/trunk/faq.php
mods/cms/trunk/files/
mods/cms/trunk/files/.htaccess
mods/cms/trunk/files/index.htm
mods/cms/trunk/images/
mods/cms/trunk/images/avatars/
mods/cms/trunk/images/avatars/gallery/
mods/cms/trunk/images/avatars/gallery/index.htm
mods/cms/trunk/images/avatars/index.htm
mods/cms/trunk/images/avatars/upload/
mods/cms/trunk/images/avatars/upload/.htaccess
mods/cms/trunk/images/avatars/upload/index.htm
mods/cms/trunk/images/icons/
mods/cms/trunk/images/icons/index.htm
mods/cms/trunk/images/icons/misc/
mods/cms/trunk/images/icons/misc/fire.gif
mods/cms/trunk/images/icons/misc/heart.gif
mods/cms/trunk/images/icons/misc/index.htm
mods/cms/trunk/images/icons/misc/radioactive.gif
mods/cms/trunk/images/icons/misc/star.gif
mods/cms/trunk/images/icons/misc/thinking.gif
mods/cms/trunk/images/icons/smile/
mods/cms/trunk/images/icons/smile/alert.gif
mods/cms/trunk/images/icons/smile/index.htm
mods/cms/trunk/images/icons/smile/info.gif
mods/cms/trunk/images/icons/smile/mrgreen.gif
mods/cms/trunk/images/icons/smile/question.gif
mods/cms/trunk/images/icons/smile/redface.gif
mods/cms/trunk/images/index.htm
mods/cms/trunk/images/ranks/
mods/cms/trunk/images/ranks/index.htm
mods/cms/trunk/images/smilies/
mods/cms/trunk/images/smilies/icon_arrow.gif
mods/cms/trunk/images/smilies/icon_cool.gif
mods/cms/trunk/images/smilies/icon_cry.gif
mods/cms/trunk/images/smilies/icon_e_biggrin.gif
mods/cms/trunk/images/smilies/icon_e_confused.gif
mods/cms/trunk/images/smilies/icon_e_geek.gif
mods/cms/trunk/images/smilies/icon_e_sad.gif
mods/cms/trunk/images/smilies/icon_e_smile.gif
mods/cms/trunk/images/smilies/icon_e_surprised.gif
mods/cms/trunk/images/smilies/icon_e_ugeek.gif
mods/cms/trunk/images/smilies/icon_e_wink.gif
mods/cms/trunk/images/smilies/icon_eek.gif
mods/cms/trunk/images/smilies/icon_evil.gif
mods/cms/trunk/images/smilies/icon_exclaim.gif
mods/cms/trunk/images/smilies/icon_idea.gif
mods/cms/trunk/images/smilies/icon_lol.gif
mods/cms/trunk/images/smilies/icon_mad.gif
mods/cms/trunk/images/smilies/icon_mrgreen.gif
mods/cms/trunk/images/smilies/icon_neutral.gif
mods/cms/trunk/images/smilies/icon_question.gif
mods/cms/trunk/images/smilies/icon_razz.gif
mods/cms/trunk/images/smilies/icon_redface.gif
mods/cms/trunk/images/smilies/icon_rolleyes.gif
mods/cms/trunk/images/smilies/icon_twisted.gif
mods/cms/trunk/images/spacer.gif
mods/cms/trunk/images/upload_icons/
mods/cms/trunk/images/upload_icons/avi.gif
mods/cms/trunk/images/upload_icons/bmp.gif
mods/cms/trunk/images/upload_icons/doc.gif
mods/cms/trunk/images/upload_icons/exe.gif
mods/cms/trunk/images/upload_icons/flash.gif
mods/cms/trunk/images/upload_icons/gif.gif
mods/cms/trunk/images/upload_icons/html.gif
mods/cms/trunk/images/upload_icons/jpg.gif
mods/cms/trunk/images/upload_icons/mid.gif
mods/cms/trunk/images/upload_icons/mov.gif
mods/cms/trunk/images/upload_icons/mp3.gif
mods/cms/trunk/images/upload_icons/mpg.gif
mods/cms/trunk/images/upload_icons/netscape.gif
mods/cms/trunk/images/upload_icons/pdf.gif
mods/cms/trunk/images/upload_icons/ppt.gif
mods/cms/trunk/images/upload_icons/rar.gif
mods/cms/trunk/images/upload_icons/txt.gif
mods/cms/trunk/images/upload_icons/wav.gif
mods/cms/trunk/images/upload_icons/xls.gif
mods/cms/trunk/images/upload_icons/zip.gif
mods/cms/trunk/includes/
mods/cms/trunk/includes/acm/
mods/cms/trunk/includes/acm/acm_file.php
mods/cms/trunk/includes/acp/
mods/cms/trunk/includes/acp/acp_attachments.php
mods/cms/trunk/includes/acp/acp_ban.php
mods/cms/trunk/includes/acp/acp_bbcodes.php
mods/cms/trunk/includes/acp/acp_board.php
mods/cms/trunk/includes/acp/acp_bots.php
mods/cms/trunk/includes/acp/acp_captcha.php
mods/cms/trunk/includes/acp/acp_database.php
mods/cms/trunk/includes/acp/acp_disallow.php
mods/cms/trunk/includes/acp/acp_email.php
mods/cms/trunk/includes/acp/acp_forums.php
mods/cms/trunk/includes/acp/acp_groups.php
mods/cms/trunk/includes/acp/acp_icons.php
mods/cms/trunk/includes/acp/acp_inactive.php
mods/cms/trunk/includes/acp/acp_jabber.php
mods/cms/trunk/includes/acp/acp_language.php
mods/cms/trunk/includes/acp/acp_logs.php
mods/cms/trunk/includes/acp/acp_main.php
mods/cms/trunk/includes/acp/acp_modules.php
mods/cms/trunk/includes/acp/acp_permission_roles.php
mods/cms/trunk/includes/acp/acp_permissions.php
mods/cms/trunk/includes/acp/acp_php_info.php
mods/cms/trunk/includes/acp/acp_profile.php
mods/cms/trunk/includes/acp/acp_prune.php
mods/cms/trunk/includes/acp/acp_ranks.php
mods/cms/trunk/includes/acp/acp_reasons.php
mods/cms/trunk/includes/acp/acp_search.php
mods/cms/trunk/includes/acp/acp_styles.php
mods/cms/trunk/includes/acp/acp_update.php
mods/cms/trunk/includes/acp/acp_users.php
mods/cms/trunk/includes/acp/acp_words.php
mods/cms/trunk/includes/acp/auth.php
mods/cms/trunk/includes/acp/info/
mods/cms/trunk/includes/acp/info/acp_attachments.php
mods/cms/trunk/includes/acp/info/acp_ban.php
mods/cms/trunk/includes/acp/info/acp_bbcodes.php
mods/cms/trunk/includes/acp/info/acp_board.php
mods/cms/trunk/includes/acp/info/acp_bots.php
mods/cms/trunk/includes/acp/info/acp_captcha.php
mods/cms/trunk/includes/acp/info/acp_database.php
mods/cms/trunk/includes/acp/info/acp_disallow.php
mods/cms/trunk/includes/acp/info/acp_email.php
mods/cms/trunk/includes/acp/info/acp_forums.php
mods/cms/trunk/includes/acp/info/acp_groups.php
mods/cms/trunk/includes/acp/info/acp_icons.php
mods/cms/trunk/includes/acp/info/acp_inactive.php
mods/cms/trunk/includes/acp/info/acp_jabber.php
mods/cms/trunk/includes/acp/info/acp_language.php
mods/cms/trunk/includes/acp/info/acp_logs.php
mods/cms/trunk/includes/acp/info/acp_main.php
mods/cms/trunk/includes/acp/info/acp_modules.php
mods/cms/trunk/includes/acp/info/acp_permission_roles.php
mods/cms/trunk/includes/acp/info/acp_permissions.php
mods/cms/trunk/includes/acp/info/acp_php_info.php
mods/cms/trunk/includes/acp/info/acp_profile.php
mods/cms/trunk/includes/acp/info/acp_prune.php
mods/cms/trunk/includes/acp/info/acp_ranks.php
mods/cms/trunk/includes/acp/info/acp_reasons.php
mods/cms/trunk/includes/acp/info/acp_search.php
mods/cms/trunk/includes/acp/info/acp_styles.php
mods/cms/trunk/includes/acp/info/acp_update.php
mods/cms/trunk/includes/acp/info/acp_users.php
mods/cms/trunk/includes/acp/info/acp_words.php
mods/cms/trunk/includes/auth/
mods/cms/trunk/includes/auth/auth_apache.php
mods/cms/trunk/includes/auth/auth_db.php
mods/cms/trunk/includes/auth/auth_ldap.php
mods/cms/trunk/includes/auth/index.htm
mods/cms/trunk/includes/auth.php
mods/cms/trunk/includes/bbcode.php
mods/cms/trunk/includes/cache.php
mods/cms/trunk/includes/captcha/
mods/cms/trunk/includes/captcha/captcha_gd.php
mods/cms/trunk/includes/captcha/captcha_non_gd.php
mods/cms/trunk/includes/constants.php
mods/cms/trunk/includes/db/
mods/cms/trunk/includes/db/dbal.php
mods/cms/trunk/includes/db/firebird.php
mods/cms/trunk/includes/db/index.htm
mods/cms/trunk/includes/db/mssql.php
mods/cms/trunk/includes/db/mssql_odbc.php
mods/cms/trunk/includes/db/mysql.php
mods/cms/trunk/includes/db/mysqli.php
mods/cms/trunk/includes/db/oracle.php
mods/cms/trunk/includes/db/postgres.php
mods/cms/trunk/includes/db/sqlite.php
mods/cms/trunk/includes/diff/
mods/cms/trunk/includes/diff/diff.php
mods/cms/trunk/includes/diff/engine.php
mods/cms/trunk/includes/diff/renderer.php
mods/cms/trunk/includes/functions.php
mods/cms/trunk/includes/functions_admin.php
mods/cms/trunk/includes/functions_compress.php
mods/cms/trunk/includes/functions_convert.php
mods/cms/trunk/includes/functions_display.php
mods/cms/trunk/includes/functions_install.php
mods/cms/trunk/includes/functions_jabber.php
mods/cms/trunk/includes/functions_messenger.php
mods/cms/trunk/includes/functions_module.php
mods/cms/trunk/includes/functions_posting.php
mods/cms/trunk/includes/functions_privmsgs.php
mods/cms/trunk/includes/functions_profile_fields.php
mods/cms/trunk/includes/functions_template.php
mods/cms/trunk/includes/functions_transfer.php
mods/cms/trunk/includes/functions_upload.php
mods/cms/trunk/includes/functions_user.php
mods/cms/trunk/includes/index.htm
mods/cms/trunk/includes/js/
mods/cms/trunk/includes/js/accordion.js
mods/cms/trunk/includes/js/animateClass.js
mods/cms/trunk/includes/js/animateStyle.js
mods/cms/trunk/includes/js/carousel.js
mods/cms/trunk/includes/js/easing.js
mods/cms/trunk/includes/js/fisheye.js
mods/cms/trunk/includes/js/iautocompleter.js
mods/cms/trunk/includes/js/iautoscroller.js
mods/cms/trunk/includes/js/idrag.js
mods/cms/trunk/includes/js/idrop.js
mods/cms/trunk/includes/js/iexpander.js
mods/cms/trunk/includes/js/ifx.js
mods/cms/trunk/includes/js/ifxblind.js
mods/cms/trunk/includes/js/ifxbounce.js
mods/cms/trunk/includes/js/ifxdrop.js
mods/cms/trunk/includes/js/ifxfold.js
mods/cms/trunk/includes/js/ifxhighlight.js
mods/cms/trunk/includes/js/ifxopenclose.js
mods/cms/trunk/includes/js/ifxpulsate.js
mods/cms/trunk/includes/js/ifxscale.js
mods/cms/trunk/includes/js/ifxscrollto.js
mods/cms/trunk/includes/js/ifxshake.js
mods/cms/trunk/includes/js/ifxslide.js
mods/cms/trunk/includes/js/ifxtransfer.js
mods/cms/trunk/includes/js/imagebox.js
mods/cms/trunk/includes/js/interface.js
mods/cms/trunk/includes/js/iresizable.js
mods/cms/trunk/includes/js/iselect.js
mods/cms/trunk/includes/js/islider.js
mods/cms/trunk/includes/js/islideshow.js
mods/cms/trunk/includes/js/isortables.js
mods/cms/trunk/includes/js/itooltip.js
mods/cms/trunk/includes/js/ittabs.js
mods/cms/trunk/includes/js/iutil.js
mods/cms/trunk/includes/js/jquery.js
mods/cms/trunk/includes/mcp/
mods/cms/trunk/includes/mcp/info/
mods/cms/trunk/includes/mcp/info/mcp_ban.php
mods/cms/trunk/includes/mcp/info/mcp_logs.php
mods/cms/trunk/includes/mcp/info/mcp_main.php
mods/cms/trunk/includes/mcp/info/mcp_notes.php
mods/cms/trunk/includes/mcp/info/mcp_queue.php
mods/cms/trunk/includes/mcp/info/mcp_reports.php
mods/cms/trunk/includes/mcp/info/mcp_warn.php
mods/cms/trunk/includes/mcp/mcp_ban.php
mods/cms/trunk/includes/mcp/mcp_forum.php
mods/cms/trunk/includes/mcp/mcp_front.php
mods/cms/trunk/includes/mcp/mcp_logs.php
mods/cms/trunk/includes/mcp/mcp_main.php
mods/cms/trunk/includes/mcp/mcp_notes.php
mods/cms/trunk/includes/mcp/mcp_post.php
mods/cms/trunk/includes/mcp/mcp_queue.php
mods/cms/trunk/includes/mcp/mcp_reports.php
mods/cms/trunk/includes/mcp/mcp_topic.php
mods/cms/trunk/includes/mcp/mcp_warn.php
mods/cms/trunk/includes/message_parser.php
mods/cms/trunk/includes/search/
mods/cms/trunk/includes/search/fulltext_mysql.php
mods/cms/trunk/includes/search/fulltext_native.php
mods/cms/trunk/includes/search/index.htm
mods/cms/trunk/includes/search/search.php
mods/cms/trunk/includes/session.php
mods/cms/trunk/includes/template.php
mods/cms/trunk/includes/ucp/
mods/cms/trunk/includes/ucp/info/
mods/cms/trunk/includes/ucp/info/ucp_attachments.php
mods/cms/trunk/includes/ucp/info/ucp_groups.php
mods/cms/trunk/includes/ucp/info/ucp_main.php
mods/cms/trunk/includes/ucp/info/ucp_pm.php
mods/cms/trunk/includes/ucp/info/ucp_prefs.php
mods/cms/trunk/includes/ucp/info/ucp_profile.php
mods/cms/trunk/includes/ucp/info/ucp_zebra.php
mods/cms/trunk/includes/ucp/ucp_activate.php
mods/cms/trunk/includes/ucp/ucp_attachments.php
mods/cms/trunk/includes/ucp/ucp_confirm.php
mods/cms/trunk/includes/ucp/ucp_groups.php
mods/cms/trunk/includes/ucp/ucp_main.php
mods/cms/trunk/includes/ucp/ucp_pm.php
mods/cms/trunk/includes/ucp/ucp_pm_compose.php
mods/cms/trunk/includes/ucp/ucp_pm_options.php
mods/cms/trunk/includes/ucp/ucp_pm_viewfolder.php
mods/cms/trunk/includes/ucp/ucp_pm_viewmessage.php
mods/cms/trunk/includes/ucp/ucp_prefs.php
mods/cms/trunk/includes/ucp/ucp_profile.php
mods/cms/trunk/includes/ucp/ucp_register.php
mods/cms/trunk/includes/ucp/ucp_remind.php
mods/cms/trunk/includes/ucp/ucp_resend.php
mods/cms/trunk/includes/ucp/ucp_zebra.php
mods/cms/trunk/includes/utf/
mods/cms/trunk/includes/utf/data/
mods/cms/trunk/includes/utf/data/case_fold_c.php
mods/cms/trunk/includes/utf/data/case_fold_f.php
mods/cms/trunk/includes/utf/data/case_fold_s.php
mods/cms/trunk/includes/utf/data/confusables.php
mods/cms/trunk/includes/utf/data/recode_basic.php
mods/cms/trunk/includes/utf/data/recode_cjk.php
mods/cms/trunk/includes/utf/data/search_indexer_0.php
mods/cms/trunk/includes/utf/data/search_indexer_1.php
mods/cms/trunk/includes/utf/data/search_indexer_19.php
mods/cms/trunk/includes/utf/data/search_indexer_2.php
mods/cms/trunk/includes/utf/data/search_indexer_20.php
mods/cms/trunk/includes/utf/data/search_indexer_21.php
mods/cms/trunk/includes/utf/data/search_indexer_26.php
mods/cms/trunk/includes/utf/data/search_indexer_3.php
mods/cms/trunk/includes/utf/data/search_indexer_31.php
mods/cms/trunk/includes/utf/data/search_indexer_32.php
mods/cms/trunk/includes/utf/data/search_indexer_33.php
mods/cms/trunk/includes/utf/data/search_indexer_36.php
mods/cms/trunk/includes/utf/data/search_indexer_4.php
mods/cms/trunk/includes/utf/data/search_indexer_448.php
mods/cms/trunk/includes/utf/data/search_indexer_5.php
mods/cms/trunk/includes/utf/data/search_indexer_58.php
mods/cms/trunk/includes/utf/data/search_indexer_6.php
mods/cms/trunk/includes/utf/data/search_indexer_64.php
mods/cms/trunk/includes/utf/data/search_indexer_84.php
mods/cms/trunk/includes/utf/data/search_indexer_9.php
mods/cms/trunk/includes/utf/data/search_indexer_95.php
mods/cms/trunk/includes/utf/data/utf_canonical_comp.php
mods/cms/trunk/includes/utf/data/utf_canonical_decomp.php
mods/cms/trunk/includes/utf/data/utf_compatibility_decomp.php
mods/cms/trunk/includes/utf/data/utf_nfc_qc.php
mods/cms/trunk/includes/utf/data/utf_nfkc_qc.php
mods/cms/trunk/includes/utf/data/utf_normalizer_common.php
mods/cms/trunk/includes/utf/utf_normalizer.php
mods/cms/trunk/includes/utf/utf_tools.php
mods/cms/trunk/index.php
mods/cms/trunk/language/
mods/cms/trunk/language/en/
mods/cms/trunk/language/en/acp/
mods/cms/trunk/language/en/acp/attachments.php
mods/cms/trunk/language/en/acp/ban.php
mods/cms/trunk/language/en/acp/board.php
mods/cms/trunk/language/en/acp/bots.php
mods/cms/trunk/language/en/acp/common.php
mods/cms/trunk/language/en/acp/database.php
mods/cms/trunk/language/en/acp/email.php
mods/cms/trunk/language/en/acp/forums.php
mods/cms/trunk/language/en/acp/groups.php
mods/cms/trunk/language/en/acp/index.htm
mods/cms/trunk/language/en/acp/language.php
mods/cms/trunk/language/en/acp/modules.php
mods/cms/trunk/language/en/acp/permissions.php
mods/cms/trunk/language/en/acp/permissions_phpbb.php
mods/cms/trunk/language/en/acp/posting.php
mods/cms/trunk/language/en/acp/profile.php
mods/cms/trunk/language/en/acp/prune.php
mods/cms/trunk/language/en/acp/search.php
mods/cms/trunk/language/en/acp/styles.php
mods/cms/trunk/language/en/acp/users.php
mods/cms/trunk/language/en/common.php
mods/cms/trunk/language/en/email/
mods/cms/trunk/language/en/email/admin_activate.txt
mods/cms/trunk/language/en/email/admin_send_email.txt
mods/cms/trunk/language/en/email/admin_welcome_activated.txt
mods/cms/trunk/language/en/email/admin_welcome_inactive.txt
mods/cms/trunk/language/en/email/coppa_resend_inactive.txt
mods/cms/trunk/language/en/email/coppa_welcome_inactive.txt
mods/cms/trunk/language/en/email/email_notify.txt
mods/cms/trunk/language/en/email/forum_notify.txt
mods/cms/trunk/language/en/email/group_added.txt
mods/cms/trunk/language/en/email/group_approved.txt
mods/cms/trunk/language/en/email/group_request.txt
mods/cms/trunk/language/en/email/index.htm
mods/cms/trunk/language/en/email/installed.txt
mods/cms/trunk/language/en/email/newtopic_notify.txt
mods/cms/trunk/language/en/email/post_approved.txt
mods/cms/trunk/language/en/email/post_disapproved.txt
mods/cms/trunk/language/en/email/privmsg_notify.txt
mods/cms/trunk/language/en/email/profile_send_email.txt
mods/cms/trunk/language/en/email/profile_send_im.txt
mods/cms/trunk/language/en/email/report_closed.txt
mods/cms/trunk/language/en/email/report_deleted.txt
mods/cms/trunk/language/en/email/topic_approved.txt
mods/cms/trunk/language/en/email/topic_disapproved.txt
mods/cms/trunk/language/en/email/topic_notify.txt
mods/cms/trunk/language/en/email/user_activate.txt
mods/cms/trunk/language/en/email/user_activate_inactive.txt
mods/cms/trunk/language/en/email/user_activate_passwd.txt
mods/cms/trunk/language/en/email/user_reactivate_account.txt
mods/cms/trunk/language/en/email/user_remind_inactive.txt
mods/cms/trunk/language/en/email/user_resend_inactive.txt
mods/cms/trunk/language/en/email/user_welcome.txt
mods/cms/trunk/language/en/email/user_welcome_inactive.txt
mods/cms/trunk/language/en/groups.php
mods/cms/trunk/language/en/help_bbcode.php
mods/cms/trunk/language/en/help_faq.php
mods/cms/trunk/language/en/index.htm
mods/cms/trunk/language/en/install.php
mods/cms/trunk/language/en/iso.txt
mods/cms/trunk/language/en/mcp.php
mods/cms/trunk/language/en/memberlist.php
mods/cms/trunk/language/en/mods/
mods/cms/trunk/language/en/mods/index.htm
mods/cms/trunk/language/en/posting.php
mods/cms/trunk/language/en/search.php
mods/cms/trunk/language/en/search_ignore_words.php
mods/cms/trunk/language/en/search_synonyms.php
mods/cms/trunk/language/en/ucp.php
mods/cms/trunk/language/en/viewforum.php
mods/cms/trunk/language/en/viewtopic.php
mods/cms/trunk/language/index.htm
mods/cms/trunk/mcp.php
mods/cms/trunk/memberlist.php
mods/cms/trunk/modules/
mods/cms/trunk/modules/blocks/
mods/cms/trunk/modules/blocks/acp_blocks.php
mods/cms/trunk/modules/blocks/blocks/
mods/cms/trunk/modules/blocks/blocks/cms_birthday.php
mods/cms/trunk/modules/blocks/blocks/cms_calendar.php
mods/cms/trunk/modules/blocks/blocks/cms_last_bots.php
mods/cms/trunk/modules/blocks/blocks/cms_login.php
mods/cms/trunk/modules/blocks/blocks/cms_recent_members.php
mods/cms/trunk/modules/blocks/blocks/cms_stats.php
mods/cms/trunk/modules/blocks/blocks/cms_user_menu.php
mods/cms/trunk/modules/blocks/blocks/cms_whois.php
mods/cms/trunk/modules/blocks/constants.php
mods/cms/trunk/modules/blocks/functions_blocks.php
mods/cms/trunk/modules/blocks/info/
mods/cms/trunk/modules/blocks/info/acp_blocks.php
mods/cms/trunk/modules/blocks/info/blocks_info.php
mods/cms/trunk/modules/blocks/language/
mods/cms/trunk/modules/blocks/language/en/
mods/cms/trunk/modules/blocks/language/en/admin.php
mods/cms/trunk/modules/blocks/language/en/common.php
mods/cms/trunk/modules/blocks/template/
mods/cms/trunk/modules/blocks/template/acp_blocks.html
mods/cms/trunk/modules/blocks/template/block_config.html
mods/cms/trunk/modules/blocks/template/block_last_bots.html
mods/cms/trunk/modules/blocks/template/block_login.html
mods/cms/trunk/modules/blocks/template/block_recent_members.html
mods/cms/trunk/modules/blocks/template/block_user_menu.html
mods/cms/trunk/modules/blocks/template/block_whois.html
mods/cms/trunk/modules/categories/
mods/cms/trunk/modules/categories/acp_categories.php
mods/cms/trunk/modules/categories/blocks/
mods/cms/trunk/modules/categories/blocks/categories.php
mods/cms/trunk/modules/categories/constants.php
mods/cms/trunk/modules/categories/functions_categories.php
mods/cms/trunk/modules/categories/info/
mods/cms/trunk/modules/categories/info/acp_categories.php
mods/cms/trunk/modules/categories/info/categories_info.php
mods/cms/trunk/modules/categories/language/
mods/cms/trunk/modules/categories/language/en/
mods/cms/trunk/modules/categories/language/en/common.php
mods/cms/trunk/modules/categories/template/
mods/cms/trunk/modules/categories/template/acp_categories.html
mods/cms/trunk/modules/comments/
mods/cms/trunk/modules/comments/acp_comments.php
mods/cms/trunk/modules/comments/blocks/
mods/cms/trunk/modules/comments/blocks/WS_FTP.LOG
mods/cms/trunk/modules/comments/blocks/menu.php
mods/cms/trunk/modules/comments/constants.php
mods/cms/trunk/modules/comments/functions_comments.php
mods/cms/trunk/modules/comments/info/
mods/cms/trunk/modules/comments/info/acp_comments.php
mods/cms/trunk/modules/comments/info/comments_info.php
mods/cms/trunk/modules/comments/language/
mods/cms/trunk/modules/comments/language/en/
mods/cms/trunk/modules/comments/language/en/common.php
mods/cms/trunk/modules/comments/language/en/permissions_comments.php
mods/cms/trunk/modules/comments/template/
mods/cms/trunk/modules/comments/template/acp_comments.html
mods/cms/trunk/modules/comments/template/comment_posting.html
mods/cms/trunk/modules/comments/template/comments.html
mods/cms/trunk/modules/content/
mods/cms/trunk/modules/content/acp_content.php
mods/cms/trunk/modules/content/blocks/
mods/cms/trunk/modules/content/cms_content.php
mods/cms/trunk/modules/content/constants.php
mods/cms/trunk/modules/content/functions_content.php
mods/cms/trunk/modules/content/functions_properties.php
mods/cms/trunk/modules/content/info/
mods/cms/trunk/modules/content/info/acp_content.php
mods/cms/trunk/modules/content/info/cms_content.php
mods/cms/trunk/modules/content/info/content_info.php
mods/cms/trunk/modules/content/info/mcp_content.php
mods/cms/trunk/modules/content/info/ucp_content.php
mods/cms/trunk/modules/content/language/
mods/cms/trunk/modules/content/language/en/
mods/cms/trunk/modules/content/language/en/common.php
mods/cms/trunk/modules/content/language/en/content.php
mods/cms/trunk/modules/content/mcp_content.php
mods/cms/trunk/modules/content/template/
mods/cms/trunk/modules/content/template/acp_content.html
mods/cms/trunk/modules/content/template/author_info.html
mods/cms/trunk/modules/content/template/cms_content.html
mods/cms/trunk/modules/content/template/content_fields.html
mods/cms/trunk/modules/content/template/ucp_content.html
mods/cms/trunk/modules/content/ucp_content.php
mods/cms/trunk/modules/cs/
mods/cms/trunk/modules/cs/acp_cs.php
mods/cms/trunk/modules/cs/blocks/
mods/cms/trunk/modules/cs/blocks/grp_static_block.php
mods/cms/trunk/modules/cs/blocks/pro_static_block.php
mods/cms/trunk/modules/cs/constants.php
mods/cms/trunk/modules/cs/custom_style.php
mods/cms/trunk/modules/cs/custom_style_config.php
mods/cms/trunk/modules/cs/custom_style_grids.php
mods/cms/trunk/modules/cs/functions_blocks_admin.php
mods/cms/trunk/modules/cs/functions_style_generator.php
mods/cms/trunk/modules/cs/gcp_cs.php
mods/cms/trunk/modules/cs/images/
mods/cms/trunk/modules/cs/images/bg/
mods/cms/trunk/modules/cs/images/bg/50percent.png
mods/cms/trunk/modules/cs/images/bg/bg1.jpg
mods/cms/trunk/modules/cs/images/bg/cellpic1.gif
mods/cms/trunk/modules/cs/images/bg/cellpic12.gif
mods/cms/trunk/modules/cs/images/bg/cellpic3.gif
mods/cms/trunk/modules/cs/images/bg/d.jpg
mods/cms/trunk/modules/cs/images/bg/h.jpg
mods/cms/trunk/modules/cs/images/bg/menu1.gif
mods/cms/trunk/modules/cs/images/bg/raindro2.gif
mods/cms/trunk/modules/cs/images/bg/sidebar-h3.gif
mods/cms/trunk/modules/cs/images/bg/wdbk001.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk002.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk003.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk004.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk005.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk006.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk009.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk010.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk011.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk014.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk023.jpg
mods/cms/trunk/modules/cs/images/bg/wdbk026.jpg
mods/cms/trunk/modules/cs/images/colorpicker/
mods/cms/trunk/modules/cs/images/colorpicker/blank.gif
mods/cms/trunk/modules/cs/images/colorpicker/cp_arrows.gif
mods/cms/trunk/modules/cs/images/colorpicker/cp_color_slider.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_cur_color_background.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_horizontal_picker.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_lg_background.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_lg_overlay.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_mini_icon.png
mods/cms/trunk/modules/cs/images/colorpicker/cp_web_safe.gif
mods/cms/trunk/modules/cs/images/hdr/
mods/cms/trunk/modules/cs/images/marker.png
mods/cms/trunk/modules/cs/images/mask.png
mods/cms/trunk/modules/cs/images/pointers/
mods/cms/trunk/modules/cs/images/pointers/cursor-crosshair.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-e-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-hand.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-help.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-move.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-n-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-ne-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-nw-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-s-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-se-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-sw-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-text.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-w-resize.gif
mods/cms/trunk/modules/cs/images/pointers/cursor-wait.gif
mods/cms/trunk/modules/cs/images/structure/
mods/cms/trunk/modules/cs/images/themes/
mods/cms/trunk/modules/cs/images/wheel.png
mods/cms/trunk/modules/cs/info/
mods/cms/trunk/modules/cs/info/acp_cs.php
mods/cms/trunk/modules/cs/info/cs_info.php
mods/cms/trunk/modules/cs/info/gcp_cs.php
mods/cms/trunk/modules/cs/info/pro_cs.php
mods/cms/trunk/modules/cs/info/ucp_cs.php
mods/cms/trunk/modules/cs/js/
mods/cms/trunk/modules/cs/js/farbtastic.js
mods/cms/trunk/modules/cs/js/stylegenerator.js
mods/cms/trunk/modules/cs/language/
mods/cms/trunk/modules/cs/language/en/
mods/cms/trunk/modules/cs/language/en/common.php
mods/cms/trunk/modules/cs/language/en/style_generator.php
mods/cms/trunk/modules/cs/pro_cs.php
mods/cms/trunk/modules/cs/template/
mods/cms/trunk/modules/cs/template/acp_cs.html
mods/cms/trunk/modules/cs/template/blank.html
mods/cms/trunk/modules/cs/template/cs.css
mods/cms/trunk/modules/cs/template/cs_css.html
mods/cms/trunk/modules/cs/template/cs_generator.html
mods/cms/trunk/modules/cs/template/cs_setup.html
mods/cms/trunk/modules/cs/template/custom_style_view.html
mods/cms/trunk/modules/cs/template/farbtastic.css
mods/cms/trunk/modules/cs/template/stylegenerator.css
mods/cms/trunk/modules/cs/ucp_cs.php
mods/cms/trunk/modules/forums/
mods/cms/trunk/modules/forums/blocks/
mods/cms/trunk/modules/forums/blocks/cms_polls.php
mods/cms/trunk/modules/forums/blocks/cms_recent_topics.php
mods/cms/trunk/modules/forums/blocks/grp_recent_topics.php
mods/cms/trunk/modules/forums/cms_forums.php
mods/cms/trunk/modules/forums/cms_search.php
mods/cms/trunk/modules/forums/functions_display.php
mods/cms/trunk/modules/forums/functions_posting.php
mods/cms/trunk/modules/forums/grp_forums.php
mods/cms/trunk/modules/forums/info/
mods/cms/trunk/modules/forums/info/cms_forums.php
mods/cms/trunk/modules/forums/info/cms_search.php
mods/cms/trunk/modules/forums/info/forums_info.php
mods/cms/trunk/modules/forums/info/grp_forums.php
mods/cms/trunk/modules/forums/language/
mods/cms/trunk/modules/forums/language/en/
mods/cms/trunk/modules/forums/language/en/admin.php
mods/cms/trunk/modules/forums/language/en/common.php
mods/cms/trunk/modules/forums/posting.php
mods/cms/trunk/modules/forums/template/
mods/cms/trunk/modules/forums/template/blank.html
mods/cms/trunk/modules/forums/template/block_polls.html
mods/cms/trunk/modules/forums/template/block_recent_topics.html
mods/cms/trunk/modules/forums/template/block_wordgraph.html
mods/cms/trunk/modules/forums/viewforum.php
mods/cms/trunk/modules/forums/viewtopic.php
mods/cms/trunk/modules/mods/
mods/cms/trunk/modules/mods/acp_mods.php
mods/cms/trunk/modules/mods/functions_mods.php
mods/cms/trunk/modules/mods/functions_permissions.php
mods/cms/trunk/modules/mods/info/
mods/cms/trunk/modules/mods/info/acp_mods.php
mods/cms/trunk/modules/mods/info/mods_info.php
mods/cms/trunk/modules/mods/language/
mods/cms/trunk/modules/mods/language/en/
mods/cms/trunk/modules/mods/language/en/common.php
mods/cms/trunk/modules/mods/language/en/mods.php
mods/cms/trunk/modules/mods/template/
mods/cms/trunk/modules/mods/template/acp_mods.html
mods/cms/trunk/modules/search/
mods/cms/trunk/modules/search/Copy of cms_search.php
mods/cms/trunk/modules/search/blocks/
mods/cms/trunk/modules/search/blocks/cms_wordgraph.php
mods/cms/trunk/modules/search/cms_search.php
mods/cms/trunk/modules/search/info/
mods/cms/trunk/modules/search/info/cms_search.php
mods/cms/trunk/modules/search/info/search_info.php
mods/cms/trunk/modules/search/language/
mods/cms/trunk/modules/search/language/en/
mods/cms/trunk/modules/search/language/en/admin.php
mods/cms/trunk/modules/search/language/en/common.php
mods/cms/trunk/modules/search/template/
mods/cms/trunk/modules/search/template/block_wordgraph.html
mods/cms/trunk/modules/zebra/
mods/cms/trunk/modules/zebra/blocks/
mods/cms/trunk/modules/zebra/blocks/pro_friends.php
mods/cms/trunk/modules/zebra/constants.php
mods/cms/trunk/modules/zebra/functions_zebra.php
mods/cms/trunk/modules/zebra/info/
mods/cms/trunk/modules/zebra/info/pro_zebra.php
mods/cms/trunk/modules/zebra/info/ucp_zebra.php
mods/cms/trunk/modules/zebra/info/zebra_info.php
mods/cms/trunk/modules/zebra/language/
mods/cms/trunk/modules/zebra/language/en/
mods/cms/trunk/modules/zebra/language/en/common.php
mods/cms/trunk/modules/zebra/language/en/email/
mods/cms/trunk/modules/zebra/language/en/email/WS_FTP.LOG
mods/cms/trunk/modules/zebra/language/en/email/user_invite.txt
mods/cms/trunk/modules/zebra/pro_zebra.php
mods/cms/trunk/modules/zebra/template/
mods/cms/trunk/modules/zebra/template/balloons.css
mods/cms/trunk/modules/zebra/template/images/
mods/cms/trunk/modules/zebra/template/images/bubble.gif
mods/cms/trunk/modules/zebra/template/images/bubble_filler.gif
mods/cms/trunk/modules/zebra/template/pro_zebra.html
mods/cms/trunk/modules/zebra/template/ucp_zebra.html
mods/cms/trunk/modules/zebra/ucp_zebra.php
mods/cms/trunk/posting.php
mods/cms/trunk/report.php
mods/cms/trunk/search.php
mods/cms/trunk/store/
mods/cms/trunk/store/.htaccess
mods/cms/trunk/style.php
mods/cms/trunk/styles/
mods/cms/trunk/styles/prosilver/
mods/cms/trunk/styles/prosilver/imageset/
mods/cms/trunk/styles/prosilver/imageset/announce_read.gif
mods/cms/trunk/styles/prosilver/imageset/announce_read_locked.gif
mods/cms/trunk/styles/prosilver/imageset/announce_read_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/announce_read_mine.gif
mods/cms/trunk/styles/prosilver/imageset/announce_unread.gif
mods/cms/trunk/styles/prosilver/imageset/announce_unread_locked.gif
mods/cms/trunk/styles/prosilver/imageset/announce_unread_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/announce_unread_mine.gif
mods/cms/trunk/styles/prosilver/imageset/en/
mods/cms/trunk/styles/prosilver/imageset/en/button_pm_forward.gif
mods/cms/trunk/styles/prosilver/imageset/en/button_pm_new.gif
mods/cms/trunk/styles/prosilver/imageset/en/button_pm_reply.gif
mods/cms/trunk/styles/prosilver/imageset/en/button_topic_locked.gif
mods/cms/trunk/styles/prosilver/imageset/en/button_topic_new.gif
mods/cms/trunk/styles/prosilver/imageset/en/button_topic_reply.gif
mods/cms/trunk/styles/prosilver/imageset/en/icon_contact_pm.gif
mods/cms/trunk/styles/prosilver/imageset/en/icon_post_edit.gif
mods/cms/trunk/styles/prosilver/imageset/en/icon_post_quote.gif
mods/cms/trunk/styles/prosilver/imageset/en/icon_user_online.gif
mods/cms/trunk/styles/prosilver/imageset/en/imageset.cfg
mods/cms/trunk/styles/prosilver/imageset/en/index.htm
mods/cms/trunk/styles/prosilver/imageset/forum_link.gif
mods/cms/trunk/styles/prosilver/imageset/forum_read.gif
mods/cms/trunk/styles/prosilver/imageset/forum_read_locked.gif
mods/cms/trunk/styles/prosilver/imageset/forum_read_subforum.gif
mods/cms/trunk/styles/prosilver/imageset/forum_unread.gif
mods/cms/trunk/styles/prosilver/imageset/forum_unread_locked.gif
mods/cms/trunk/styles/prosilver/imageset/forum_unread_subforum.gif
mods/cms/trunk/styles/prosilver/imageset/icon_back_top.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_aim.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_email.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_icq.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_jabber.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_msnm.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_www.gif
mods/cms/trunk/styles/prosilver/imageset/icon_contact_yahoo.gif
mods/cms/trunk/styles/prosilver/imageset/icon_offline.gif
mods/cms/trunk/styles/prosilver/imageset/icon_online.gif
mods/cms/trunk/styles/prosilver/imageset/icon_post_delete.gif
mods/cms/trunk/styles/prosilver/imageset/icon_post_info.gif
mods/cms/trunk/styles/prosilver/imageset/icon_post_report.gif
mods/cms/trunk/styles/prosilver/imageset/icon_post_target.gif
mods/cms/trunk/styles/prosilver/imageset/icon_post_target_unread.gif
mods/cms/trunk/styles/prosilver/imageset/icon_rate_bad.gif
mods/cms/trunk/styles/prosilver/imageset/icon_rate_good.gif
mods/cms/trunk/styles/prosilver/imageset/icon_topic_attach.gif
mods/cms/trunk/styles/prosilver/imageset/icon_topic_latest.gif
mods/cms/trunk/styles/prosilver/imageset/icon_topic_newest.gif
mods/cms/trunk/styles/prosilver/imageset/icon_topic_reported.gif
mods/cms/trunk/styles/prosilver/imageset/icon_topic_unapproved.gif
mods/cms/trunk/styles/prosilver/imageset/icon_user_warn.gif
mods/cms/trunk/styles/prosilver/imageset/imageset.cfg
mods/cms/trunk/styles/prosilver/imageset/index.htm
mods/cms/trunk/styles/prosilver/imageset/site_logo.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_read.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_read_locked.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_read_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_read_mine.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_unread.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_unread_locked.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_unread_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/sticky_unread_mine.gif
mods/cms/trunk/styles/prosilver/imageset/subforum_read.gif
mods/cms/trunk/styles/prosilver/imageset/subforum_unread.gif
mods/cms/trunk/styles/prosilver/imageset/topic_moved.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read_hot.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read_hot_mine.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read_locked.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/topic_read_mine.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread_hot.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread_hot_mine.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread_locked.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread_locked_mine.gif
mods/cms/trunk/styles/prosilver/imageset/topic_unread_mine.gif
mods/cms/trunk/styles/prosilver/style.cfg
mods/cms/trunk/styles/prosilver/template/
mods/cms/trunk/styles/prosilver/template/attachment.html
mods/cms/trunk/styles/prosilver/template/bbcode.html
mods/cms/trunk/styles/prosilver/template/confirm_body.html
mods/cms/trunk/styles/prosilver/template/cs_css.html
mods/cms/trunk/styles/prosilver/template/cs_generator.html
mods/cms/trunk/styles/prosilver/template/custom_profile_fields.html
mods/cms/trunk/styles/prosilver/template/custom_style_view.html
mods/cms/trunk/styles/prosilver/template/drafts.html
mods/cms/trunk/styles/prosilver/template/editor.js
mods/cms/trunk/styles/prosilver/template/faq_body.html
mods/cms/trunk/styles/prosilver/template/forum_fn.js
mods/cms/trunk/styles/prosilver/template/forumlist_body.html
mods/cms/trunk/styles/prosilver/template/index.htm
mods/cms/trunk/styles/prosilver/template/index_body.html
mods/cms/trunk/styles/prosilver/template/jumpbox.html
mods/cms/trunk/styles/prosilver/template/layout.html
mods/cms/trunk/styles/prosilver/template/login_body.html
mods/cms/trunk/styles/prosilver/template/login_forum.html
mods/cms/trunk/styles/prosilver/template/mcp_approve.html
mods/cms/trunk/styles/prosilver/template/mcp_ban.html
mods/cms/trunk/styles/prosilver/template/mcp_footer.html
mods/cms/trunk/styles/prosilver/template/mcp_forum.html
mods/cms/trunk/styles/prosilver/template/mcp_front.html
mods/cms/trunk/styles/prosilver/template/mcp_header.html
mods/cms/trunk/styles/prosilver/template/mcp_logs.html
mods/cms/trunk/styles/prosilver/template/mcp_message.html
mods/cms/trunk/styles/prosilver/template/mcp_move.html
mods/cms/trunk/styles/prosilver/template/mcp_notes_front.html
mods/cms/trunk/styles/prosilver/template/mcp_notes_user.html
mods/cms/trunk/styles/prosilver/template/mcp_post.html
mods/cms/trunk/styles/prosilver/template/mcp_queue.html
mods/cms/trunk/styles/prosilver/template/mcp_reports.html
mods/cms/trunk/styles/prosilver/template/mcp_topic.html
mods/cms/trunk/styles/prosilver/template/mcp_viewlogs.html
mods/cms/trunk/styles/prosilver/template/mcp_warn_front.html
mods/cms/trunk/styles/prosilver/template/mcp_warn_list.html
mods/cms/trunk/styles/prosilver/template/mcp_warn_post.html
mods/cms/trunk/styles/prosilver/template/mcp_warn_user.html
mods/cms/trunk/styles/prosilver/template/mcp_whois.html
mods/cms/trunk/styles/prosilver/template/memberlist_body.html
mods/cms/trunk/styles/prosilver/template/memberlist_email.html
mods/cms/trunk/styles/prosilver/template/memberlist_im.html
mods/cms/trunk/styles/prosilver/template/memberlist_leaders.html
mods/cms/trunk/styles/prosilver/template/memberlist_search.html
mods/cms/trunk/styles/prosilver/template/memberlist_view.html
mods/cms/trunk/styles/prosilver/template/message_body.html
mods/cms/trunk/styles/prosilver/template/overall_footer.html
mods/cms/trunk/styles/prosilver/template/overall_header.html
mods/cms/trunk/styles/prosilver/template/posting_attach_body.html
mods/cms/trunk/styles/prosilver/template/posting_body.html
mods/cms/trunk/styles/prosilver/template/posting_buttons.html
mods/cms/trunk/styles/prosilver/template/posting_editor.html
mods/cms/trunk/styles/prosilver/template/posting_layout.html
mods/cms/trunk/styles/prosilver/template/posting_pm_layout.html
mods/cms/trunk/styles/prosilver/template/posting_poll_body.html
mods/cms/trunk/styles/prosilver/template/posting_preview.html
mods/cms/trunk/styles/prosilver/template/posting_review.html
mods/cms/trunk/styles/prosilver/template/posting_smilies.html
mods/cms/trunk/styles/prosilver/template/posting_topic_review.html
mods/cms/trunk/styles/prosilver/template/report_body.html
mods/cms/trunk/styles/prosilver/template/search_body.html
mods/cms/trunk/styles/prosilver/template/search_results.html
mods/cms/trunk/styles/prosilver/template/simple_footer.html
mods/cms/trunk/styles/prosilver/template/simple_header.html
mods/cms/trunk/styles/prosilver/template/styleswitcher.js
mods/cms/trunk/styles/prosilver/template/template.cfg
mods/cms/trunk/styles/prosilver/template/ucp_agreement.html
mods/cms/trunk/styles/prosilver/template/ucp_attachments.html
mods/cms/trunk/styles/prosilver/template/ucp_avatar_options.html
mods/cms/trunk/styles/prosilver/template/ucp_blank.html
mods/cms/trunk/styles/prosilver/template/ucp_footer.html
mods/cms/trunk/styles/prosilver/template/ucp_groups_manage.html
mods/cms/trunk/styles/prosilver/template/ucp_groups_membership.html
mods/cms/trunk/styles/prosilver/template/ucp_header.html
mods/cms/trunk/styles/prosilver/template/ucp_main_bookmarks.html
mods/cms/trunk/styles/prosilver/template/ucp_main_drafts.html
mods/cms/trunk/styles/prosilver/template/ucp_main_front.html
mods/cms/trunk/styles/prosilver/template/ucp_main_subscribed.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_history.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_message_footer.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_message_header.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_options.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_popup.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_viewfolder.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_viewmessage.html
mods/cms/trunk/styles/prosilver/template/ucp_pm_viewmessage_print.html
mods/cms/trunk/styles/prosilver/template/ucp_prefs_personal.html
mods/cms/trunk/styles/prosilver/template/ucp_prefs_post.html
mods/cms/trunk/styles/prosilver/template/ucp_prefs_view.html
mods/cms/trunk/styles/prosilver/template/ucp_profile_avatar.html
mods/cms/trunk/styles/prosilver/template/ucp_profile_profile_info.html
mods/cms/trunk/styles/prosilver/template/ucp_profile_reg_details.html
mods/cms/trunk/styles/prosilver/template/ucp_profile_signature.html
mods/cms/trunk/styles/prosilver/template/ucp_register.html
mods/cms/trunk/styles/prosilver/template/ucp_remind.html
mods/cms/trunk/styles/prosilver/template/ucp_resend.html
mods/cms/trunk/styles/prosilver/template/ucp_zebra_foes.html
mods/cms/trunk/styles/prosilver/template/ucp_zebra_friends.html
mods/cms/trunk/styles/prosilver/template/viewforum_body.html
mods/cms/trunk/styles/prosilver/template/viewonline_body.html
mods/cms/trunk/styles/prosilver/template/viewonline_whois.html
mods/cms/trunk/styles/prosilver/template/viewtopic_body.html
mods/cms/trunk/styles/prosilver/template/viewtopic_print.html
mods/cms/trunk/styles/prosilver/theme/
mods/cms/trunk/styles/prosilver/theme/bidi.css
mods/cms/trunk/styles/prosilver/theme/buttons.css
mods/cms/trunk/styles/prosilver/theme/colours.css
mods/cms/trunk/styles/prosilver/theme/common.css
mods/cms/trunk/styles/prosilver/theme/content.css
mods/cms/trunk/styles/prosilver/theme/cp.css
mods/cms/trunk/styles/prosilver/theme/forms.css
mods/cms/trunk/styles/prosilver/theme/images/
mods/cms/trunk/styles/prosilver/theme/images/arrow_down.gif
mods/cms/trunk/styles/prosilver/theme/images/arrow_left.gif
mods/cms/trunk/styles/prosilver/theme/images/arrow_right.gif
mods/cms/trunk/styles/prosilver/theme/images/arrow_up.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_button.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_header.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_list.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_menu.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_tabs1.gif
mods/cms/trunk/styles/prosilver/theme/images/bg_tabs2.gif
mods/cms/trunk/styles/prosilver/theme/images/corners_left.gif
mods/cms/trunk/styles/prosilver/theme/images/corners_left.png
mods/cms/trunk/styles/prosilver/theme/images/corners_left2.gif
mods/cms/trunk/styles/prosilver/theme/images/corners_right.gif
mods/cms/trunk/styles/prosilver/theme/images/corners_right.png
mods/cms/trunk/styles/prosilver/theme/images/corners_right2.gif
mods/cms/trunk/styles/prosilver/theme/images/created_by.jpg
mods/cms/trunk/styles/prosilver/theme/images/gradient.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_bookmark.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_bump.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_faq.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_fontsize.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_home.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_logout.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_members.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_pages.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_print.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_register.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_search.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_sendemail.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_subscribe.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_textbox_search.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_ucp.gif
mods/cms/trunk/styles/prosilver/theme/images/icon_unsubscribe.gif
mods/cms/trunk/styles/prosilver/theme/images/index.htm
mods/cms/trunk/styles/prosilver/theme/images/no_avatar.gif
mods/cms/trunk/styles/prosilver/theme/images/quote.gif
mods/cms/trunk/styles/prosilver/theme/index.htm
mods/cms/trunk/styles/prosilver/theme/large.css
mods/cms/trunk/styles/prosilver/theme/links.css
mods/cms/trunk/styles/prosilver/theme/medium.css
mods/cms/trunk/styles/prosilver/theme/normal.css
mods/cms/trunk/styles/prosilver/theme/print.css
mods/cms/trunk/styles/prosilver/theme/stylesheet.css
mods/cms/trunk/styles/prosilver/theme/theme.cfg
mods/cms/trunk/styles/prosilver/theme/tweaks.css
mods/cms/trunk/styles/subsilver2/
mods/cms/trunk/styles/subsilver2/imageset/
mods/cms/trunk/styles/subsilver2/imageset/announce_read.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_read_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_read_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_read_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_unread.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_unread_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_unread_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/announce_unread_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/en/
mods/cms/trunk/styles/subsilver2/imageset/en/button_pm_new.gif
mods/cms/trunk/styles/subsilver2/imageset/en/button_pm_reply.gif
mods/cms/trunk/styles/subsilver2/imageset/en/button_topic_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/en/button_topic_new.gif
mods/cms/trunk/styles/subsilver2/imageset/en/button_topic_reply.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_aim.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_email.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_icq.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_jabber.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_msnm.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_pm.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_www.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_contact_yahoo.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_post_delete.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_post_edit.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_post_info.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_post_quote.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_post_report.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_user_offline.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_user_online.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_user_profile.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_user_search.gif
mods/cms/trunk/styles/subsilver2/imageset/en/icon_user_warn.gif
mods/cms/trunk/styles/subsilver2/imageset/en/imageset.cfg
mods/cms/trunk/styles/subsilver2/imageset/forum_link.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_read.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_read_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_read_subforum.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_unread.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_unread_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/forum_unread_subforum.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_post_target.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_post_target_unread.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_topic_attach.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_topic_latest.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_topic_newest.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_topic_reported.gif
mods/cms/trunk/styles/subsilver2/imageset/icon_topic_unapproved.gif
mods/cms/trunk/styles/subsilver2/imageset/imageset.cfg
mods/cms/trunk/styles/subsilver2/imageset/poll_center.gif
mods/cms/trunk/styles/subsilver2/imageset/poll_left.gif
mods/cms/trunk/styles/subsilver2/imageset/poll_right.gif
mods/cms/trunk/styles/subsilver2/imageset/site_logo.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_read.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_read_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_read_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_read_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_unread.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_unread_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_unread_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/sticky_unread_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_moved.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read_hot.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read_hot_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_read_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread_hot.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread_hot_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread_locked.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread_locked_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/topic_unread_mine.gif
mods/cms/trunk/styles/subsilver2/imageset/upload_bar.gif
mods/cms/trunk/styles/subsilver2/style.cfg
mods/cms/trunk/styles/subsilver2/template/
mods/cms/trunk/styles/subsilver2/template/attachment.html
mods/cms/trunk/styles/subsilver2/template/bbcode.html
mods/cms/trunk/styles/subsilver2/template/breadcrumbs.html
mods/cms/trunk/styles/subsilver2/template/confirm_body.html
mods/cms/trunk/styles/...
[truncated message content] |
|
From: <and...@us...> - 2007-09-01 21:40:47
|
Revision: 32
http://thevr.svn.sourceforge.net/thevr/?rev=32&view=rev
Author: andrewbelcher
Date: 2007-09-01 14:40:48 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
This is the fix the for problem with selecting forum parents.
This still shouldn't be necessary! For some reason there is a problem with the cache caused by the PMS mod... But we wont worry about it as once I re-write the metadata/permissions backend it should disappear!
Modified Paths:
--------------
mods/pms/trunk/includes/functions_admin.php
Modified: mods/pms/trunk/includes/functions_admin.php
===================================================================
--- mods/pms/trunk/includes/functions_admin.php 2007-09-01 17:21:25 UTC (rev 31)
+++ mods/pms/trunk/includes/functions_admin.php 2007-09-01 21:40:48 UTC (rev 32)
@@ -112,7 +112,7 @@
$sql = 'SELECT forum_id, forum_name, parent_id, forum_type, left_id, right_id
FROM ' . FORUMS_TABLE . '
ORDER BY left_id ASC';
- $result = $db->sql_query($sql, 600);
+ $result = $db->sql_query($sql, 0);
$right = 0;
$padding_store = array('0' => '');
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <and...@us...> - 2007-09-01 17:21:24
|
Revision: 31
http://thevr.svn.sourceforge.net/thevr/?rev=31&view=rev
Author: andrewbelcher
Date: 2007-09-01 10:21:25 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
Fixed a couple white space/line break problems.
Also changed the langauge/en/acp/forums.php change to a 'before-add' rather than 'after-add' as it made more sense.
Modified Paths:
--------------
modx/pms/trunk/TheVR_0.1.1c.xml
Modified: modx/pms/trunk/TheVR_0.1.1c.xml
===================================================================
--- modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-01 17:14:55 UTC (rev 30)
+++ modx/pms/trunk/TheVR_0.1.1c.xml 2007-09-01 17:21:25 UTC (rev 31)
@@ -247,44 +247,35 @@
</open>
<open src="/adm/style/acp_forums.html">
<edit>
- <find>
- <![CDATA[ <dd><select id="forum_perm_from" name="forum_perm_from"><option value="0">{L_NO_PERMISSIONS}</option>{S_FORUM_OPTIONS}</select></dd>
- </dl>]]>
- </find>
- <action type="after-add">
- <![CDATA[ <dl>
+ <find><![CDATA[ <dd><select id="forum_perm_from" name="forum_perm_from"><option value="0">{L_NO_PERMISSIONS}</option>{S_FORUM_OPTIONS}</select></dd>
+ </dl>]]></find>
+ <action type="after-add"><![CDATA[ <dl>
<dt><label for="forum_site_id">{L_SITE_ID}:</label><br /><span>{L_SITE_ID_EXPLAIN}</span></dt>
<dd><select id="forum_site_id" name="forum_site_id"><option value="0">{L_SITE_GLOBAL}</option>{S_SITE_OPTIONS}</select></dd>
- </dl>]]>
- </action>
+ </dl>]]></action>
</edit>
</open>
<open src="/includes/auth.php">
<edit>
- <find>
- {
- $this->cache[$f][$opt] |= $this->acl[$f][$this->acl_options['local'][$opt]];
- }
- </find>
- <action type="after-add">
-
+ <find><![CDATA[ if (isset($this->acl[$f]) && isset($this->acl[$f][$this->acl_options['local'][$opt]]))
+ {
+ $this->cache[$f][$opt] |= $this->acl[$f][$this->acl_options['local'][$opt]];
+ }]]></find>
+ <action type="after-add">
if (check_forum($f) == false)
{
$this->cache[$f][$opt] = false;
- }
- </action>
+ }</action>
</edit>
</open>
<open src="/includes/constants.php">
<edit>
- <find>
-// Additional tables</find>
+ <find>// Additional tables</find>
<action type="after-add">
//TheVR
define('SITES_TABLE', $table_prefix . 'sites');
define('SITE_URL_TABLE', $table_prefix . 'site_urls');
-define('SITE_CONFIG_TABLE', $table_prefix . 'site_config');
- </action>
+define('SITE_CONFIG_TABLE', $table_prefix . 'site_config');</action>
</edit>
</open>
<open src="/includes/functions_user.php">
@@ -292,39 +283,37 @@
<find> // Now make it the users default group...
group_set_user_default($user_row['group_id'], array($user_id), false);
</find>
- <action type="after-add">
- /***** START
-ADDED by reekingofrandomness for thevr.co.uk
-This Automatically adds a member to there sites group
-*****/
+ <action type="after-add"> /***** START
+ ADDED by reekingofrandomness for thevr.co.uk
+ This Automatically adds a member to there sites group
+ *****/
- // Place into appropriate group...
- $sql = 'INSERT INTO ' . USER_GROUP_TABLE . ' ' . $db->sql_build_array('INSERT', array(
- 'user_id' => (int) $user_id,
- 'group_id' => (int) $config['site_group_id'],
- 'user_pending' => 0)
- );
- $db->sql_query($sql);
+ // Place into appropriate group...
+ $sql = 'INSERT INTO ' . USER_GROUP_TABLE . ' ' . $db->sql_build_array('INSERT', array(
+ 'user_id' => (int) $user_id,
+ 'group_id' => (int) $config['site_group_id'],
+ 'user_pending' => 0)
+ );
+ $db->sql_query($sql);
-/***** END *****/
- </action>
+ /***** END *****/</action>
</edit>
</open>
<open src="/includes/acp/acp_forums.php">
<edit>
<find> 'forum_password_confirm'=> request_var('forum_password_confirm', '', true),</find>
- <action type="after-add"> 'forum_site_id' => request_var('forum_site_id', 0),</action>
+ <action type="after-add"> 'site_id' => request_var('forum_site_id', 0),</action>
</edit>
<edit>
<find> 'forum_password_confirm'=> '',</find>
- <action type="after-add"> 'forum_site_id' => 0,</action>
+ <action type="after-add"> 'site_id' => 0,</action>
</edit>
<edit>
<find> 'S_MOVE_FORUM_OPTIONS' => make_forum_select($forum_data['parent_id'], $forum_id, false, true, false))
);
}
$db->sql_freeresult($result);
- </find>
+</find>
<action type="after-add">
$site_list = '';
@@ -339,7 +328,7 @@
$site_list .= '>' . $row['name'] . '</option>';]]>
}
$db->sql_freeresult($result);
- </action>
+</action>
</edit>
<edit>
<find> 'S_STYLES_OPTIONS' => $styles_list,</find>
@@ -367,14 +356,15 @@
'ACP_MANAGE_SITES' => 'Manage Sites',
'ACP_SITE_SETTINGS' => 'Edit Site Configuration',
'ACP_SITE_SETTINGS_EXPLAIN' => '',
-/** End added **/</action>
+/** End added **/
+</action>
</edit>
</open>
<open src="/language/en/acp/forums.php">
<edit>
- <find> 'REDIRECT_ACL' => 'Now you are able to %sset permissions%s for this forum.',</find>
- <action type="after-add">
- 'SITE_ID' => 'Site',
+ <find> 'SYNC_IN_PROGRESS' => 'Synchronizing forum',
+ 'SYNC_IN_PROGRESS_EXPLAIN' => 'Currently resyncing topic range %1$d/%2$d.',</find>
+ <action type="before-add">'SITE_ID' => 'Site',
'SITE_ID_EXPLAIN' => 'Select which site this is part of.',
'SITE_GLOBAL' => 'Global Forum',</action>
</edit>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <and...@us...> - 2007-09-01 17:14:55
|
Revision: 30
http://thevr.svn.sourceforge.net/thevr/?rev=30&view=rev
Author: andrewbelcher
Date: 2007-09-01 10:14:55 -0700 (Sat, 01 Sep 2007)
Log Message:
-----------
I've put in a couple ;s that were missed off the end of the line...
Modified Paths:
--------------
mods/pms/trunk/thevr_pms_install.php
Modified: mods/pms/trunk/thevr_pms_install.php
===================================================================
--- mods/pms/trunk/thevr_pms_install.php 2007-08-30 19:44:31 UTC (rev 29)
+++ mods/pms/trunk/thevr_pms_install.php 2007-09-01 17:14:55 UTC (rev 30)
@@ -287,7 +287,7 @@
if (group_create($group_id,$g_type,$g_name,$g_desc,$g_att))
{
define('ERROR',true);
- $errors[] = $user->lang['GRP_ADD_FAIL']
+ $errors[] = $user->lang['GRP_ADD_FAIL'];
}
else
{
@@ -310,7 +310,7 @@
{
$success2[] = 'sites';
}
- $data['site_id'] = $db->sql_nextid
+ $data['site_id'] = $db->sql_nextid;
}
$siteurl_ins = array ( 'site_id' => $data['site_id'],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ree...@us...> - 2007-08-30 19:44:29
|
Revision: 29
http://thevr.svn.sourceforge.net/thevr/?rev=29&view=rev
Author: reekingofrandom
Date: 2007-08-30 12:44:31 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
ReekingofRandomness - Improved the install script to include ACP Module Setup and fix error tracking
Modified Paths:
--------------
mods/pms/trunk/thevr_pms_install.php
Modified: mods/pms/trunk/thevr_pms_install.php
===================================================================
--- mods/pms/trunk/thevr_pms_install.php 2007-08-30 16:22:37 UTC (rev 28)
+++ mods/pms/trunk/thevr_pms_install.php 2007-08-30 19:44:31 UTC (rev 29)
@@ -25,7 +25,9 @@
switch ($mode)
{
case 'install':
- //Install
+ /***
+ * Create New Tables
+ **/
/* _site_config */
$sql = "CREATE TABLE `" . $table_prefix . "site_config` (
`config_name` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
@@ -94,60 +96,298 @@
trigger_error('TheVR Mod :: Failed to create tables');
}
- //Create Permissions
- $sql = "INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_a', '1', '0', '0' ),
- ( NULL , 'a_sites_e', '1', '0', '0' ),
- ( NULL , 'a_sites_d', '1', '0', '0' ),
- ( NULL , 'a_sites_ug', '1', '0', '0' ),
- ( NULL , 'a_sites_f', '1', '0', '0' )";
+ /***
+ * Insert Permissions
+ **/
+ $sql = "INSERT INTO " . ACL_OPTIONS_TABLE . " ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` )
+ VALUES ( NULL , 'a_sites_a', '1', '0', '0' ),
+ ( NULL , 'a_sites_e', '1', '0', '0' ),
+ ( NULL , 'a_sites_d', '1', '0', '0' ),
+ ( NULL , 'a_sites_ug', '1', '0', '0' ),
+ ( NULL , 'a_sites_f', '1', '0', '0' )";
if(!$db->sql_query($sql))
{
- define('ERROR',true);
- }
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
- if(defined('ERROR'))
- {
trigger_error('TheVR Mod :: Failed to create permissions');
+ }
+ /***
+ * Update forums table
+ **/
+ $sql = "ALTER TABLE `phpbb_forums` ADD `site_id` MEDIUMINT( 4 ) NOT NULL DEFAULT '0';";
+
+ if(!$db->sql_query($sql))
+ {
foreach($success as $i => $table)
{
$sql = "DROP TABLE " . $table_prefix . $table . " ";
@$db->sql_query($sql);
}
+ $sql = "DELETE
+ FROM " . ACL_OPTIONS_TABLE . "
+ WHERE auth_option_id LIKE 'a_sites_%'";
+ @$db->sql_query($sql);
+
+ trigger_error('TheVR Mod :: Failed to alter forums table');
}
- //Update forums table
- $sql = "ALTER TABLE `phpbb_forums` ADD `site_id` MEDIUMINT( 4 ) NOT NULL DEFAULT '0';";
+ /***
+ * Set Up admin Panel Module
+ **/
+ $sql = 'SELECT right_id
+ FROM ' . MODULES_TABLE . '
+ WHERE module_class = \'acp\'
+ ORDER BY right_id DESC';
+ $result = $db->sql_query($sql);
+ $posnum = $db->sql_fetchfield('right_id',0,$result) + 1;
+ $topmodule = array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => '',
+ 'module_class' => 'acp',
+ 'parent_id' => 0,
+ 'left_id' => $posnum,
+ 'right_id' => $posnum+11,
+ 'module_langname' => 'Sites',
+ 'module_mode' => '',
+ 'module_auth' => ''
+ );
+
+ $sql = 'INSERT INTO ' . MODULES_TABLE . ' ' . $db->sql_build_array('INSERT',$topmodule);
if(!$db->sql_query($sql))
{
- define('ERROR',true);
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
+
+ $sql = "DELETE
+ FROM " . ACL_OPTIONS_TABLE . "
+ WHERE auth_option_id LIKE 'a_sites_%'";
+ @$db->sql_query($sql);
+
+ $sql = 'ALTER TABLE ' . FORUMS_TABLE . ' DROP COLUMN `site_id`';
+ @$db->sql_query($sql);
+
+ trigger_error('TheVR Mod :: Failed to add sites category');
}
+ $topid = $db->sql_nextid;
- if(defined('ERROR'))
- {
- trigger_error('TheVR Mod :: Failed to alter forums table');
+ $modules = array( 1 => array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => '',
+ 'module_class' => 'acp',
+ 'parent_id' => $topid,
+ 'left_id' => $posnum+1,
+ 'right_id' => $posnum+6,
+ 'module_langname' => 'Global Management',
+ 'module_mode' => '',
+ 'module_auth' => ''
+ ),
+ 2 => array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => '',
+ 'module_class' => 'acp',
+ 'parent_id' => $topid,
+ 'left_id' => $posnum+7,
+ 'right_id' => $posnum+10,
+ 'module_langname' => 'Site Config',
+ 'module_mode' => '',
+ 'module_auth' => ''
+ ),
+ 3 => array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => 'sites',
+ 'module_class' => 'acp',
+ 'parent_id' => $topid+1,
+ 'left_id' => $posnum+2,
+ 'right_id' => $posnum+3,
+ 'module_langname' => 'ACP_MANAGE_SITES',
+ 'module_mode' => 'manage',
+ 'module_auth' => 'acl_a_server'
+ ),
+ 4 => array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => 'sites',
+ 'module_class' => 'acp',
+ 'parent_id' => $top_id+1,
+ 'left_id' => $posnum+4,
+ 'right_id' => $posnum+5,
+ 'module_langname' => 'ACP_MANAGE_SITE_URLS',
+ 'module_mode' => 'manage_url',
+ 'module_auth' => 'acl_a_server'
+ ),
+ 5 => array( 'module_enabled' => 1,
+ 'module_display' => 1,
+ 'module_basename' => 'sites',
+ 'module_class' => 'acp',
+ 'parent_id' => $topid+2,
+ 'left_id' => $posnum+8,
+ 'right_id' => $posnum+9,
+ 'module_langname' => 'ACP_SITE_SETTINGS',
+ 'module_mode' => 'settings',
+ 'module_auth' => 'acl_a_server'
+ )
+ );
+ if(!$db->sql_multi_insert(MODULES_TABLE,$modules))
+ {
foreach($success as $i => $table)
{
$sql = "DROP TABLE " . $table_prefix . $table . " ";
@$db->sql_query($sql);
}
- }
- //Put initial data into table.
+ $sql = 'DELETE
+ FROM ' . ACL_OPTIONS_TABLE . '
+ WHERE auth_option_id LIKE \'a_sites_%\'';
+ @$db->sql_query($sql);
+
+ $sql = 'ALTER TABLE ' . FORUMS_TABLE . ' DROP COLUMN `site_id`';
+ @$db->sql_query($sql);
+
+ $sql = 'DELETE
+ FROM ' . MODULES_TABLE . '
+ WHERE module_id = ' . $topid;
+ @$db->sql_query($sql);
+
+ trigger_error('TheVR Mod :: Failed to add modules');
+ }
+
+ /***
+ * Create Initial Site
+ **/
+ $errors = array();
+ $success2 = array();
+
+ //Put initial data into table.
$data = array( 'name' => $config['sitename'],
'domain' => $config['server_name'],
'desc' => $config['site_desc'],
'group_id' => '',
- 'home' => '',
+ 'home' => 'index.php',
'style' => $config['default_style']);
- add_site($data);
+ include($phpbb_root_path . 'includes/functions_user.php');
- trigger_error('TheVR Mod :: Successful Installation');
+ //Vars for group creation:
+ $g_type = 'GROUP_CLOSED';
+ $g_name = 'registered_'.preg_replace('/\s\s+/','_',$data['name']);
+ $g_desc = 'The members of '.$data['name'];
+ $g_att = array('group_legend' => 0);
+
+ if (group_create($group_id,$g_type,$g_name,$g_desc,$g_att))
+ {
+ define('ERROR',true);
+ $errors[] = $user->lang['GRP_ADD_FAIL']
+ }
+ else
+ {
+ $success2[] = 'groups';
+ $data['group_id'] = $group_id;
+
+ $site_ins = array ( 'name' => $data['name'],
+ 'description' => $data['desc'],
+ 'group_id' => $data['group_id'],
+ 'home' => $data['home'],
+ 'default_style' => $data['style'] );
+
+ //Insert into sites table.
+ if( !$db->sql_query('INSERT INTO '. $table_prefix .'sites '.$db->sql_build_array('INSERT',$site_ins)))
+ {
+ define('ERROR',true);
+ $errors[] = $user->lang['SITE_ADD_FAIL'];
+ }
+ else
+ {
+ $success2[] = 'sites';
+ }
+ $data['site_id'] = $db->sql_nextid
+ }
+
+ $siteurl_ins = array ( 'site_id' => $data['site_id'],
+ 'domain' => $data['domain'] );
+
+ if( !$db->sql_query('INSERT INTO '. $table_prefix . 'site_urls '.$db->sql_build_array('INSERT',$siteurl_ins)))
+ {
+ define('ERROR',true);
+ $errors[] = $user->lang['SITE_URL_ADD_FAIL'];
+ }
+ else
+ {
+ $success2[] = 'url';
+ }
+
+ if (defined('ERROR'))
+ {
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
+
+ $sql = 'DELETE
+ FROM ' . ACL_OPTIONS_TABLE . '
+ WHERE auth_option_id LIKE \'a_sites_%\'';
+ @$db->sql_query($sql);
+
+ $sql = 'ALTER TABLE ' . FORUMS_TABLE . ' DROP COLUMN `site_id`';
+ @$db->sql_query($sql);
+
+ $sql = 'DELETE
+ FROM ' . MODULES_TABLE . '
+ WHERE module_id = ' . $topid;
+ @$db->sql_query($sql);
+
+ foreach($modules as $array)
+ {
+ $sql = 'DELETE
+ FROM ' . MODULES_TABLE . '
+ WHERE left_id = ' . $array['left_id'];
+ @$db->sql_query($sql);
+ }
+
+ foreach($success2 as $ob)
+ {
+ switch ($ob)
+ {
+ case 'groups':
+ group_delete($group_id);
+ break;
+ case 'sites':
+ $sql = 'DELETE
+ FROM ' . $table_prefix . 'sites
+ WHERE site_id = ' . $data['site_id'];
+ @$db->sql_query($sql);
+ break;
+ case 'url':
+ $sql = 'DELETE
+ FROM ' . $table_prefix . 'sites
+ WHERE site_id = ' . $data['site_id'];
+ @$db->sql_query($sql);
+ break;
+ }
+ }
+
+ $error = '';
+ foreach($errors as $message)
+ {
+ $error .= $message;
+ }
+
+ trigger_error('TheVR Mod :: ' . $message);
+
+ }
+ trigger_error('TheVR Mod :: Successful Installation');
+
break;
case 'update':
$vers = request_var('v','');
@@ -207,99 +447,5 @@
}
-//Functions
-function add_url($data)
-{
- global $db, $user, $table_prefix;
-
- if (!is_array($data))
- {
- trigger_error($user->lang['VAR_NOT_ARRAY'], E_USER_WARNING);
- }
-
- //Check if domain already exists.
- $sql = 'SELECT * FROM '. $table_prefix . 'site_urls WHERE domain=\''.$data['domain'].'\'';
- $result = $db->sql_query($sql);
- if (sizeof($db->sql_fetchrowset($result)) > 0)
- {
- trigger_error($user->lang['DUPLI_DOMAIN']);
- }
-
- $siteurl_ins = array ( 'site_id' => $data['site_id'],
- 'domain' => $data['domain'] );
-
- if( !$db->sql_query('INSERT INTO '. $table_prefix . 'site_urls '.$db->sql_build_array('INSERT',$siteurl_ins)))
- {
- trigger_error($user->lang['SITE_URL_ADD_FAIL']);
- }
- else
- {
- return true;
- }
-}
-
-
-function add_site($data)
-{
- global $db, $user, $table_prefix, $phpbb_root_path;
-
- include($phpbb_root_path . 'includes/functions_user.php');
-
- if (!is_array($data))
- {
- trigger_error($user->lang['VAR_NOT_ARRAY'], E_USER_WARNING);
- }
-
- if ( $data['domain'] == '' )
- {
- trigger_error($user->lang['NO_DOMAIN_SUPPLIED']);
- }
-
- //Check if the name or domain name already exist.
- $sql = 'SELECT * FROM '. $table_prefix . 'sites WHERE name=\''.$data['name'].'\'';
- $result = $db->sql_query($sql);
- if (sizeof($db->sql_fetchrowset($result)) > 0)
- {
- trigger_error($user->lang['DUPLI_NAME']);
- }
-
- //Vars for group creation:
- $g_type = 'GROUP_CLOSED';
- $g_name = 'registered_'.preg_replace('/\s\s+/','_',$data['name']);
- $g_desc = 'The members of '.$data['name'];
- $g_att = array('group_legend' => 0);
-
-
- if (group_create($group_id,$g_type,$g_name,$g_desc,$g_att))
- {
- trigger_error($user->lang['GRP_ADD_FAIL']);
- }
- else
- {
- $sql = 'SELECT * FROM '.GROUPS_TABLE.' WHERE group_name=\'registered_'.$data['name'].'\'';
- $data['group_id'] = $db->sql_fetchfield('group_id',0,$db->sql_query($sql));
-
- $site_ins = array ( 'name' => $data['name'],
- 'description' => $data['desc'],
- 'group_id' => $data['group_id'],
- 'home' => $data['home'],
- 'default_style' => $data['style'] );
-
- //Insert into sites table.
- if( !$db->sql_query('INSERT INTO '. $table_prefix .'sites '.$db->sql_build_array('INSERT',$site_ins)))
- {
- trigger_error($user->lang['SITE_ADD_FAIL']);
- }
-
- $sql = 'SELECT * FROM '. $table_prefix .'sites WHERE name=\''.$data['name'].'\'';
- $data['site_id'] = $db->sql_fetchfield('site_id',0,$db->sql_query($sql));
-
- if(add_url($data))
- {
- return $data['site_id'];
- }
-
- }
-}
?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-08-30 16:22:36
|
Revision: 28
http://thevr.svn.sourceforge.net/thevr/?rev=28&view=rev
Author: Yautja_cetanu
Date: 2007-08-30 09:22:37 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
Renamed the folders install and config stuff on thevrCVS
Added Paths:
-----------
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_config.php
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install/
Removed Paths:
-------------
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/config.php
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/installold/
Copied: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_config.php (from rev 27, mods/pms/branches/thevr_0_2CVS(phpbbRC5)/config.php)
===================================================================
Copied: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/_install (from rev 27, mods/pms/branches/thevr_0_2CVS(phpbbRC5)/installold)
Deleted: mods/pms/branches/thevr_0_2CVS(phpbbRC5)/config.php
===================================================================
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <Yau...@us...> - 2007-08-30 14:42:47
|
Revision: 27
http://thevr.svn.sourceforge.net/thevr/?rev=27&view=rev
Author: Yautja_cetanu
Date: 2007-08-30 07:42:51 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
Copied remotely - in order to find the diffs of the CVS to our SVN trunk
Added Paths:
-----------
mods/pms/branches/thevr_0_2CVS(phpbbRC5)/
Copied: mods/pms/branches/thevr_0_2CVS(phpbbRC5) (from rev 26, mods/pms/tags/thevr_0_2CVS)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <yau...@us...> - 2007-08-30 12:32:37
|
Revision: 26
http://thevr.svn.sourceforge.net/thevr/?rev=26&view=rev
Author: yautja_cetanu
Date: 2007-08-30 05:32:36 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
Added and tagged vendor/phpbb3RC1
Added Paths:
-----------
vendor/phpBB3/tags/phpBB3RC1/
vendor/phpBB3/tags/phpBB3RC1/_config.php
vendor/phpBB3/tags/phpBB3RC1/_install/
vendor/phpBB3/tags/phpBB3RC1/_install/convertors/
vendor/phpBB3/tags/phpBB3RC1/_install/convertors/convert_phpbb20.php
vendor/phpBB3/tags/phpBB3RC1/_install/convertors/functions_phpbb20.php
vendor/phpBB3/tags/phpBB3RC1/_install/database_update.php
vendor/phpBB3/tags/phpBB3RC1/_install/index.php
vendor/phpBB3/tags/phpBB3RC1/_install/install_convert.php
vendor/phpBB3/tags/phpBB3RC1/_install/install_install.php
vendor/phpBB3/tags/phpBB3RC1/_install/install_main.php
vendor/phpBB3/tags/phpBB3RC1/_install/phpinfo.php
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/firebird_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/index.htm
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/mssql_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/mysql_40_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/mysql_41_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/oracle_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/postgres_schema.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/schema_data.sql
vendor/phpBB3/tags/phpBB3RC1/_install/schemas/sqlite_schema.sql
vendor/phpBB3/tags/phpBB3RC1/adm/
vendor/phpBB3/tags/phpBB3RC1/adm/images/
vendor/phpBB3/tags/phpBB3RC1/adm/images/arrow_down.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/arrow_left.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/arrow_right.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/arrow_up.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_button.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_hash1.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_hash2.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_hash3.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_hash4.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_header.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_header.jpg
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_tabs1.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_tabs2.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_tabs_alt1.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/bg_tabs_alt2.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/cellpic3.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/corners_left.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/corners_left2.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/corners_right.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/corners_right2.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_conflict.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_modified.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_new.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_new_conflict.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_not_modified.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/file_up_to_date.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/gradient2b.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_delete.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_delete_disabled.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_down.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_down_disabled.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_edit.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_edit_disabled.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_folder.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_folder_link.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_folder_lock.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_subfolder.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_sync.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_sync_disabled.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_trace.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_up.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/icon_up_disabled.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/innerbox_bg.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/no_avatar.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/no_image.png
vendor/phpBB3/tags/phpBB3RC1/adm/images/phpbb_logo.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/progress_bar.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/spacer.gif
vendor/phpBB3/tags/phpBB3RC1/adm/images/toggle.gif
vendor/phpBB3/tags/phpBB3RC1/adm/index.php
vendor/phpBB3/tags/phpBB3RC1/adm/style/
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_attachments.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_ban.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_bbcodes.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_board.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_bots.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_captcha.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_database.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_disallow.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_email.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_forums.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_groups.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_icons.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_inactive.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_jabber.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_language.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_logs.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_main.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_modules.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_permission_roles.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_permissions.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_php_info.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_profile.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_prune_forums.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_prune_users.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_ranks.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_reasons.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_search.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_styles.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_update.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_avatar.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_feedback.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_overview.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_prefs.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_profile.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_users_signature.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/acp_words.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/admin.css
vendor/phpBB3/tags/phpBB3RC1/adm/style/colour_swatch.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/confirm_body.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/confirm_body_prune.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/custom_profile_fields.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/editor.js
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_convert.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_error.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_footer.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_header.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_install.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_main.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_update.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/install_update_diff.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/message_body.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/overall_footer.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/overall_header.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/permission_mask.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/permission_roles_mask.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/permission_trace.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/permissions.js
vendor/phpBB3/tags/phpBB3RC1/adm/style/progress_bar.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/simple_body.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/simple_footer.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/simple_header.html
vendor/phpBB3/tags/phpBB3RC1/adm/style/tooltip.js
vendor/phpBB3/tags/phpBB3RC1/adm/style/viewsource.html
vendor/phpBB3/tags/phpBB3RC1/adm/swatch.php
vendor/phpBB3/tags/phpBB3RC1/cache/
vendor/phpBB3/tags/phpBB3RC1/cache/.htaccess
vendor/phpBB3/tags/phpBB3RC1/cache/index.htm
vendor/phpBB3/tags/phpBB3RC1/common.php
vendor/phpBB3/tags/phpBB3RC1/cron.php
vendor/phpBB3/tags/phpBB3RC1/docs/
vendor/phpBB3/tags/phpBB3RC1/docs/AUTHORS
vendor/phpBB3/tags/phpBB3RC1/docs/CHANGELOG.html
vendor/phpBB3/tags/phpBB3RC1/docs/COPYING
vendor/phpBB3/tags/phpBB3RC1/docs/FAQ.html
vendor/phpBB3/tags/phpBB3RC1/docs/INSTALL.html
vendor/phpBB3/tags/phpBB3RC1/docs/README.html
vendor/phpBB3/tags/phpBB3RC1/docs/auth_api.html
vendor/phpBB3/tags/phpBB3RC1/docs/coding-guidelines.html
vendor/phpBB3/tags/phpBB3RC1/docs/header_bg.jpg
vendor/phpBB3/tags/phpBB3RC1/docs/header_left.jpg
vendor/phpBB3/tags/phpBB3RC1/download.php
vendor/phpBB3/tags/phpBB3RC1/faq.php
vendor/phpBB3/tags/phpBB3RC1/files/
vendor/phpBB3/tags/phpBB3RC1/files/.htaccess
vendor/phpBB3/tags/phpBB3RC1/files/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/gallery/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/gallery/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/avatars/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/avatars/upload/
vendor/phpBB3/tags/phpBB3RC1/images/avatars/upload/.htaccess
vendor/phpBB3/tags/phpBB3RC1/images/avatars/upload/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/icons/
vendor/phpBB3/tags/phpBB3RC1/images/icons/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/fire.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/heart.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/radioactive.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/star.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/misc/thinking.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/alert.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/info.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/mrgreen.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/question.gif
vendor/phpBB3/tags/phpBB3RC1/images/icons/smile/redface.gif
vendor/phpBB3/tags/phpBB3RC1/images/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/ranks/
vendor/phpBB3/tags/phpBB3RC1/images/ranks/index.htm
vendor/phpBB3/tags/phpBB3RC1/images/smilies/
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_arrow.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_confused.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_cool.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_cry.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_biggrin.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_confused.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_geek.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_sad.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_smile.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_surprised.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_ugeek.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_e_wink.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_eek.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_evil.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_exclaim.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_idea.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_lol.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_mad.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_mrgreen.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_neutral.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_question.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_razz.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_redface.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_rolleyes.gif
vendor/phpBB3/tags/phpBB3RC1/images/smilies/icon_twisted.gif
vendor/phpBB3/tags/phpBB3RC1/images/spacer.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/avi.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/bmp.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/doc.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/exe.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/flash.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/gif.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/html.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/jpg.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/mid.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/mov.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/mp3.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/mpg.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/netscape.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/pdf.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/ppt.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/rar.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/txt.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/wav.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/xls.gif
vendor/phpBB3/tags/phpBB3RC1/images/upload_icons/zip.gif
vendor/phpBB3/tags/phpBB3RC1/includes/
vendor/phpBB3/tags/phpBB3RC1/includes/acm/
vendor/phpBB3/tags/phpBB3RC1/includes/acm/acm_file.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_attachments.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_ban.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_bbcodes.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_board.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_bots.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_captcha.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_database.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_disallow.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_email.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_forums.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_groups.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_icons.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_inactive.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_jabber.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_language.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_logs.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_modules.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_permission_roles.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_permissions.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_php_info.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_profile.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_prune.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_ranks.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_reasons.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_search.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_styles.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_update.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_users.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/acp_words.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/auth.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_attachments.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_ban.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_bbcodes.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_board.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_bots.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_captcha.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_database.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_disallow.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_email.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_forums.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_groups.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_icons.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_inactive.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_jabber.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_language.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_logs.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_modules.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_permission_roles.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_permissions.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_php_info.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_profile.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_prune.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_ranks.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_reasons.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_search.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_styles.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_update.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_users.php
vendor/phpBB3/tags/phpBB3RC1/includes/acp/info/acp_words.php
vendor/phpBB3/tags/phpBB3RC1/includes/auth/
vendor/phpBB3/tags/phpBB3RC1/includes/auth/auth_apache.php
vendor/phpBB3/tags/phpBB3RC1/includes/auth/auth_db.php
vendor/phpBB3/tags/phpBB3RC1/includes/auth/auth_ldap.php
vendor/phpBB3/tags/phpBB3RC1/includes/auth/index.htm
vendor/phpBB3/tags/phpBB3RC1/includes/auth.php
vendor/phpBB3/tags/phpBB3RC1/includes/bbcode.php
vendor/phpBB3/tags/phpBB3RC1/includes/cache.php
vendor/phpBB3/tags/phpBB3RC1/includes/captcha/
vendor/phpBB3/tags/phpBB3RC1/includes/captcha/captcha_gd.php
vendor/phpBB3/tags/phpBB3RC1/includes/captcha/captcha_non_gd.php
vendor/phpBB3/tags/phpBB3RC1/includes/constants.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/
vendor/phpBB3/tags/phpBB3RC1/includes/db/dbal.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/firebird.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/index.htm
vendor/phpBB3/tags/phpBB3RC1/includes/db/mssql.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/mssql_odbc.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/mysql.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/mysqli.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/oracle.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/postgres.php
vendor/phpBB3/tags/phpBB3RC1/includes/db/sqlite.php
vendor/phpBB3/tags/phpBB3RC1/includes/diff/
vendor/phpBB3/tags/phpBB3RC1/includes/diff/diff.php
vendor/phpBB3/tags/phpBB3RC1/includes/diff/engine.php
vendor/phpBB3/tags/phpBB3RC1/includes/diff/renderer.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_admin.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_compress.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_convert.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_display.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_install.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_jabber.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_messenger.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_module.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_posting.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_privmsgs.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_profile_fields.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_template.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_transfer.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_upload.php
vendor/phpBB3/tags/phpBB3RC1/includes/functions_user.php
vendor/phpBB3/tags/phpBB3RC1/includes/index.htm
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_ban.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_logs.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_notes.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_queue.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_reports.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/info/mcp_warn.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_ban.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_forum.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_front.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_logs.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_notes.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_post.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_queue.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_reports.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_topic.php
vendor/phpBB3/tags/phpBB3RC1/includes/mcp/mcp_warn.php
vendor/phpBB3/tags/phpBB3RC1/includes/message_parser.php
vendor/phpBB3/tags/phpBB3RC1/includes/search/
vendor/phpBB3/tags/phpBB3RC1/includes/search/fulltext_mysql.php
vendor/phpBB3/tags/phpBB3RC1/includes/search/fulltext_native.php
vendor/phpBB3/tags/phpBB3RC1/includes/search/index.htm
vendor/phpBB3/tags/phpBB3RC1/includes/search/search.php
vendor/phpBB3/tags/phpBB3RC1/includes/session.php
vendor/phpBB3/tags/phpBB3RC1/includes/template.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_attachments.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_groups.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_pm.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_prefs.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_profile.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/info/ucp_zebra.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_activate.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_attachments.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_confirm.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_groups.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_main.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_pm.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_pm_compose.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_pm_options.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_pm_viewfolder.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_pm_viewmessage.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_prefs.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_profile.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_register.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_remind.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_resend.php
vendor/phpBB3/tags/phpBB3RC1/includes/ucp/ucp_zebra.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/case_fold_c.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/case_fold_f.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/case_fold_s.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/recode_basic.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/recode_cjk.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_0.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_1.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_19.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_2.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_20.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_21.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_26.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_3.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_31.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_32.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_33.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_36.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_4.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_448.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_5.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_58.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_6.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_64.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_84.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_9.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/search_indexer_95.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_canonical_comp.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_canonical_decomp.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_compatibility_decomp.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_nfc_qc.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_nfkc_qc.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/data/utf_normalizer_common.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/utf_normalizer.php
vendor/phpBB3/tags/phpBB3RC1/includes/utf/utf_tools.php
vendor/phpBB3/tags/phpBB3RC1/index.php
vendor/phpBB3/tags/phpBB3RC1/language/
vendor/phpBB3/tags/phpBB3RC1/language/en/
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/attachments.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/ban.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/board.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/bots.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/common.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/database.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/email.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/forums.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/groups.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/index.htm
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/language.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/modules.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/permissions.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/permissions_phpbb.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/posting.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/profile.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/prune.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/search.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/styles.php
vendor/phpBB3/tags/phpBB3RC1/language/en/acp/users.php
vendor/phpBB3/tags/phpBB3RC1/language/en/common.php
vendor/phpBB3/tags/phpBB3RC1/language/en/email/
vendor/phpBB3/tags/phpBB3RC1/language/en/email/admin_activate.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/admin_send_email.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/admin_welcome_activated.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/admin_welcome_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/coppa_resend_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/coppa_welcome_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/email_notify.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/forum_notify.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/group_added.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/group_approved.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/group_request.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/index.htm
vendor/phpBB3/tags/phpBB3RC1/language/en/email/installed.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/newtopic_notify.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/post_approved.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/post_disapproved.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/privmsg_notify.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/profile_send_email.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/profile_send_im.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/report_closed.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/report_deleted.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/topic_approved.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/topic_disapproved.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/topic_notify.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_activate.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_activate_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_activate_passwd.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_reactivate_account.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_remind_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_resend_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_welcome.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/email/user_welcome_inactive.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/groups.php
vendor/phpBB3/tags/phpBB3RC1/language/en/help_bbcode.php
vendor/phpBB3/tags/phpBB3RC1/language/en/help_faq.php
vendor/phpBB3/tags/phpBB3RC1/language/en/index.htm
vendor/phpBB3/tags/phpBB3RC1/language/en/install.php
vendor/phpBB3/tags/phpBB3RC1/language/en/iso.txt
vendor/phpBB3/tags/phpBB3RC1/language/en/mcp.php
vendor/phpBB3/tags/phpBB3RC1/language/en/memberlist.php
vendor/phpBB3/tags/phpBB3RC1/language/en/mods/
vendor/phpBB3/tags/phpBB3RC1/language/en/mods/index.htm
vendor/phpBB3/tags/phpBB3RC1/language/en/posting.php
vendor/phpBB3/tags/phpBB3RC1/language/en/search.php
vendor/phpBB3/tags/phpBB3RC1/language/en/search_ignore_words.php
vendor/phpBB3/tags/phpBB3RC1/language/en/search_synonyms.php
vendor/phpBB3/tags/phpBB3RC1/language/en/ucp.php
vendor/phpBB3/tags/phpBB3RC1/language/en/viewforum.php
vendor/phpBB3/tags/phpBB3RC1/language/en/viewtopic.php
vendor/phpBB3/tags/phpBB3RC1/language/index.htm
vendor/phpBB3/tags/phpBB3RC1/mcp.php
vendor/phpBB3/tags/phpBB3RC1/memberlist.php
vendor/phpBB3/tags/phpBB3RC1/posting.php
vendor/phpBB3/tags/phpBB3RC1/report.php
vendor/phpBB3/tags/phpBB3RC1/search.php
vendor/phpBB3/tags/phpBB3RC1/store/
vendor/phpBB3/tags/phpBB3RC1/store/.htaccess
vendor/phpBB3/tags/phpBB3RC1/style.php
vendor/phpBB3/tags/phpBB3RC1/styles/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/announce_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_pm_forward.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_pm_new.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_pm_reply.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_topic_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_topic_new.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/button_topic_reply.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/icon_contact_pm.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/icon_post_edit.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/icon_post_quote.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/icon_user_online.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/imageset.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/en/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_link.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_read_subforum.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/forum_unread_subforum.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_back_top.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_aim.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_email.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_icq.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_jabber.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_msnm.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_www.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_contact_yahoo.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_offline.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_online.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_post_delete.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_post_info.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_post_report.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_post_target.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_post_target_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_rate_bad.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_rate_good.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_topic_attach.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_topic_latest.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_topic_newest.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_topic_reported.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_topic_unapproved.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/icon_user_warn.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/imageset.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/site_logo.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/sticky_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/subforum_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/subforum_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_moved.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read_hot.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read_hot_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread_hot.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread_hot_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/imageset/topic_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/style.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/attachment.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/bbcode.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/confirm_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/custom_profile_fields.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/drafts.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/editor.js
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/faq_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/forum_fn.js
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/forumlist_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/index_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/jumpbox.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/login_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/login_forum.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_approve.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_ban.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_forum.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_logs.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_message.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_move.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_notes_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_notes_user.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_post.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_queue.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_reports.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_topic.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_viewlogs.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_warn_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_warn_list.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_warn_post.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_warn_user.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/mcp_whois.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_email.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_im.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_leaders.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_search.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/memberlist_view.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/message_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/overall_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/overall_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_attach_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_buttons.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_editor.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_layout.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_pm_layout.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_poll_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_preview.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_review.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_smilies.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/posting_topic_review.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/report_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/search_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/search_results.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/simple_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/simple_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/styleswitcher.js
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/template.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_agreement.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_attachments.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_avatar_options.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_groups_manage.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_groups_membership.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_main_bookmarks.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_main_drafts.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_main_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_main_subscribed.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_history.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_message_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_message_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_options.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_popup.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_viewfolder.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_viewmessage.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_pm_viewmessage_print.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_prefs_personal.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_prefs_post.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_prefs_view.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_profile_avatar.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_profile_profile_info.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_profile_reg_details.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_profile_signature.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_register.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_remind.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_resend.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_zebra_foes.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/ucp_zebra_friends.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/viewforum_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/viewonline_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/viewonline_whois.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/viewtopic_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/template/viewtopic_print.html
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/buttons.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/colours.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/common.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/content.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/cp.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/forms.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/arrow_down.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/arrow_left.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/arrow_right.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/arrow_up.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_button.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_header.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_list.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_menu.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_tabs1.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/bg_tabs2.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_left.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_left.png
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_left2.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_right.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_right.png
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/corners_right2.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/created_by.jpg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/gradient.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_bookmark.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_bump.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_faq.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_fontsize.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_home.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_logout.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_members.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_pages.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_print.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_register.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_search.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_sendemail.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_subscribe.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_textbox_search.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_ucp.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/icon_unsubscribe.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/no_avatar.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/images/quote.gif
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/large.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/links.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/medium.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/normal.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/print.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/stylesheet.css
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/theme.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/prosilver/theme/tweaks.css
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/announce_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/button_pm_new.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/button_pm_reply.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/button_topic_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/button_topic_new.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/button_topic_reply.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_aim.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_email.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_icq.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_jabber.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_msnm.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_pm.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_www.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_contact_yahoo.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_post_delete.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_post_edit.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_post_info.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_post_quote.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_post_report.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_user_offline.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_user_online.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_user_profile.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_user_search.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/icon_user_warn.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/en/imageset.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_link.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_read_subforum.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/forum_unread_subforum.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_post_target.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_post_target_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_topic_attach.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_topic_latest.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_topic_newest.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_topic_reported.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/icon_topic_unapproved.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/imageset.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/poll_center.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/poll_left.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/poll_right.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/site_logo.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/sticky_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_moved.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read_hot.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read_hot_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_read_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread_hot.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread_hot_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread_locked.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread_locked_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/topic_unread_mine.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/imageset/upload_bar.gif
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/style.cfg
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/attachment.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/bbcode.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/breadcrumbs.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/confirm_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/custom_profile_fields.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/editor.js
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/faq_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/forumlist_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/index.htm
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/index_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/jumpbox.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/login_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/login_forum.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_approve.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_ban.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_forum.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_jumpbox.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_logs.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_message.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_move.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_notes_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_notes_user.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_post.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_queue.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_reports.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_topic.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_viewlogs.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_warn_front.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_warn_list.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_warn_post.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_warn_user.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/mcp_whois.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_email.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_group.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_im.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_leaders.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_search.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/memberlist_view.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/message_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/overall_footer.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/overall_header.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/pagination.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_attach_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_buttons.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_poll_body.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_preview.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_progress_bar.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_review.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_smilies.html
vendor/phpBB3/tags/phpBB3RC1/styles/subsilver2/template/posting_topic...
[truncated message content] |
|
From: <ree...@us...> - 2007-08-30 11:55:25
|
Revision: 25
http://thevr.svn.sourceforge.net/thevr/?rev=25&view=rev
Author: reekingofrandom
Date: 2007-08-30 04:55:26 -0700 (Thu, 30 Aug 2007)
Log Message:
-----------
ReekingofRandomness - Commented out the temporary addition at the end of common.php
-Added the install Script
Modified Paths:
--------------
mods/pms/trunk/common.php
Added Paths:
-----------
mods/pms/trunk/thevr_pms_install.php
Modified: mods/pms/trunk/common.php
===================================================================
--- mods/pms/trunk/common.php 2007-08-30 11:52:24 UTC (rev 24)
+++ mods/pms/trunk/common.php 2007-08-30 11:55:26 UTC (rev 25)
@@ -1,10 +1,10 @@
<?php
-/**
+/**
*
* @package phpBB3
* @version $Id: common.php,v 1.205 2007/08/13 12:14:05 acydburn Exp $
-* @copyright (c) 2005 phpBB Group
-* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Minimum Requirement: PHP 4.3.3
*/
@@ -206,14 +206,14 @@
while ($i <= $bits)
{
$domains[$i] = $domain_bits[$bits - $i] . '.' . $domains[$i - 1];
-
+
$i++;
}
$sql = 'SELECT s.*, su.domain
FROM ' . SITES_TABLE . ' s INNER JOIN ' . SITE_URL_TABLE . ' su ON s.site_id = su.site_id
WHERE su.domain IN ';
-
+$notfirst = false;
foreach ($domains AS $key => $value)
{
$sql .= ($notfirst == false) ? '(': ', ';
@@ -245,7 +245,7 @@
'site_domain' => $domain,
'site_file' => $filename,
'site_vars' => $vars)
-
+
);
}
//Fetch site specific config data:
@@ -263,4 +263,19 @@
}
/***** END *****/
+/* Temporary addition until cookies are sorted:
+ if (strpos($domain, 'thevr.co.uk') == false AND $domain != 'thevr.co.uk')
+ {
+ $sql = 'SELECT su.domain
+ FROM ' . SITE_URL_TABLE . " AS su
+ WHERE su.site_id = '" . $config['site_id'] . "'
+ AND su.domain LIKE '%thevr.co.uk'
+ LIMIT 1";
+ $result = $db->sql_query($sql);
+ $row = $db->sql_fetchrow($result);
+
+ header('Location: http://' . $row['domain'] . $_SERVER['REQUEST_URI']);
+ }
+*/
+
?>
\ No newline at end of file
Added: mods/pms/trunk/thevr_pms_install.php
===================================================================
--- mods/pms/trunk/thevr_pms_install.php (rev 0)
+++ mods/pms/trunk/thevr_pms_install.php 2007-08-30 11:55:26 UTC (rev 25)
@@ -0,0 +1,305 @@
+<?php
+/**
+*
+* @package phpBB3
+* @version $Id: thevr_install.php
+* @copyright (c) 2005 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/**
+* @ignore
+*/
+define('IN_PHPBB', true);
+$phpbb_root_path = './';
+$phpEx = substr(strrchr(__FILE__, '.'), 1);
+include($phpbb_root_path . 'common.' . $phpEx);
+
+$mode = request_var('mode','');
+if($auth->acl_gets('acl_a_server'))
+{
+ trigger_error('You are nto permitted to install this modification');
+}
+
+switch ($mode)
+{
+ case 'install':
+ //Install
+ /* _site_config */
+ $sql = "CREATE TABLE `" . $table_prefix . "site_config` (
+ `config_name` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
+ `config_value` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
+ `is_dynamic` tinyint(1) NOT NULL,
+ `site_id` mediumint(4) NOT NULL,
+ `overide` tinyint(1) NOT NULL
+ )";
+
+ if($db->sql_query($sql))
+ {
+ $success[] = 'site_config';
+ }
+ else
+ {
+ define('ERROR',true);
+ }
+
+ /* _site_urls */
+ $sql = "CREATE TABLE `" . $table_prefix . "site_urls` (
+ `id` mediumint(8) NOT NULL auto_increment,
+ `site_id` mediumint(4) NOT NULL,
+ `domain` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ PRIMARY KEY (`id`)
+ )";
+
+ if($db->sql_query($sql))
+ {
+ $success[] = 'site_urls';
+ }
+ else
+ {
+ define('ERROR',true);
+ }
+
+ /* _sites */
+
+ $sql = "CREATE TABLE `" . $table_prefix . "sites` (
+ `site_id` mediumint(4) NOT NULL auto_increment,
+ `name` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ `description` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ `group_id` mediumint(8) NOT NULL default '1',
+ `home` varchar(255) character set utf8 collate utf8_bin NOT NULL default 'index.php',
+ `default_style` tinyint(4) NOT NULL default '1',
+ PRIMARY KEY (`site_id`)
+ )";
+
+ if($db->sql_query($sql))
+ {
+ $success[] = 'sites';
+ }
+ else
+ {
+ define('ERROR',true);
+ }
+
+
+ if(defined('ERROR'))
+ {
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
+
+ trigger_error('TheVR Mod :: Failed to create tables');
+ }
+
+ //Create Permissions
+ $sql = "INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_a', '1', '0', '0' ),
+ ( NULL , 'a_sites_e', '1', '0', '0' ),
+ ( NULL , 'a_sites_d', '1', '0', '0' ),
+ ( NULL , 'a_sites_ug', '1', '0', '0' ),
+ ( NULL , 'a_sites_f', '1', '0', '0' )";
+
+ if(!$db->sql_query($sql))
+ {
+ define('ERROR',true);
+ }
+
+ if(defined('ERROR'))
+ {
+ trigger_error('TheVR Mod :: Failed to create permissions');
+
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
+ }
+
+ //Update forums table
+ $sql = "ALTER TABLE `phpbb_forums` ADD `site_id` MEDIUMINT( 4 ) NOT NULL DEFAULT '0';";
+
+ if(!$db->sql_query($sql))
+ {
+ define('ERROR',true);
+ }
+
+ if(defined('ERROR'))
+ {
+ trigger_error('TheVR Mod :: Failed to alter forums table');
+
+ foreach($success as $i => $table)
+ {
+ $sql = "DROP TABLE " . $table_prefix . $table . " ";
+ @$db->sql_query($sql);
+ }
+ }
+
+ //Put initial data into table.
+ $data = array( 'name' => $config['sitename'],
+ 'domain' => $config['server_name'],
+ 'desc' => $config['site_desc'],
+ 'group_id' => '',
+ 'home' => '',
+ 'style' => $config['default_style']);
+
+ add_site($data);
+
+ trigger_error('TheVR Mod :: Successful Installation');
+
+ break;
+ case 'update':
+ $vers = request_var('v','');
+ switch ($vers)
+ {
+ case '':
+ default:
+ break;
+ }
+ break;
+ case 'view':
+ echo "<h1>View Changes</h1><br />";
+ echo "CREATE TABLE `" . $table_prefix . "site_config` (
+ <br /> `config_name` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
+ <br /> `config_value` varchar(255) character set latin1 collate latin1_general_ci NOT NULL,
+ <br /> `is_dynamic` tinyint(1) NOT NULL,
+ <br /> `site_id` mediumint(4) NOT NULL,
+ <br /> `overide` tinyint(1) NOT NULL
+ <br />)";
+ echo " <br /><br /> ";
+ echo "CREATE TABLE `" . $table_prefix . "site_urls` (
+ <br /> `id` mediumint(8) NOT NULL auto_increment,
+ <br /> `site_id` mediumint(4) NOT NULL,
+ <br /> `domain` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ <br />PRIMARY KEY (`id`))";
+ echo " <br /><br /> ";
+ echo " CREATE TABLE `" . $table_prefix . "sites` (
+ <br /> `site_id` mediumint(4) NOT NULL auto_increment,
+ <br /> `name` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ <br /> `description` varchar(255) character set utf8 collate utf8_bin NOT NULL,
+ <br /> `group_id` mediumint(8) NOT NULL default '1',
+ <br /> `home` varchar(255) character set utf8 collate utf8_bin NOT NULL default 'index.php',
+ <br /> `default_style` tinyint(4) NOT NULL default '1',
+ <br />PRIMARY KEY (`site_id`))";
+ echo " <br /><br /> ";
+ echo " INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_a', '1', '0', '0' );<br />
+ <br />INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_e', '1', '0', '0' );<br />
+ <br />INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_d', '1', '0', '0' );<br />
+ <br />INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_ug', '1', '0', '0' );<br />
+ <br />INSERT INTO `phpbb_acl_options` ( `auth_option_id` , `auth_option` , `is_global` , `is_local` , `founder_only` ) VALUES ( NULL , 'a_sites_f', '1', '0', '0' );";
+ echo " <br /><br /> ";
+ echo " ALTER TABLE `phpbb_forums` ADD `site_id` MEDIUMINT( 4 ) NOT NULL DEFAULT '0';";
+ break;
+ default:
+ echo "<h1>TheVR Pseudo Multi-Site (PMS) Mod </h1><br />";
+ echo "<a href=\"thevr_pms_install.php?mode=install\">Fresh Install</a>
+ <br />
+ <br />
+ <b>Upgrade From:</b>
+ <br />
+ <ul>
+ <li>...</li>
+ </ul>
+ <br />
+ <a href=\"thevr_pms_install.php?mode=view\">View Changes</a>";
+ break;
+
+}
+
+//Functions
+
+function add_url($data)
+{
+ global $db, $user, $table_prefix;
+
+ if (!is_array($data))
+ {
+ trigger_error($user->lang['VAR_NOT_ARRAY'], E_USER_WARNING);
+ }
+
+ //Check if domain already exists.
+ $sql = 'SELECT * FROM '. $table_prefix . 'site_urls WHERE domain=\''.$data['domain'].'\'';
+ $result = $db->sql_query($sql);
+ if (sizeof($db->sql_fetchrowset($result)) > 0)
+ {
+ trigger_error($user->lang['DUPLI_DOMAIN']);
+ }
+
+ $siteurl_ins = array ( 'site_id' => $data['site_id'],
+ 'domain' => $data['domain'] );
+
+ if( !$db->sql_query('INSERT INTO '. $table_prefix . 'site_urls '.$db->sql_build_array('INSERT',$siteurl_ins)))
+ {
+ trigger_error($user->lang['SITE_URL_ADD_FAIL']);
+ }
+ else
+ {
+ return true;
+ }
+}
+
+
+function add_site($data)
+{
+ global $db, $user, $table_prefix, $phpbb_root_path;
+
+ include($phpbb_root_path . 'includes/functions_user.php');
+
+ if (!is_array($data))
+ {
+ trigger_error($user->lang['VAR_NOT_ARRAY'], E_USER_WARNING);
+ }
+
+ if ( $data['domain'] == '' )
+ {
+ trigger_error($user->lang['NO_DOMAIN_SUPPLIED']);
+ }
+
+ //Check if the name or domain name already exist.
+ $sql = 'SELECT * FROM '. $table_prefix . 'sites WHERE name=\''.$data['name'].'\'';
+ $result = $db->sql_query($sql);
+ if (sizeof($db->sql_fetchrowset($result)) > 0)
+ {
+ trigger_error($user->lang['DUPLI_NAME']);
+ }
+
+ //Vars for group creation:
+ $g_type = 'GROUP_CLOSED';
+ $g_name = 'registered_'.preg_replace('/\s\s+/','_',$data['name']);
+ $g_desc = 'The members of '.$data['name'];
+ $g_att = array('group_legend' => 0);
+
+
+ if (group_create($group_id,$g_type,$g_name,$g_desc,$g_att))
+ {
+ trigger_error($user->lang['GRP_ADD_FAIL']);
+ }
+ else
+ {
+ $sql = 'SELECT * FROM '.GROUPS_TABLE.' WHERE group_name=\'registered_'.$data['name'].'\'';
+ $data['group_id'] = $db->sql_fetchfield('group_id',0,$db->sql_query($sql));
+
+ $site_ins = array ( 'name' => $data['name'],
+ 'description' => $data['desc'],
+ 'group_id' => $data['group_id'],
+ 'home' => $data['home'],
+ 'default_style' => $data['style'] );
+
+ //Insert into sites table.
+ if( !$db->sql_query('INSERT INTO '. $table_prefix .'sites '.$db->sql_build_array('INSERT',$site_ins)))
+ {
+ trigger_error($user->lang['SITE_ADD_FAIL']);
+ }
+
+ $sql = 'SELECT * FROM '. $table_prefix .'sites WHERE name=\''.$data['name'].'\'';
+ $data['site_id'] = $db->sql_fetchfield('site_id',0,$db->sql_query($sql));
+
+ if(add_url($data))
+ {
+ return $data['site_id'];
+ }
+
+ }
+}
+?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|