author | Dan |
Thu, 03 Jan 2008 00:53:33 -0500 | |
changeset 345 | 4ccdfeee9a11 |
parent 343 | eefe9ab7fe7c |
child 351 | 8978cb3541ca |
permissions | -rw-r--r-- |
1 | 1 |
<?php |
2 |
||
3 |
/** |
|
4 |
* Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between |
|
166
d53cc29308f4
Rebrand as 1.1.1; everything should now be bumped to "unstable" status
Dan
parents:
156
diff
changeset
|
5 |
* Version 1.1.1 |
1 | 6 |
* Copyright (C) 2006-2007 Dan Fuhry |
7 |
* paths.php - The part of Enano that actually manages content. Everything related to page handling and namespaces is in here. |
|
8 |
* |
|
9 |
* This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License |
|
10 |
* as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
|
11 |
* |
|
12 |
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied |
|
13 |
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details. |
|
14 |
* |
|
15 |
* @package Enano |
|
16 |
* @subpackage PathManager |
|
23
320acf077276
At last, I fixed all those phased-out enano.homelinux.org links!
Dan
parents:
21
diff
changeset
|
17 |
* @see http://enanocms.org/Help:API_Documentation |
1 | 18 |
*/ |
19 |
||
20 |
class pathManager { |
|
322
5f1cd51bf1be
Many changes. Installer with PostgreSQL is broken badly and will be for some time.
Dan
parents:
320
diff
changeset
|
21 |
var $pages, $custom_page, $cpage, $page, $fullpage, $page_exists, $page_id, $namespace, $nslist, $admin_tree, $wiki_mode, $page_protected, $template_cache, $anonymous_page; |
1 | 22 |
function __construct() |
23 |
{ |
|
24 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
25 |
||
26 |
$GLOBALS['paths'] =& $this; |
|
27 |
$this->pages = Array(); |
|
28 |
||
29 |
// DEFINE NAMESPACES HERE |
|
30 |
// The key names should NOT EVER be changed, or Enano will be very broken |
|
31 |
$this->nslist = Array( |
|
32 |
'Article' =>'', |
|
33 |
'User' =>'User:', |
|
34 |
'File' =>'File:', |
|
35 |
'Help' =>'Help:', |
|
36 |
'Admin' =>'Admin:', |
|
37 |
'Special' =>'Special:', |
|
38 |
'System' =>'Enano:', |
|
39 |
'Template'=>'Template:', |
|
40 |
'Category'=>'Category:', |
|
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
41 |
'Anonymous'=>'PhysicalRedirect:', |
40
723bb7acf914
Fixed a lot of bugs with Safari and Konqueror; improved Opera compatibility
Dan
parents:
30
diff
changeset
|
42 |
'Project' =>sanitize_page_id(getConfig('site_name')).':', |
1 | 43 |
); |
44 |
||
45 |
// ACL types |
|
46 |
// These can also be added from within plugins |
|
47 |
||
218 | 48 |
$session->register_acl_type('read', AUTH_ALLOW, 'perm_read'); |
49 |
$session->register_acl_type('post_comments', AUTH_ALLOW, 'perm_post_comments', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
50 |
$session->register_acl_type('edit_comments', AUTH_ALLOW, 'perm_edit_comments', Array('post_comments'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
51 |
$session->register_acl_type('edit_page', AUTH_WIKIMODE, 'perm_edit_page', Array('view_source'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
52 |
$session->register_acl_type('view_source', AUTH_WIKIMODE, 'perm_view_source', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); // Only used if the page is protected |
|
53 |
$session->register_acl_type('mod_comments', AUTH_DISALLOW, 'perm_mod_comments', Array('edit_comments'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
54 |
$session->register_acl_type('history_view', AUTH_WIKIMODE, 'perm_history_view', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
55 |
$session->register_acl_type('history_rollback', AUTH_DISALLOW, 'perm_history_rollback', Array('history_view'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
238 | 56 |
$session->register_acl_type('history_rollback_extra', AUTH_DISALLOW, 'perm_history_rollback_extra', Array('history_rollback'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
218 | 57 |
$session->register_acl_type('protect', AUTH_DISALLOW, 'perm_protect', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
58 |
$session->register_acl_type('rename', AUTH_WIKIMODE, 'perm_rename', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
59 |
$session->register_acl_type('clear_logs', AUTH_DISALLOW, 'perm_clear_logs', Array('read', 'protect', 'even_when_protected'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
60 |
$session->register_acl_type('vote_delete', AUTH_ALLOW, 'perm_vote_delete', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
61 |
$session->register_acl_type('vote_reset', AUTH_DISALLOW, 'perm_vote_reset', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
62 |
$session->register_acl_type('delete_page', AUTH_DISALLOW, 'perm_delete_page', Array(), 'Article|User|Project|Template|File|Help|System|Category'); |
|
63 |
$session->register_acl_type('tag_create', AUTH_ALLOW, 'perm_tag_create', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
64 |
$session->register_acl_type('tag_delete_own', AUTH_ALLOW, 'perm_tag_delete_own', Array('read', 'tag_create'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
65 |
$session->register_acl_type('tag_delete_other', AUTH_DISALLOW, 'perm_tag_delete_other', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
66 |
$session->register_acl_type('set_wiki_mode', AUTH_DISALLOW, 'perm_set_wiki_mode', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
67 |
$session->register_acl_type('password_set', AUTH_DISALLOW, 'perm_password_set', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
68 |
$session->register_acl_type('password_reset', AUTH_DISALLOW, 'perm_password_reset', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
69 |
$session->register_acl_type('mod_misc', AUTH_DISALLOW, 'perm_mod_misc', Array(), 'All'); |
|
70 |
$session->register_acl_type('edit_cat', AUTH_WIKIMODE, 'perm_edit_cat', Array('read'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
71 |
$session->register_acl_type('even_when_protected', AUTH_DISALLOW, 'perm_even_when_protected', Array('edit_page', 'rename', 'mod_comments', 'edit_cat'), 'Article|User|Project|Template|File|Help|System|Category'); |
|
72 |
$session->register_acl_type('upload_files', AUTH_DISALLOW, 'perm_upload_files', Array('create_page'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
73 |
$session->register_acl_type('upload_new_version', AUTH_WIKIMODE, 'perm_upload_new_version', Array('upload_files'), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
74 |
$session->register_acl_type('create_page', AUTH_WIKIMODE, 'perm_create_page', Array(), 'Article|User|Project|Template|File|Help|System|Category|Special'); |
|
75 |
$session->register_acl_type('php_in_pages', AUTH_DISALLOW, 'perm_php_in_pages', Array('edit_page'), 'Article|User|Project|Template|File|Help|System|Category|Admin'); |
|
76 |
$session->register_acl_type('edit_acl', AUTH_DISALLOW, 'perm_edit_acl', Array('read', 'post_comments', 'edit_comments', 'edit_page', 'view_source', 'mod_comments', 'history_view', 'history_rollback', 'history_rollback_extra', 'protect', 'rename', 'clear_logs', 'vote_delete', 'vote_reset', 'delete_page', 'set_wiki_mode', 'password_set', 'password_reset', 'mod_misc', 'edit_cat', 'even_when_protected', 'upload_files', 'upload_new_version', 'create_page', 'php_in_pages')); |
|
1 | 77 |
|
78 |
// DO NOT add new admin pages here! Use a plugin to call $paths->addAdminNode(); |
|
211 | 79 |
$this->addAdminNode('adm_cat_general', 'adm_page_general_config', 'GeneralConfig'); |
80 |
$this->addAdminNode('adm_cat_general', 'adm_page_file_uploads', 'UploadConfig'); |
|
81 |
$this->addAdminNode('adm_cat_general', 'adm_page_file_types', 'UploadAllowedMimeTypes'); |
|
82 |
$this->addAdminNode('adm_cat_general', 'adm_page_plugins', 'PluginManager'); |
|
83 |
$this->addAdminNode('adm_cat_general', 'adm_page_db_backup', 'DBBackup'); |
|
84 |
$this->addAdminNode('adm_cat_content', 'adm_page_manager', 'PageManager'); |
|
85 |
$this->addAdminNode('adm_cat_content', 'adm_page_editor', 'PageEditor'); |
|
86 |
$this->addAdminNode('adm_cat_content', 'adm_page_pg_groups', 'PageGroups'); |
|
87 |
$this->addAdminNode('adm_cat_appearance', 'adm_page_themes', 'ThemeManager'); |
|
88 |
$this->addAdminNode('adm_cat_users', 'adm_page_users', 'UserManager'); |
|
89 |
$this->addAdminNode('adm_cat_users', 'adm_page_user_groups', 'GroupManager'); |
|
90 |
$this->addAdminNode('adm_cat_users', 'adm_page_coppa', 'COPPA'); |
|
91 |
$this->addAdminNode('adm_cat_users', 'adm_page_mass_email', 'MassEmail'); |
|
92 |
$this->addAdminNode('adm_cat_security', 'adm_page_security_log', 'SecurityLog'); |
|
93 |
$this->addAdminNode('adm_cat_security', 'adm_page_ban_control', 'BanControl'); |
|
1 | 94 |
|
95 |
$code = $plugins->setHook('acl_rule_init'); |
|
96 |
foreach ( $code as $cmd ) |
|
97 |
{ |
|
98 |
eval($cmd); |
|
99 |
} |
|
100 |
||
101 |
$this->wiki_mode = (int)getConfig('wiki_mode')=='1'; |
|
102 |
$this->template_cache = Array(); |
|
103 |
} |
|
104 |
function init() |
|
105 |
{ |
|
106 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
107 |
||
108 |
$code = $plugins->setHook('paths_init_before'); |
|
109 |
foreach ( $code as $cmd ) |
|
110 |
{ |
|
111 |
eval($cmd); |
|
112 |
} |
|
113 |
||
286
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
272
diff
changeset
|
114 |
$e = $db->sql_query('SELECT name,urlname,namespace,special,visible,comments_on,protected,delvotes,' . "\n" |
b2f985e4cef3
Fixed a number of issues with SQL query readability and some undefined index-ish errors; consequently the SQL report feature was added
Dan
parents:
272
diff
changeset
|
115 |
. ' delvote_ips,wiki_mode,password FROM '.table_prefix.'pages ORDER BY name;'); |
1 | 116 |
if( !$e ) |
117 |
{ |
|
118 |
$db->_die('The error seems to have occured while selecting the page information. File: includes/paths.php; line: '.__LINE__); |
|
119 |
} |
|
120 |
while($r = $db->fetchrow()) |
|
121 |
{ |
|
122 |
||
123 |
$r['urlname_nons'] = $r['urlname']; |
|
124 |
$r['urlname'] = $this->nslist[$r['namespace']] . $r['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
125 |
||
126 |
if ( $r['delvotes'] == null) |
|
127 |
{ |
|
128 |
$r['delvotes'] = 0; |
|
129 |
} |
|
130 |
if ( $r['protected'] == 0 || $r['protected'] == 1 ) |
|
131 |
{ |
|
132 |
$r['really_protected'] = (int)$r['protected']; |
|
133 |
} |
|
134 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '1') |
|
135 |
{ |
|
136 |
$r['really_protected'] = 1; |
|
137 |
} |
|
138 |
else if ( $r['protected'] == 2 && getConfig('wiki_mode') == '0' ) |
|
139 |
{ |
|
140 |
$r['really_protected'] = 0; |
|
141 |
} |
|
142 |
||
143 |
$this->pages[$r['urlname']] = $r; |
|
144 |
$this->pages[] =& $this->pages[$r['urlname']]; |
|
145 |
||
146 |
} |
|
147 |
$db->free_result(); |
|
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
148 |
if ( defined('ENANO_INTERFACE_INDEX') || defined('ENANO_INTERFACE_AJAX') || defined('IN_ENANO_INSTALL') || defined('IN_ENANO_UPGRADE') ) |
1 | 149 |
{ |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
150 |
if( isset($_GET['title']) ) |
1 | 151 |
{ |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
152 |
if ( $_GET['title'] == '' && getConfig('main_page') != '' ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
153 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
154 |
$this->main_page(); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
155 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
156 |
if(strstr($_GET['title'], ' ')) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
157 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
158 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
159 |
$loc = str_replace(' ', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
160 |
$loc = str_replace('+', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
161 |
$loc = str_replace('%20', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
162 |
redirect($loc, 'Redirecting...', 'Space detected in the URL, please wait whilst you are redirected', 0); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
163 |
exit; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
164 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
165 |
$url_namespace_special = substr($_GET['title'], 0, strlen($this->nslist['Special']) ); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
166 |
$url_namespace_template = substr($_GET['title'], 0, strlen($this->nslist['Template']) ); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
167 |
if($url_namespace_special == $this->nslist['Special'] || $url_namespace_template == $this->nslist['Template'] ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
168 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
169 |
$ex = explode('/', $_GET['title']); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
170 |
$this->page = $ex[0]; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
171 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
172 |
else |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
173 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
174 |
$this->page = $_GET['title']; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
175 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
176 |
$this->fullpage = $_GET['title']; |
1 | 177 |
} |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
178 |
elseif( isset($_SERVER['PATH_INFO']) ) |
1 | 179 |
{ |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
180 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
181 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
182 |
if( !isset($pi[1]) || (isset($pi[1]) && $pi[1] == '' && getConfig('main_page') != '') ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
183 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
184 |
$this->main_page(); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
185 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
186 |
if( strstr($pi[1], ' ') ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
187 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
188 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
189 |
$loc = str_replace('+', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
190 |
$loc = str_replace('%20', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
191 |
redirect($loc, 'Redirecting...', 'Please wait whilst you are redirected', 3); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
192 |
exit; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
193 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
194 |
unset($pi[0]); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
195 |
if( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || substr($pi[1], 0, strlen($this->nslist['Template'])) == $this->nslist['Template'] ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
196 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
197 |
$pi2 = $pi[1]; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
198 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
199 |
else |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
200 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
201 |
$pi2 = implode('/', $pi); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
202 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
203 |
$this->page = $pi2; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
204 |
$this->fullpage = implode('/', $pi); |
1 | 205 |
} |
206 |
else |
|
207 |
{ |
|
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
208 |
$k = array_keys($_GET); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
209 |
foreach($k as $c) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
210 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
211 |
if(substr($c, 0, 1) == '/') |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
212 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
213 |
$this->page = substr($c, 1, strlen($c)); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
214 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
215 |
// Bugfix for apache somehow passing dots as underscores |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
216 |
global $mime_types; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
217 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
218 |
$exts = array_keys($mime_types); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
219 |
$exts = '(' . implode('|', $exts) . ')'; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
220 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
221 |
if ( preg_match( '#_'.$exts.'#i', $this->page ) ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
222 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
223 |
$this->page = preg_replace( '#_'.$exts.'#i', '.\\1', $this->page ); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
224 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
225 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
226 |
$this->fullpage = $this->page; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
227 |
|
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
228 |
if(substr($this->page, 0, strlen($this->nslist['Special']))==$this->nslist['Special'] || substr($this->page, 0, strlen($this->nslist['Template']))==$this->nslist['Template']) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
229 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
230 |
$ex = explode('/', $this->page); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
231 |
$this->page = $ex[0]; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
232 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
233 |
if(strstr($this->page, ' ')) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
234 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
235 |
$loc = str_replace(' ', '_', urldecode(rawurldecode($_SERVER['REQUEST_URI']))); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
236 |
$loc = str_replace('+', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
237 |
$loc = str_replace('%20', '_', $loc); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
238 |
redirect($loc, 'Redirecting...', 'Space in the URL detected, please wait whilst you are redirected', 0); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
239 |
exit; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
240 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
241 |
break; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
242 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
243 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
244 |
if(!$this->page && !($this->page == '' && getConfig('main_page') == '')) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
245 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
246 |
$this->main_page(); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
247 |
} |
1 | 248 |
} |
249 |
} |
|
250 |
else |
|
251 |
{ |
|
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
252 |
// Starting up Enano with the API from a page that wants to do its own thing. Generate |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
253 |
// metadata for an anonymous page and avoid redirection at all costs. |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
254 |
if ( isset($GLOBALS['title']) ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
255 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
256 |
$title =& $GLOBALS['title']; |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
257 |
} |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
258 |
else |
1 | 259 |
{ |
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
260 |
$title = basename($_SERVER['SCRIPT_NAME']); |
1 | 261 |
} |
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
262 |
$base_uri = str_replace( scriptPath . '/', '', $_SERVER['SCRIPT_NAME'] ); |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
263 |
$this->page = $this->nslist['Anonymous'] . sanitize_page_id($base_uri); |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
264 |
$this->fullpage = $this->nslist['Anonymous'] . sanitize_page_id($base_uri); |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
265 |
$this->namespace = 'Anonymous'; |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
266 |
$this->cpage = array( |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
267 |
'name' => $title, |
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
268 |
'urlname' => sanitize_page_id($base_uri), |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
269 |
'namespace' => 'Anonymous', |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
270 |
'special' => 1, |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
271 |
'visible' => 1, |
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
272 |
'comments_on' => 1, |
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
273 |
'protected' => 1, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
274 |
'delvotes' => 0, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
275 |
'delvote_ips' => '' |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
276 |
); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
277 |
$this->anonymous_page = true; |
312
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
278 |
$code = $plugins->setHook('paths_anonymous_page'); |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
279 |
foreach ( $code as $cmd ) |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
280 |
{ |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
281 |
eval($cmd); |
6c7060d36a23
Improved physical pages: they support comments and have their own dedicated namespace now. Still some consistency fixes to make.
Dan
parents:
311
diff
changeset
|
282 |
} |
1 | 283 |
} |
284 |
||
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
285 |
$this->page = sanitize_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
286 |
$this->fullpage = sanitize_page_id($this->fullpage); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
287 |
|
1 | 288 |
if(isset($this->pages[$this->page])) |
289 |
{ |
|
290 |
$this->page_exists = true; |
|
291 |
$this->cpage = $this->pages[$this->page]; |
|
322
5f1cd51bf1be
Many changes. Installer with PostgreSQL is broken badly and will be for some time.
Dan
parents:
320
diff
changeset
|
292 |
$this->page_id =& $this->cpage['urlname_nons']; |
1 | 293 |
$this->namespace = $this->cpage['namespace']; |
294 |
if(!isset($this->cpage['wiki_mode'])) $this->cpage['wiki_mode'] = 2; |
|
295 |
||
296 |
// Determine the wiki mode for this page, now that we have this->cpage established |
|
297 |
if($this->cpage['wiki_mode'] == 2) |
|
298 |
{ |
|
299 |
$this->wiki_mode = (int)getConfig('wiki_mode'); |
|
300 |
} |
|
301 |
else |
|
302 |
{ |
|
303 |
$this->wiki_mode = $this->cpage['wiki_mode']; |
|
304 |
} |
|
305 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
306 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
307 |
{ |
|
308 |
$this->wiki_mode = true; |
|
309 |
} |
|
310 |
// And above all, if the site requires wiki mode to be off for non-logged-in users, disable it now |
|
311 |
if(getConfig('wiki_mode_require_login')=='1' && !$session->user_logged_in) |
|
312 |
{ |
|
313 |
$this->wiki_mode = false; |
|
314 |
} |
|
315 |
if($this->cpage['protected'] == 2) |
|
316 |
{ |
|
317 |
// The page is semi-protected, determine permissions |
|
318 |
if($session->user_logged_in && $session->reg_time + 60*60*24*4 < time()) |
|
319 |
{ |
|
320 |
$this->page_protected = 0; |
|
321 |
} |
|
322 |
else |
|
323 |
{ |
|
324 |
$this->page_protected = 1; |
|
325 |
} |
|
326 |
} |
|
327 |
else |
|
328 |
{ |
|
329 |
$this->page_protected = $this->cpage['protected']; |
|
330 |
} |
|
331 |
} |
|
332 |
else |
|
333 |
{ |
|
334 |
$this->page_exists = false; |
|
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
335 |
$page_name = dirtify_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
336 |
$page_name = str_replace('_', ' ', $page_name); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
337 |
|
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
338 |
$pid_cleaned = sanitize_page_id($this->page); |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
339 |
if ( $pid_cleaned != $this->page ) |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
340 |
{ |
325
e17cc42d77cf
Fixed: $paths->page_id not set when the page doesn't exist; finally fixed garbled page names for IP addresses
Dan
parents:
322
diff
changeset
|
341 |
redirect(makeUrl($pid_cleaned), 'Sanitizer message', 'page id sanitized', 0); |
15
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
342 |
} |
ad5986a53197
Fixed complicated SQL injection vulnerability in URL handler, updated license info for Tigra Tree Menu, and killed one XSS vulnerability
Dan
parents:
11
diff
changeset
|
343 |
|
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
344 |
if ( !is_array($this->cpage) ) |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
345 |
{ |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
346 |
$this->cpage = Array( |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
347 |
'name'=>$page_name, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
348 |
'urlname'=>$this->page, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
349 |
'namespace'=>'Article', |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
350 |
'special'=>0, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
351 |
'visible'=>0, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
352 |
'comments_on'=>1, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
353 |
'protected'=>0, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
354 |
'delvotes'=>0, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
355 |
'delvote_ips'=>'', |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
356 |
'wiki_mode'=>2, |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
357 |
); |
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
358 |
} |
1 | 359 |
// Look for a namespace prefix in the urlname, and assign a different namespace, if necessary |
360 |
$k = array_keys($this->nslist); |
|
361 |
for($i=0;$i<sizeof($this->nslist);$i++) |
|
362 |
{ |
|
363 |
$ln = strlen($this->nslist[$k[$i]]); |
|
364 |
if( substr($this->page, 0, $ln) == $this->nslist[$k[$i]] ) |
|
365 |
{ |
|
366 |
$this->cpage['namespace'] = $k[$i]; |
|
367 |
$this->cpage['urlname_nons'] = substr($this->page, strlen($this->nslist[$this->cpage['namespace']]), strlen($this->page)); |
|
368 |
if(!isset($this->cpage['wiki_mode'])) |
|
369 |
{ |
|
370 |
$this->cpage['wiki_mode'] = 2; |
|
371 |
} |
|
372 |
} |
|
373 |
} |
|
374 |
$this->namespace = $this->cpage['namespace']; |
|
325
e17cc42d77cf
Fixed: $paths->page_id not set when the page doesn't exist; finally fixed garbled page names for IP addresses
Dan
parents:
322
diff
changeset
|
375 |
$this->page_id =& $this->cpage['urlname_nons']; |
1 | 376 |
|
377 |
if($this->namespace=='System') |
|
378 |
{ |
|
379 |
$this->cpage['protected'] = 1; |
|
380 |
} |
|
311
a007145a0ff6
Deprecated debugConsole and removed all calls to it. Added a lot of comments to common.php. Added support for "anonymous pages" that are created when the Enano API is loaded from an external script. Fixed missing border-bottom on Type 2 sidebar blocks in Oxygen.
Dan
parents:
292
diff
changeset
|
381 |
if($this->namespace == 'Special' && !$this->anonymous_page) |
1 | 382 |
{ |
383 |
// Can't load nonexistent pages |
|
116
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
384 |
if( is_string(getConfig('main_page')) ) |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
385 |
{ |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
386 |
$main_page = makeUrl(getConfig('main_page')); |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
387 |
} |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
388 |
else |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
389 |
{ |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
390 |
$main_page = makeUrl($this->pages[0]['urlname']); |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
391 |
} |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
392 |
$sp_link = '<a href="' . makeUrlNS('Special', 'SpecialPages') . '">here</a>'; |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
393 |
redirect($main_page, 'Can\'t load special page', 'The special page you requested could not be found. This may be due to a plugin failing to load. A list of all special pages on this website can be viewed '.$sp_link.'. You will be redirected to the main page in 15 seconds.', 14); |
77c75179bb95
Made most special pages "visible"; fixup for non-existent special page redirect in paths.php; rewrote Special:AllPages to have pagination (WiP, Special:SpecialPages is possibly next, depending on whether paginate_array works or not)
Dan
parents:
109
diff
changeset
|
394 |
exit; |
1 | 395 |
} |
396 |
// Allow the user to create/modify his user page uncondtionally (admins can still protect the page) |
|
397 |
if($this->page == $this->nslist['User'].str_replace(' ', '_', $session->username)) |
|
398 |
{ |
|
399 |
$this->wiki_mode = true; |
|
400 |
} |
|
401 |
} |
|
402 |
// This is used in the admin panel to keep track of form submission targets |
|
403 |
$this->cpage['module'] = $this->cpage['urlname']; |
|
404 |
||
405 |
// Page is set up, call any hooks |
|
406 |
$code = $plugins->setHook('page_set'); |
|
407 |
foreach ( $code as $cmd ) |
|
408 |
{ |
|
409 |
eval($cmd); |
|
410 |
} |
|
411 |
||
412 |
$session->init_permissions(); |
|
413 |
} |
|
414 |
||
415 |
function add_page($flags) |
|
416 |
{ |
|
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
417 |
global $lang; |
1 | 418 |
$flags['urlname_nons'] = $flags['urlname']; |
419 |
$flags['urlname'] = $this->nslist[$flags['namespace']] . $flags['urlname']; // Applies the User:/File:/etc prefixes to the URL names |
|
334
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
420 |
|
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
421 |
if ( is_object($lang) ) |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
422 |
{ |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
423 |
if ( preg_match('/^[a-z0-9]+_[a-z0-9_]+$/', $flags['name']) ) |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
424 |
$flags['name'] = $lang->get($flags['name']); |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
425 |
} |
c72b545f1304
More localization work. Resolved major issue with JSON parser not parsing files over ~50KB. Switched JSON parser to the one from the Zend Framework (BSD licensed). Forced to split enano.json into five different files.
Dan
parents:
326
diff
changeset
|
426 |
|
1 | 427 |
$pages_len = sizeof($this->pages)/2; |
428 |
$this->pages[$pages_len] = $flags; |
|
429 |
$this->pages[$flags['urlname']] =& $this->pages[$pages_len]; |
|
430 |
} |
|
431 |
||
432 |
function main_page() |
|
433 |
{ |
|
434 |
if( is_string(getConfig('main_page')) ) |
|
435 |
{ |
|
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
436 |
$main_page = makeUrl(getConfig('main_page')); |
1 | 437 |
} |
438 |
else |
|
439 |
{ |
|
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
440 |
$main_page = makeUrl($this->pages[0]['urlname']); |
1 | 441 |
} |
93
95c4d91bd954
Redirections to the main page use the redirect() function now
Dan
parents:
80
diff
changeset
|
442 |
redirect($main_page, 'Redirecting...', 'Invalid request, redirecting to main page', 0); |
1 | 443 |
exit; |
444 |
} |
|
445 |
||
446 |
function sysmsg($n) |
|
447 |
{ |
|
448 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
343
eefe9ab7fe7c
Localized the first parts of the admin panel. As a consequence, also wrote a brand new Admin:PageManager that doesn't suck like the old one did.
Dan
parents:
334
diff
changeset
|
449 |
$q = $db->sql_query('SELECT page_text, char_tag FROM '.table_prefix.'page_text WHERE page_id=\''.$db->escape(sanitize_page_id($n)).'\' AND namespace=\'System\''); |
1 | 450 |
if( !$q ) |
451 |
{ |
|
452 |
$db->_die('Error during generic selection of system page data.'); |
|
453 |
} |
|
454 |
if($db->numrows() < 1) |
|
455 |
{ |
|
456 |
return false; |
|
457 |
//$db->_die('Error during generic selection of system page data: there were no rows in the text table that matched the page text query.'); |
|
458 |
} |
|
459 |
$r = $db->fetchrow(); |
|
460 |
$db->free_result(); |
|
461 |
$message = $r['page_text']; |
|
462 |
||
463 |
$message = preg_replace('/<noinclude>(.*?)<\/noinclude>/is', '', $message); |
|
343
eefe9ab7fe7c
Localized the first parts of the admin panel. As a consequence, also wrote a brand new Admin:PageManager that doesn't suck like the old one did.
Dan
parents:
334
diff
changeset
|
464 |
$message = preg_replace('/<nodisplay>(.*?)<\/nodisplay>/is', '\\1', $message); |
1 | 465 |
|
466 |
return $message; |
|
467 |
} |
|
468 |
function get_pageid_from_url() |
|
469 |
{ |
|
470 |
if(isset($_GET['title'])) |
|
471 |
{ |
|
472 |
if( $_GET['title'] == '' && getConfig('main_page') != '' ) |
|
473 |
{ |
|
474 |
$this->main_page(); |
|
475 |
} |
|
476 |
if(strstr($_GET['title'], ' ')) |
|
477 |
{ |
|
478 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
479 |
$loc = str_replace(' ', '_', $loc); |
|
480 |
$loc = str_replace('+', '_', $loc); |
|
481 |
header('Location: '.$loc); |
|
482 |
exit; |
|
483 |
} |
|
484 |
$ret = $_GET['title']; |
|
485 |
} |
|
486 |
elseif(isset($_SERVER['PATH_INFO'])) |
|
487 |
{ |
|
488 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
489 |
||
490 |
if(!isset($pi[1]) || (isset($pi[1]) && $pi[1] == '')) |
|
491 |
{ |
|
492 |
return false; |
|
493 |
} |
|
494 |
||
495 |
if(strstr($pi[1], ' ')) |
|
496 |
{ |
|
497 |
$loc = urldecode(rawurldecode($_SERVER['REQUEST_URI'])); |
|
498 |
$loc = str_replace(' ', '_', $loc); |
|
499 |
$loc = str_replace('+', '_', $loc); |
|
500 |
header('Location: '.$loc); |
|
501 |
exit; |
|
502 |
} |
|
503 |
if( !( substr($pi[1], 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] ) ) |
|
504 |
{ |
|
505 |
unset($pi[0]); |
|
506 |
$pi[1] = implode('/', $pi); |
|
507 |
} |
|
508 |
$ret = $pi[1]; |
|
509 |
} |
|
510 |
else |
|
511 |
{ |
|
512 |
$k = array_keys($_GET); |
|
513 |
foreach($k as $c) |
|
514 |
{ |
|
515 |
if(substr($c, 0, 1) == '/') |
|
516 |
{ |
|
517 |
$ret = substr($c, 1, strlen($c)); |
|
518 |
if(substr($ret, 0, strlen($this->nslist['Special'])) == $this->nslist['Special'] || |
|
519 |
substr($ret, 0, strlen($this->nslist['Admin'])) == $this->nslist['Admin']) |
|
520 |
{ |
|
521 |
$ret = explode('/', $ret); |
|
522 |
$ret = $ret[0]; |
|
523 |
} |
|
524 |
break; |
|
525 |
} |
|
526 |
} |
|
527 |
} |
|
528 |
||
529 |
return ( isset($ret) ) ? $ret : false; |
|
530 |
} |
|
531 |
// Parses a (very carefully formed) array into Javascript code compatible with the Tigra Tree Menu used in the admin menu |
|
532 |
function parseAdminTree() |
|
533 |
{ |
|
211 | 534 |
global $lang; |
535 |
||
1 | 536 |
$k = array_keys($this->admin_tree); |
537 |
$i = 0; |
|
538 |
$ret = ''; |
|
211 | 539 |
$ret .= "var TREE_ITEMS = [\n ['" . $lang->get('adm_btn_home') . "', 'javascript:ajaxPage(\'".$this->nslist['Admin']."Home\');',\n "; |
1 | 540 |
foreach($k as $key) |
541 |
{ |
|
542 |
$i++; |
|
211 | 543 |
$name = ( preg_match('/^[a-z0-9_]+$/', $key) ) ? $lang->get($key) : $key; |
544 |
$ret .= "['".$name."', 'javascript:trees[0].toggle($i)', \n"; |
|
1 | 545 |
foreach($this->admin_tree[$key] as $c) |
546 |
{ |
|
547 |
$i++; |
|
211 | 548 |
$name = ( preg_match('/^[a-z0-9_]+$/', $key) ) ? $lang->get($c['name']) : $c['name']; |
549 |
||
550 |
$ret .= " ['".$name."', 'javascript:ajaxPage(\\'".$this->nslist['Admin'].$c['pageid']."\\');'],\n"; |
|
1 | 551 |
} |
552 |
$ret .= " ],\n"; |
|
553 |
} |
|
211 | 554 |
$ret .= " ['" . $lang->get('adm_btn_logout') . "', 'javascript:ajaxPage(\\'".$this->nslist['Admin']."AdminLogout\\');'],\n"; |
555 |
$ret .= " ['<span id=\\'keepalivestat\\'>" . $lang->get('adm_btn_keepalive_loading') . "</span>', 'javascript:ajaxToggleKeepalive();', |
|
556 |
['" . $lang->get('adm_btn_keepalive_about') . "', 'javascript:aboutKeepAlive();'] |
|
118
0c5efda996bf
Added keep-alive function to admin panel (had been planned for some time) and a new hook, template_var_init_end
Dan
parents:
116
diff
changeset
|
557 |
],\n"; |
1 | 558 |
// I used this while I painstakingly wrote the Runt code that auto-expands certain nodes based on the value of a bitfield stored in a cookie. *shudders* |
559 |
// $ret .= " ['(debug) Clear menu bitfield', 'javascript:createCookie(\\'admin_menu_state\\', \\'1\\', 365);'],\n"; |
|
560 |
$ret .= "]\n];"; |
|
561 |
return $ret; |
|
562 |
} |
|
563 |
function addAdminNode($section, $page_title, $url) |
|
564 |
{ |
|
565 |
if(!isset($this->admin_tree[$section])) |
|
566 |
{ |
|
567 |
$this->admin_tree[$section] = Array(); |
|
568 |
} |
|
569 |
$this->admin_tree[$section][] = Array( |
|
570 |
'name'=>$page_title, |
|
571 |
'pageid'=>$url |
|
572 |
); |
|
573 |
} |
|
574 |
function getParam($id = 0) |
|
575 |
{ |
|
55
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
576 |
// using !empty here is a bugfix for IIS 5.x on Windows 2000 Server |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
577 |
// It may affect other IIS versions as well |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
578 |
if(isset($_SERVER['PATH_INFO']) && !empty($_SERVER['PATH_INFO'])) |
1 | 579 |
{ |
580 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
581 |
$id = $id + 2; |
|
582 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
583 |
} |
|
584 |
else if( isset($_GET['title']) ) |
|
585 |
{ |
|
586 |
$pi = explode('/', $_GET['title']); |
|
587 |
$id = $id + 1; |
|
588 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
589 |
} |
|
590 |
else |
|
591 |
{ |
|
592 |
$k = array_keys($_GET); |
|
593 |
foreach($k as $c) |
|
594 |
{ |
|
595 |
if(substr($c, 0, 1) == '/') |
|
596 |
{ |
|
597 |
// Bugfix for apache somehow passing dots as underscores |
|
598 |
global $mime_types; |
|
599 |
$exts = array_keys($mime_types); |
|
600 |
$exts = '(' . implode('|', $exts) . ')'; |
|
601 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
602 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
603 |
||
604 |
$pi = explode('/', $c); |
|
605 |
$id = $id + 2; |
|
606 |
return isset($pi[$id]) ? $pi[$id] : false; |
|
607 |
} |
|
608 |
} |
|
609 |
return false; |
|
610 |
} |
|
611 |
} |
|
612 |
||
613 |
function getAllParams() |
|
614 |
{ |
|
55
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
615 |
// using !empty here is a bugfix for IIS 5.x on Windows 2000 Server |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
616 |
// It may affect other IIS versions as well |
622d04f8719d
Fixed problems with $paths->getParam() on Win2k Server/IIS
Dan
parents:
40
diff
changeset
|
617 |
if(isset($_SERVER['PATH_INFO']) && !empty($_SERVER['PATH_INFO'])) |
1 | 618 |
{ |
619 |
$pi = explode('/', $_SERVER['PATH_INFO']); |
|
620 |
unset($pi[0], $pi[1]); |
|
621 |
return implode('/', $pi); |
|
622 |
} |
|
623 |
else if( isset($_GET['title']) ) |
|
624 |
{ |
|
625 |
$pi = explode('/', $_GET['title']); |
|
626 |
unset($pi[0]); |
|
627 |
return implode('/', $pi); |
|
628 |
} |
|
629 |
else |
|
630 |
{ |
|
631 |
$k = array_keys($_GET); |
|
632 |
foreach($k as $c) |
|
633 |
{ |
|
634 |
if(substr($c, 0, 1) == '/') |
|
635 |
{ |
|
636 |
// Bugfix for apache somehow passing dots as underscores |
|
637 |
global $mime_types; |
|
638 |
$exts = array_keys($mime_types); |
|
639 |
$exts = '(' . implode('|', $exts) . ')'; |
|
640 |
if ( preg_match( '#_'.$exts.'#i', $c ) ) |
|
641 |
$c = preg_replace( '#_'.$exts.'#i', '.\\1', $c ); |
|
642 |
||
643 |
$pi = explode('/', $c); |
|
644 |
unset($pi[0], $pi[1]); |
|
645 |
return implode('/', $pi); |
|
646 |
} |
|
647 |
} |
|
648 |
return false; |
|
649 |
} |
|
650 |
} |
|
651 |
||
652 |
/** |
|
653 |
* Creates a new namespace in memory |
|
654 |
* @param string $id the namespace ID |
|
655 |
* @param string $prefix the URL prefix, must not be blank or already used |
|
656 |
* @return bool true on success false on failure |
|
657 |
*/ |
|
658 |
||
659 |
function create_namespace($id, $prefix) |
|
660 |
{ |
|
661 |
if(in_array($prefix, $this->nslist)) |
|
662 |
{ |
|
663 |
// echo '<b>Warning:</b> pathManager::create_namespace: Prefix "'.$prefix.'" is already taken<br />'; |
|
664 |
return false; |
|
665 |
} |
|
666 |
if( isset($this->nslist[$id]) ) |
|
667 |
{ |
|
668 |
// echo '<b>Warning:</b> pathManager::create_namespace: Namespace ID "'.$prefix.'" is already taken<br />'; |
|
669 |
return false; |
|
670 |
} |
|
671 |
$this->nslist[$id] = $prefix; |
|
672 |
} |
|
673 |
||
674 |
/** |
|
675 |
* Fetches the page texts for searching |
|
676 |
*/ |
|
677 |
||
678 |
function fetch_page_search_texts() |
|
679 |
{ |
|
680 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
681 |
$texts = Array(); |
|
682 |
$q = $db->sql_query('SELECT t.page_id,t.namespace,t.page_text,t.char_tag FROM '.table_prefix.'page_text AS t |
|
683 |
LEFT JOIN '.table_prefix.'pages AS p |
|
684 |
ON t.page_id=p.urlname |
|
685 |
WHERE p.namespace=t.namespace |
|
686 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
687 |
AND p.visible=1;'); // Only indexes "visible" pages |
|
688 |
||
689 |
if( !$q ) |
|
690 |
{ |
|
691 |
return false; |
|
692 |
} |
|
693 |
while($row = $db->fetchrow()) |
|
694 |
{ |
|
695 |
$pid = $this->nslist[$row['namespace']] . $row['page_id']; |
|
696 |
$texts[$pid] = $row['page_text']; |
|
697 |
} |
|
698 |
$db->free_result(); |
|
699 |
||
700 |
return $texts; |
|
701 |
} |
|
702 |
||
703 |
/** |
|
272
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
704 |
* Generates an SQL query to grab all of the text |
1 | 705 |
*/ |
706 |
||
707 |
function fetch_page_search_resource() |
|
708 |
{ |
|
709 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
710 |
// sha1('') returns "da39a3ee5e6b4b0d3255bfef95601890afd80709" |
|
320
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
711 |
|
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
712 |
$concat_column = ( ENANO_DBLAYER == 'MYSQL' ) ? |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
713 |
'CONCAT(\'ns=\',t.namespace,\';pid=\',t.page_id)' : |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
714 |
"'ns=' || t.namespace || ';pid=' || t.page_id"; |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
715 |
|
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
716 |
$texts = 'SELECT t.page_text, ' . $concat_column . ' AS page_idstring, t.page_id, t.namespace FROM '.table_prefix.'page_text AS t |
1 | 717 |
LEFT JOIN '.table_prefix.'pages AS p |
718 |
ON ( t.page_id=p.urlname AND t.namespace=p.namespace ) |
|
719 |
WHERE p.namespace=t.namespace |
|
720 |
AND ( p.password=\'\' OR p.password=\'da39a3ee5e6b4b0d3255bfef95601890afd80709\' ) |
|
721 |
AND p.visible=1;'; // Only indexes "visible" pages |
|
722 |
return $texts; |
|
723 |
} |
|
724 |
||
725 |
/** |
|
726 |
* Rebuilds the search index |
|
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
727 |
* @param bool If true, prints out status messages |
1 | 728 |
*/ |
729 |
||
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
730 |
function rebuild_search_index($verbose = false) |
1 | 731 |
{ |
732 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
733 |
$search = new Searcher(); |
|
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
734 |
if ( $verbose ) |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
735 |
{ |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
736 |
echo '<p>'; |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
737 |
} |
1 | 738 |
$texts = Array(); |
739 |
$textq = $db->sql_unbuffered_query($this->fetch_page_search_resource()); |
|
740 |
if(!$textq) $db->_die(''); |
|
272
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
741 |
while($row = $db->fetchrow()) |
1 | 742 |
{ |
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
743 |
if ( $verbose ) |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
744 |
{ |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
745 |
ob_start(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
746 |
echo "Indexing page " . $this->nslist[$row['namespace']] . sanitize_page_id($row['page_id']) . "<br />"; |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
747 |
ob_flush(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
748 |
while (@ob_end_flush()); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
749 |
flush(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
750 |
} |
272
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
751 |
if ( isset($this->nslist[$row['namespace']]) ) |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
752 |
{ |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
753 |
$idstring = $this->nslist[$row['namespace']] . sanitize_page_id($row['page_id']); |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
754 |
if ( isset($this->pages[$idstring]) ) |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
755 |
{ |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
756 |
$page = $this->pages[$idstring]; |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
757 |
} |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
758 |
else |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
759 |
{ |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
760 |
$page = array('name' => dirtify_page_id($row['page_id'])); |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
761 |
} |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
762 |
} |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
763 |
else |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
764 |
{ |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
765 |
$page = array('name' => dirtify_page_id($row['page_id'])); |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
766 |
} |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
767 |
$texts[(string)$row['page_idstring']] = $row['page_text'] . ' ' . $page['name']; |
1 | 768 |
} |
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
769 |
if ( $verbose ) |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
770 |
{ |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
771 |
ob_start(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
772 |
echo "Calculating word list..."; |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
773 |
ob_flush(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
774 |
while (@ob_end_flush()); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
775 |
flush(); |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
776 |
} |
1 | 777 |
$search->buildIndex($texts); |
292
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
778 |
if ( $verbose ) |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
779 |
{ |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
780 |
echo '</p>'; |
b3cfaf0a505c
Fixed highlighting in search results; changed search algorithm to give more score for terms found in page title; hopefully (hackishly) fixed login_key_cache getting too long
Dan
parents:
286
diff
changeset
|
781 |
} |
1 | 782 |
// echo '<pre>'.print_r($search->index, true).'</pre>'; |
783 |
// return; |
|
784 |
$q = $db->sql_query('DELETE FROM '.table_prefix.'search_index'); |
|
785 |
if(!$q) return false; |
|
786 |
$secs = Array(); |
|
787 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
788 |
foreach($search->index as $word => $pages) |
|
789 |
{ |
|
790 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
791 |
} |
|
792 |
$q .= implode(',', $secs); |
|
793 |
unset($secs); |
|
794 |
$q .= ';'; |
|
795 |
$result = $db->sql_query($q); |
|
796 |
$db->free_result(); |
|
797 |
if($result) |
|
798 |
return true; |
|
799 |
else |
|
800 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
801 |
} |
|
802 |
||
803 |
/** |
|
804 |
* Partially rebuilds the search index, removing/inserting entries only for the current page |
|
805 |
* @param string $page_id |
|
806 |
* @param string $namespace |
|
807 |
*/ |
|
808 |
||
809 |
function rebuild_page_index($page_id, $namespace) |
|
810 |
{ |
|
811 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
812 |
if(!$db->sql_query('SELECT page_text FROM '.table_prefix.'page_text |
|
813 |
WHERE page_id=\''.$db->escape($page_id).'\' AND namespace=\''.$db->escape($namespace).'\';')) |
|
814 |
{ |
|
815 |
return $db->get_error(); |
|
816 |
} |
|
272
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
817 |
if ( $db->numrows() < 1 ) |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
818 |
return 'E: No rows'; |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
819 |
$idstring = $this->nslist[$namespace] . sanitize_page_id($page_id); |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
820 |
if ( !isset($this->pages[$idstring]) ) |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
821 |
{ |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
822 |
return 'E: Can\'t find page metadata'; |
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
823 |
} |
1 | 824 |
$row = $db->fetchrow(); |
825 |
$db->free_result(); |
|
826 |
$search = new Searcher(); |
|
272
e0ec986c0af3
Searching sucks, and Enano's search algorithm was complete bullcrap. So I rewrote it. No, it does not use Google search technology. Like they have a patent for using the Arial font on search result pages anyway.
Dan
parents:
256
diff
changeset
|
827 |
$search->buildIndex(Array("ns={$namespace};pid={$page_id}"=>$row['page_text'] . ' ' . $this->pages[$idstring]['name'])); |
1 | 828 |
$new_index = $search->index; |
829 |
||
320
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
830 |
if ( ENANO_DBLAYER == 'MYSQL' ) |
1 | 831 |
{ |
320
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
832 |
$keys = array_keys($search->index); |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
833 |
foreach($keys as $i => $k) |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
834 |
{ |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
835 |
$c =& $keys[$i]; |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
836 |
$c = hexencode($c, '', ''); |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
837 |
} |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
838 |
$keys = "word=0x" . implode ( " OR word=0x", $keys ) . ""; |
1 | 839 |
} |
320
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
840 |
else |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
841 |
{ |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
842 |
$keys = array_keys($search->index); |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
843 |
foreach($keys as $i => $k) |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
844 |
{ |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
845 |
$c =& $keys[$i]; |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
846 |
$c = $db->escape($c); |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
847 |
} |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
848 |
$keys = "word='" . implode ( "' OR word='", $keys ) . "'"; |
112debff64bd
SURPRISE! Preliminary PostgreSQL support added. The required schema file is not present in this commit and will be included at a later date. No installer support is implemented. Also in this commit: several fixes including <!-- SYSMSG ... --> was broken in template compiler; set fixed width on included images to prevent the thumbnail box from getting huge; added a much more friendly interface to AJAX responses that are invalid JSON
Dan
parents:
317
diff
changeset
|
849 |
} |
1 | 850 |
|
851 |
$query = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
852 |
||
853 |
while($row = $db->fetchrow()) |
|
854 |
{ |
|
855 |
$row['word'] = rtrim($row['word'], "\0"); |
|
856 |
$new_index[ $row['word'] ] = $row['page_names'] . ',' . $search->index[ $row['word'] ]; |
|
857 |
} |
|
858 |
$db->free_result(); |
|
859 |
||
860 |
$db->sql_query('DELETE FROM '.table_prefix.'search_index WHERE '.$keys.';'); |
|
861 |
||
862 |
$secs = Array(); |
|
863 |
$q = 'INSERT INTO '.table_prefix.'search_index(word,page_names) VALUES'; |
|
864 |
foreach($new_index as $word => $pages) |
|
865 |
{ |
|
866 |
$secs[] = '(\''.$db->escape($word).'\', \''.$db->escape($pages).'\')'; |
|
867 |
} |
|
868 |
$q .= implode(',', $secs); |
|
869 |
unset($secs); |
|
870 |
$q .= ';'; |
|
871 |
if(!$db->check_query($q)) |
|
872 |
{ |
|
873 |
die('BUG: PathManager::rebuild_page_index: Query rejected by SQL parser:<pre>'.$q.'</pre>'); |
|
874 |
} |
|
875 |
$result = $db->sql_query($q); |
|
876 |
if($result) |
|
877 |
return true; |
|
878 |
else |
|
879 |
$db->_die('The search index was trying to rebuild itself when the error occured.'); |
|
880 |
||
881 |
} |
|
882 |
||
883 |
/** |
|
884 |
* Creates an instance of the Searcher class, including index info |
|
885 |
* @return object |
|
886 |
*/ |
|
887 |
||
888 |
function makeSearcher($match_case = false) |
|
889 |
{ |
|
890 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
891 |
$search = new Searcher(); |
|
892 |
$q = $db->sql_query('SELECT word,page_names FROM '.table_prefix.'search_index;'); |
|
893 |
if(!$q) |
|
894 |
{ |
|
895 |
echo $db->get_error(); |
|
896 |
return false; |
|
897 |
} |
|
898 |
$idx = Array(); |
|
899 |
while($row = $db->fetchrow($q)) |
|
900 |
{ |
|
901 |
$row['word'] = rtrim($row['word'], "\0"); |
|
902 |
$idx[$row['word']] = $row['page_names']; |
|
903 |
} |
|
904 |
$db->free_result(); |
|
905 |
$search->index = $idx; |
|
906 |
if($match_case) |
|
907 |
$search->match_case = true; |
|
908 |
return $search; |
|
909 |
} |
|
910 |
||
911 |
/** |
|
912 |
* Creates an associative array filled with the values of all the page titles |
|
913 |
* @return array |
|
914 |
*/ |
|
915 |
||
916 |
function get_page_titles() |
|
917 |
{ |
|
918 |
$texts = Array(); |
|
919 |
for ( $i = 0; $i < sizeof($this->pages) / 2; $i++ ) |
|
920 |
{ |
|
921 |
$texts[$this->pages[$i]['urlname']] = $this->pages[$i]['name']; |
|
922 |
} |
|
923 |
return $texts; |
|
924 |
} |
|
925 |
||
926 |
/** |
|
927 |
* Creates an instance of the Searcher class, including index info for page titles |
|
928 |
* @return object |
|
929 |
*/ |
|
930 |
||
931 |
function makeTitleSearcher($match_case = false) |
|
932 |
{ |
|
933 |
global $db, $session, $paths, $template, $plugins; // Common objects |
|
934 |
$search = new Searcher(); |
|
935 |
$texts = $this->get_page_titles(); |
|
936 |
$search->buildIndex($texts); |
|
937 |
if($match_case) |
|
938 |
$search->match_case = true; |
|
939 |
return $search; |
|
940 |
} |
|
941 |
||
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
942 |
/** |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
943 |
* Returns a list of groups that a given page is a member of. |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
944 |
* @param string Page ID |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
945 |
* @param string Namespace |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
946 |
* @return array |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
947 |
*/ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
948 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
949 |
function get_page_groups($page_id, $namespace) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
950 |
{ |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
951 |
global $db, $session, $paths, $template, $plugins; // Common objects |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
952 |
|
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
953 |
static $cache = array(); |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
954 |
|
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
955 |
if ( count($cache) == 0 ) |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
956 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
957 |
foreach ( $this->nslist as $key => $_ ) |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
958 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
959 |
$cache[$key] = array(); |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
960 |
} |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
961 |
} |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
962 |
|
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
963 |
if ( !isset($this->nslist[$namespace]) ) |
151
824821224153
Added a new Javascript variable, aclDisableTransitionFX, that will switch off effects on message boxes and the ACL editor when set to true
Dan
parents:
142
diff
changeset
|
964 |
die('$paths->get_page_groups(): HACKING ATTEMPT: namespace "'. htmlspecialchars($namespace) .'" doesn\'t exist'); |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
965 |
|
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
966 |
$page_id_unescaped = $paths->nslist[$namespace] . |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
967 |
dirtify_page_id($page_id); |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
968 |
$page_id_str = $paths->nslist[$namespace] . |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
969 |
sanitize_page_id($page_id); |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
970 |
|
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
971 |
$page_id = $db->escape(sanitize_page_id($page_id)); |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
972 |
|
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
973 |
if ( isset($cache[$namespace][$page_id]) ) |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
974 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
975 |
return $cache[$namespace][$page_id]; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
976 |
} |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
977 |
|
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
978 |
$group_list = array(); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
979 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
980 |
// What linked categories have this page? |
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
981 |
$q = $db->sql_unbuffered_query('SELECT g.pg_id, g.pg_type, g.pg_target FROM '.table_prefix.'page_groups AS g |
80
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
982 |
LEFT JOIN '.table_prefix.'categories AS c |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
983 |
ON ( ( c.category_id = g.pg_target AND g.pg_type = ' . PAGE_GRP_CATLINK . ' ) OR c.category_id IS NULL ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
984 |
LEFT JOIN '.table_prefix.'page_group_members AS m |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
985 |
ON ( ( g.pg_id = m.pg_id AND g.pg_type = ' . PAGE_GRP_NORMAL . ' ) OR ( m.pg_id IS NULL ) ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
986 |
LEFT JOIN '.table_prefix.'tags AS t |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
987 |
ON ( ( t.tag_name = g.pg_target AND pg_type = ' . PAGE_GRP_TAGGED . ' ) OR t.tag_name IS NULL ) |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
988 |
WHERE |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
989 |
( c.page_id=\'' . $page_id . '\' AND c.namespace=\'' . $namespace . '\' ) OR |
cb7dde69c301
Improved and enabled HTML optimization algorithm; enabled gzip compression; added but did not test at all the tag cloud class in includes/tagcloud.php, this is still very preliminary and not ready for any type of production use
Dan
parents:
76
diff
changeset
|
990 |
( t.page_id=\'' . $page_id . '\' AND t.namespace=\'' . $namespace . '\' ) OR |
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
991 |
( m.page_id=\'' . $page_id . '\' AND m.namespace=\'' . $namespace . '\' ) OR |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
992 |
( g.pg_type = ' . PAGE_GRP_REGEX . ' );'); |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
993 |
if ( !$q ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
994 |
$db->_die(); |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
995 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
996 |
while ( $row = $db->fetchrow() ) |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
997 |
{ |
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
998 |
if ( $row['pg_type'] == PAGE_GRP_REGEX ) |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
999 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1000 |
//echo "<debug> matching page " . htmlspecialchars($page_id_unescaped) . " against regex <tt>" . htmlspecialchars($row['pg_target']) . "</tt>."; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1001 |
if ( @preg_match($row['pg_target'], $page_id_unescaped) || @preg_match($row['pg_target'], $page_id_str) ) |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1002 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1003 |
//echo "..matched"; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1004 |
$group_list[] = $row['pg_id']; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1005 |
} |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1006 |
//echo "<br />"; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1007 |
} |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1008 |
else |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1009 |
{ |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1010 |
$group_list[] = $row['pg_id']; |
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1011 |
} |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1012 |
} |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1013 |
|
74
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
parents:
73
diff
changeset
|
1014 |
$db->free_result(); |
68469a95658d
Various bugfixes and cleanups, too much to remember... see the diffs for what got changed :-)
Dan
parents:
73
diff
changeset
|
1015 |
|
156
edbff85d43e8
Feature add: new page group type: regular expression match (PCRE)
Dan
parents:
151
diff
changeset
|
1016 |
$cache[$namespace][$page_id] = $group_list; |
73
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1017 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1018 |
return $group_list; |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1019 |
|
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1020 |
} |
0a74676a2f2f
Made the move to Loch Ness, and got some basic page grouping functionality working. TODO: fix some UI issues in Javascript ACL editor and change non-JS ACL editor to work with page groups too
Dan
parents:
55
diff
changeset
|
1021 |
|
1 | 1022 |
} |
325
e17cc42d77cf
Fixed: $paths->page_id not set when the page doesn't exist; finally fixed garbled page names for IP addresses
Dan
parents:
322
diff
changeset
|
1023 |
|
1 | 1024 |
?> |