~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/php/phpBB3/faq.php

[Uber-commit of holiday work because I lacked a local copy of the branch.]

 ivle.makeuser: Don't use jailconf.py as a header for the in-jail conf.py;
     generate the whole thing using string formatting operators and include
     the template inline.

 ivle.makeuser.make_conf_py: XXX the inclusion of ivle.conf.jail_base in
     the jail. It is simply there to placate ivle.studpath, and needs
     to go before we can entirely remove the in-jail config.

 ivle-buildjail:
   - Add. Converted from setup.buildjail.
   - Build the jail in __base_build__ and rsync it to __base__ when
     done, rather than operating only in ./jail
   - Rename --rebuildjail/-j to --recreate/-r, as the whole script
     is now for jail rebuilding. Also add a warning to the usage string about
     the large volume likely to be downloaded.
   - Check existence before removing trees.
   - Don't copy jailconf.py over conf.py in the jail. Also make
     sure that we remove conf.pyc.

 setup.configure:
   - Stop generating jailconf.py at all.
   - Add a jail_system_build setting, defaulting to __base_build__ next to
     the existing __base__.
   - Don't use an OptionParser before calling the real function, as that
     adds options dynamically.

 setup.install:
   - Add an option (-R) to avoid writing out svn revision info to
     $PREFIX/share/ivle/revision.txt.
   - Remove jail-copying things.
   - Install all services to the host, rather than just usrmgt-server. We do
     this so we can build the jail from the host without the source tree.
   - Shuffle some things, and don't install phpBB3 twice.
   - Add a --root argument, to take an alternate root directory to install
     into (as given to autotools in $DESTDIR).

 setup.build:
   - Allow running as non-root.
   - Take a --no-compile option to not byte-compile Python files.

 setup.util:
   - Include usrmgt-server in the list of services.
   - Add make_install_path(), a wrapper around os.path.join() that ensures
     the second path is relative.
   - Install ivle-buildjail with the other binaries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/**
 
3
*
 
4
* @package phpBB3
 
5
* @version $Id: faq.php,v 1.37 2007/10/05 14:30:06 acydburn Exp $
 
6
* @copyright (c) 2005 phpBB Group
 
7
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
 
8
*
 
9
*/
 
10
 
 
11
/**
 
12
* @ignore
 
13
*/
 
14
define('IN_PHPBB', true);
 
15
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
 
16
$phpEx = substr(strrchr(__FILE__, '.'), 1);
 
17
include($phpbb_root_path . 'common.' . $phpEx);
 
18
 
 
19
// Start session management
 
20
$user->session_begin();
 
21
$auth->acl($user->data);
 
22
$user->setup();
 
23
 
 
24
$mode = request_var('mode', '');
 
25
 
 
26
// Load the appropriate faq file
 
27
switch ($mode)
 
28
{
 
29
        case 'bbcode':
 
30
                $l_title = $user->lang['BBCODE_GUIDE'];
 
31
                $user->add_lang('bbcode', false, true);
 
32
        break;
 
33
 
 
34
        default:
 
35
                $l_title = $user->lang['FAQ_EXPLAIN'];
 
36
                $user->add_lang('faq', false, true);
 
37
        break;
 
38
}
 
39
 
 
40
// Pull the array data from the lang pack
 
41
$help_blocks = array();
 
42
foreach ($user->help as $help_ary)
 
43
{
 
44
        if ($help_ary[0] == '--')
 
45
        {
 
46
                $template->assign_block_vars('faq_block', array(
 
47
                        'BLOCK_TITLE'           => $help_ary[1])
 
48
                );
 
49
 
 
50
                continue;
 
51
        }
 
52
 
 
53
        $template->assign_block_vars('faq_block.faq_row', array(
 
54
                'FAQ_QUESTION'          => $help_ary[0],
 
55
                'FAQ_ANSWER'            => $help_ary[1])
 
56
        );
 
57
}
 
58
 
 
59
// Lets build a page ...
 
60
$template->assign_vars(array(
 
61
        'L_FAQ_TITLE'   => $l_title,
 
62
        'L_BACK_TO_TOP' => $user->lang['BACK_TO_TOP'])
 
63
);
 
64
 
 
65
page_header($l_title);
 
66
 
 
67
$template->set_filenames(array(
 
68
        'body' => 'faq_body.html')
 
69
);
 
70
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"));
 
71
 
 
72
page_footer();
 
73
 
 
74
?>
 
 
b'\\ No newline at end of file'