]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - g
Allow bold, italics or underlined for numbers
[SourceForge/phpwiki.git] / g
1 <?php
2 /*
3  * Copyright (C) 2008-2012 Alcatel-Lucent
4  *
5  * This file is part of PhpWiki.
6  *
7  * PhpWiki is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * PhpWiki is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with PhpWiki; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 /*
23  * Standard Alcatel-Lucent disclaimer for contributing to open source
24  *
25  * "The Configuration File ("Contribution") has not been tested and/or
26  * validated for release as or in products, combinations with products or
27  * other commercial use. Any use of the Contribution is entirely made at
28  * the user's own responsibility and the user can not rely on any features,
29  * functionalities or performances Alcatel-Lucent has attributed to the
30  * Contribution.
31  *
32  * THE CONTRIBUTION BY ALCATEL-LUCENT IS PROVIDED AS IS, WITHOUT WARRANTY
33  * OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
34  * WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, COMPLIANCE,
35  * NON-INTERFERENCE AND/OR INTERWORKING WITH THE SOFTWARE TO WHICH THE
36  * CONTRIBUTION HAS BEEN MADE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL
37  * ALCATEL-LUCENT BE LIABLE FOR ANY DAMAGES OR OTHER LIABLITY, WHETHER IN
38  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * CONTRIBUTION OR THE USE OR OTHER DEALINGS IN THE CONTRIBUTION, WHETHER
40  * TOGETHER WITH THE SOFTWARE TO WHICH THE CONTRIBUTION RELATES OR ON A STAND
41  * ALONE BASIS."
42  */
43
44 ini_set("memory_limit", "256M");
45 ini_set('pcre.backtrack_limit', 100000000);
46
47 // Disable compression, seems needed to get all the messages.
48 $no_gz_buffer=true;
49
50 require_once('../../../common/include/env.inc.php');
51 require_once $gfcommon.'include/pre.php';
52 require_once $gfplugins.'wiki/common/wikiconfig.class.php';
53
54 html_use_jquery();
55 if (forge_get_config('use_jquery_form_navigate')) {
56     use_javascript('/scripts/jquery-formnavigate/jquery.FormNavigate-min.js');
57     define('ENABLE_EDIT_TOOLBAR', true);
58 } else {
59     // Disable Toolbar for tests
60     define('ENABLE_EDIT_TOOLBAR', false);
61 }
62
63 if (isset($group_id) && $group_id) {
64     if (! isset($project) || ! $project) {
65         $project = group_get_object($group_id);
66     }
67 } elseif(isset($project) && is_object($project)) {
68     $group_id = $project->getID();
69 }
70
71 if (! isset($group_id) || ! isset($project)) {
72     exit_no_group();
73 } else if (!($project->usesPlugin("wiki"))) {
74     // We should test whether the wiki plugin is disabled globally
75     // in the Forge or by the current project.
76     // exit_disabled('home');
77     exit_project_disabled('home');
78 } else {
79
80     global $robots;
81
82     $robots = "noindex,nofollow";
83
84     $group_name = $project->getUnixName();
85     $group_public_name = $project->getPublicName();
86
87     $is_external = method_exists($project, 'getIsExternal') && $project->getIsExternal();
88
89     $wc = new WikiConfig($group_id);
90
91     define('VIRTUAL_PATH', '/wiki/g/'.$group_name);
92     define('PAGE_PREFIX', '_g'.$group_id.'_');
93
94     // We have to use a smaller value than Phpwiki due to page prefix
95     define('MAX_PAGENAME_LENGTH', 92);
96
97     define('THEME', 'fusionforge');
98
99     // For FusionForge, we create some specific pages, located in the theme
100     // except for given project
101     if ($group_name == forge_get_config('wiki_help_project', 'wiki')) {
102         define('WIKI_PGSRC', 'pgsrc');
103     } else {
104         define('WIKI_PGSRC', 'themes/fusionforge/pgsrc');
105     }
106
107     define('FUSIONFORGE', true);
108
109     define('PATH_INFO_PREFIX', '/'.$group_name . '/');
110     define('USE_PATH_INFO', true);
111
112     define('WIKI_NAME', $group_name);
113
114     define('DISABLE_MARKUP_WIKIWORD', $wc->getWikiConfig('DISABLE_MARKUP_WIKIWORD'));
115
116     define('NUM_SPAM_LINKS', 20 * ($wc->getWikiConfig('NUM_SPAM_LINKS')));
117
118     define('ENABLE_RATEIT', $wc->getWikiConfig('ENABLE_RATEIT'));
119
120     define('UPLOAD_FILE_PATH', forge_get_config('groupdir_prefix').'/'.WIKI_NAME.'/www/uploads/');
121     // define('UPLOAD_DATA_PATH', SERVER_URL . '/www/'.WIKI_NAME.'/uploads/');
122     if ($project->isPublic()) {
123         define('UPLOAD_DATA_PATH', '/www/'.WIKI_NAME.'/uploads/');
124     } else {
125         define('UPLOAD_DATA_PATH', '/wiki/view.php/'.WIKI_NAME.'/uploads/');
126     }
127
128     // Do not use a directory per user but only one (per project)
129     define('UPLOAD_USERDIR', false);
130
131     // Use black list of extensions instead of white list
132     define('DISABLE_UPLOAD_ONLY_ALLOWED_EXTENSIONS', true);
133
134     // Get the maximum upload filesize from PHP config
135     define('MAX_UPLOAD_SIZE', octets(ini_get('upload_max_filesize')));
136
137     // Disable access log (already in Apache & FusionForge).
138     define('ACCESS_LOG_SQL', 0);
139
140     define('DEBUG', (forge_get_config('installation_environment') != 'production'));
141
142     // Postgresql
143     define('DATABASE_TYPE', 'SQL');
144     // Dummy value (to avoid warning in SystemInfo plugin)
145     define('DATABASE_DSN', 'pgsql://localhost/user_phpwiki');
146
147     // Disable VACUUM (they are performed every night)
148     define('DATABASE_OPTIMISE_FREQUENCY', 0);
149
150     // TBD: the name should be taken from FusionForge
151     // define('ADMIN_USER', 'ACOS Forge Administrator');
152     define('ADMIN_USER', 'The PhpWiki programming team');
153     // Dummy value
154     define('ADMIN_PASSWD', 'xxx');
155
156     // Allow ".svg" and ".swf" as extensions
157     define('INLINE_IMAGES', 'png|jpg|jpeg|gif|svg|swf');
158
159     // Allow <div> and <span> in wiki code
160     define('ENABLE_MARKUP_DIVSPAN', true);
161
162     // Disable ENABLE_ACDROPDOWN, it creates a <style> in the <body> (illegal)
163     define('ENABLE_ACDROPDOWN', false);
164     define('ENABLE_AJAX', false);
165
166     define('TOOLBAR_PAGELINK_PULLDOWN', false);
167     define('TOOLBAR_TEMPLATE_PULLDOWN', false);
168     define('TOOLBAR_IMAGE_PULLDOWN', true);
169
170     // Enable external pages
171     define('ENABLE_EXTERNAL_PAGES', $is_external);
172
173     // Let all revisions be stored. Default since 1.3.11
174     define('MAJOR_MIN_KEEP', 2147483647);
175     define('MINOR_MIN_KEEP', 2147483647);
176     define('MAJOR_MAX_AGE', 2147483647);
177     define('MAJOR_KEEP', 2147483647);
178     define('MINOR_MAX_AGE', 2147483647);
179     define('MINOR_KEEP', 2147483647);
180     define('AUTHOR_MAX_AGE', 2147483647);
181     define('AUTHOR_KEEP', 2147483647);
182     define('AUTHOR_MIN_AGE', 2147483647);
183     define('AUTHOR_MAX_KEEP', 2147483647);
184
185     //
186     // Define access rights for the wiki.
187     //
188
189     // Do not allow anon users to edit pages
190     define('ALLOW_ANON_EDIT', false);
191
192     // Do not allow fake user
193     define('ALLOW_BOGO_LOGIN', false);
194
195     // A dedicated auth has been created to get auth from FusionForge
196     $USER_AUTH_ORDER = array("FusionForge");
197     define('USER_AUTH_ORDER', 'FusionForge');
198     define('USER_AUTH_POLICY', 'strict');
199
200     define('EXTERNAL_LINK_TARGET', '_top');
201
202     // Override the default configuration for CONSTANTS before index.php
203     $LC_ALL = language_name_to_locale_code(choose_language_from_context());
204     $LANG   = preg_replace('/_.*/', '', $LC_ALL);
205
206     // We use a local interwiki map file
207     define('INTERWIKI_MAP_FILE', 'themes/fusionforge/interwiki.map');
208
209     define('DEFAULT_WIKI_PAGES', "");
210
211     define('DBAUTH_AUTH_CHECK', "SELECT IF(passwd='\$password',1,0) as ok FROM plugin_wiki_pref WHERE userid='\$userid'");
212     define('DBAUTH_AUTH_USER_EXISTS', "SELECT userid FROM plugin_wiki_pref WHERE userid='\$userid'");
213     define('DBAUTH_AUTH_CREATE', "INSERT INTO plugin_wiki_pref (passwd,userid) VALUES ('\$password','\$userid')");
214     define('DBAUTH_PREF_SELECT', "SELECT prefs FROM plugin_wiki_pref WHERE userid='\$userid'");
215     define('DBAUTH_PREF_UPDATE', "UPDATE plugin_wiki_pref SET prefs='\$pref_blob' WHERE userid='\$userid'");
216     define('DBAUTH_PREF_INSERT', "INSERT INTO plugin_wiki_pref (prefs,userid) VALUES ('\$pref_blob','\$userid')");
217     define('DBAUTH_IS_MEMBER', "SELECT userid FROM plugin_wiki_pref WHERE userid='\$userid' AND groupname='\$groupname'");
218     define('DBAUTH_GROUP_MEMBERS', "SELECT userid FROM plugin_wiki_pref WHERE groupname='\$groupname'");
219     define('DBAUTH_USER_GROUPS', "SELECT groupname FROM plugin_wiki_pref WHERE userid='\$userid'");
220
221     define('USE_DB_SESSION', true);
222
223     define('USE_BYTEA', true);
224
225     define('ENABLE_REVERSE_DNS', false);
226
227     // Web DAV location
228     define('DEFAULT_DUMP_DIR', forge_get_config('groupdir_prefix').'/'.$group_name."/wikidump/");
229     define('HTML_DUMP_DIR', forge_get_config('groupdir_prefix').'/'.$group_name."/wikidumphtml/");
230
231     define('COMPRESS_OUTPUT', false);
232
233     define('CACHE_CONTROL', "NO_CACHE");
234
235     $lg = language_name_to_locale_code(forge_get_config('default_language'));
236     $lg = preg_replace('/_.*/', '', $lg);
237     define('DEFAULT_LANGUAGE', $lg);
238
239     define('DISABLE_GETIMAGESIZE', true);
240
241     // If the user is logged in, let the Wiki know
242     if (session_loggedin()) {
243         $user = session_get_user();
244         if ($user && is_object($user) && !$user->isError() && $user->isActive()) {
245             $user_name = $user->getRealName();
246             $_SESSION['user_id'] = $user_name;
247             $_SERVER['PHP_AUTH_USER'] = $user_name;
248         }
249     } else {
250         // clear out the globals, just in case...
251     }
252
253     // Load the default configuration.
254     require_once(dirname(__FILE__).'/lib/prepend.php');
255     require_once(dirname(__FILE__).'/lib/IniConfig.php');
256     IniConfig(dirname(__FILE__)."/config/config-default.ini");
257
258     // Override the default configuration for VARIABLES after index.php:
259     // E.g. Use another DB:
260     $DBParams['dbtype'] = 'SQL';
261     $DBParams['dsn']    = 'ffpgsql://' . forge_get_config('database_user') . ':' .
262         forge_get_config('database_password') . '@' . forge_get_config('database_host') .'/' . forge_get_config('database_name');
263
264     $DBParams['prefix'] = "plugin_wiki_";
265
266     // Start the wiki
267     include dirname(__FILE__).'/lib/main.php';
268 }
269
270 /**
271  * Return a number of octets from a string like "300M"
272  */
273 function octets($val) {
274     $val = trim($val);
275     $last = strtolower($val[strlen($val)-1]);
276     switch($last) {
277         // The 'G' modifier is available since PHP 5.1.0
278         case 'g':
279             $val *= 1024;
280         case 'm':
281             $val *= 1024;
282         case 'k':
283             $val *= 1024;
284     }
285     return $val;
286 }