• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..05-Apr-2024-

conf/H03-May-2018-2412

css/H03-May-2018-3,2472,831

images/H03-May-2018-65

lang/H03-May-2018-769243

COPYINGH A D06-Aug-201617.7 KiB340281

README.mdH A D06-Aug-20167.3 KiB12196

detail.phpH A D06-Aug-20163.9 KiB9975

jquery.pjax.jsH A D06-Aug-201622 KiB823420

main.phpH A D06-Aug-20169.4 KiB194149

main.php.withTimeH A D06-Aug-20169.5 KiB195177

mediamanager.phpH A D06-Aug-20161.8 KiB4933

style.iniH A D06-Aug-20162.3 KiB7358

template.info.txtH A D06-Aug-2016209 87

tpl_functions.phpH A D06-Aug-20167.1 KiB246155

util.jsH A D06-Aug-20161.4 KiB4022

README.md

1# StarterPjax Template for Dokuwiki #
2
3## About ##
4
5The template is part of a proof-of-concept for a set of changes aimed at:
6 * improving performance
7 * integrating Dokuwiki more closely with Javascript
8 * improving security
9While it's quite usable as a template, it is presented to demonstrate how to integrate PJAX loading.
10
11Much of the javascript integration is provided via the Jokuwiki plugin. This is also designed to eliminate the need for inline Javascript, allowing for a strict [Content Security Policy](http://www.w3.org/TR/CSP/).
12
13The performance improvements come from [PJAX](https://github.com/defunkt/jquery-pjax). PJAX replaces page links with ajax calls, thereby only loading the part of the content which has changed between pages - but there's no need to make extensive changes to a page to enable this - just add a div around the content you want to replace on navigation and include the javascript. In the case of the Starter template, the variable content is really everything you can see on the screen, so there's not a big bandwidth saving. And of course, the limiting factor for HTTP performance is all about latency, right? Actually a large part of Dokuwiki's page loading time is now taken up by parsing, compiling and invoking Javascript. Not reinitializing the Javascript on each page leads to big savings - on 'localhost' I see a reduction of around 75% or 450 milliseconds.
14
15
16The standard scripts alone are adding around 450msec to the page load times. But this is compounded by the standard scripts being loaded at the top of the html; the user is left with a blank screen for nearly half a second. Dokuwiki is designed to downgrade gracefully on browsers which don't support javascript (or where it's disabled) hence it all still works when the scripts are moved to the bottom (or declared with a defer tag) with the exception of the editor toolbar - but that's a simple fix. In the case of this template, a Jokuwiki widget is injected to start up the toolbar.
17
18Note that PJAX, in addition to setting a custom request header, appends an extra query parameter to the URL, hence, leaving aside the issue of the breadcrumbs and edit links, there will be no cache conflicts between partial and full pages if HTTP caching of HTML content is enabled by the template. NB please exercise caution with HTTP caching - his has not been thouroughly evaluated.
19
20PJAX can also intercept and handle form GETs and POSTs, but this is not enabled in the profile. The Jokuwiki plugin will disable PJAX after 200 consecutive page loads (performing a full page load , then reverting to PJAX loads for another cycle) to pre-empt any memory leaks (see the maxPjax setting in the Jokuwiki script.js).
21
22## Additional Configuration ##
23
24The template implements a fairly strict security policy which will break most non-jokuwiki plugins relying on Javacript. Currently this requires the source code for main.php to be edited to relax the policy.
25
26PJAX improves performance of moving between pages on the wiki, but to improve the performance of the first page the user hits, then the loading of the Dokwuiki Javascript must be delayed. This required changes to the Dokuwiki source code to add a defer tag to the script tag.
27
28**NB** while defer does not provide as much of a performance benefit as async, if the functionality is split across more than one javascript file then the sequence of loading may not be maintained - hence use defer in script tags rather than async unless you know that there no inter-dependencies in the separate files.
29
30## Customization ##
31
32For sidebar and colour schemes see the [Starter template documentation](http://www.dokuwiki.org/template:starter).
33
34## Code ##
35
36The code below is the **diff** between Anika's Starter template and one with added PJAX/Jokuwiki support
37```diff
3812a13,16
39> if ('true'!=$_SERVER['HTTP_X_PJAX']){
40>     /* really the template should expose control over the policy via the admin page....*/
41>     header("Content-Security-Policy: default-src 'self'; script-src https://apis.google.com; frame-src https://youtube.com");
42> }
4314a19
44> if ('true'!=$_SERVER['HTTP_X_PJAX']){
4540d44
46<         <?php html_msgarea() /* occasional error and info messages on top of the page */ ?>
4742c46,47
48<
49---
50>       <div id="pjax_container">
51> <?php } /* end of non-pjax header */ ?>
5243a49,56
53>         <div id='pjaxTitle'
54>         data-jw='{ "jokuwiki" : "pjaxTitle", "data" : { "id" : "pjaxTitle", "title" : "<?php
55>               $pjaxTitle=htmlentities(tpl_pagetitle($ID, true) . ' [' . strip_tags($conf['title']). ']');
56>               echo $pjaxTitle;
57>             ?>"}}'
58>           class='pjaxTitle'
59>           style='display:none'></div>
60>         <!-- the div above implements a jokuwiki to update the window title -->
6145c58,62
62<
63---
64>             <?php html_msgarea() /*
65>             * occasional error and info messages on top of the page
66>             * NB this is moved down inside the pjax container compared
67>             * with the standard template
68>             */ ?>
6960d76
70<
7163c79
72<                 <?php if ($conf['useacl'] && $showTools): ?>
73---
74>                 <?php if ($conf['useacl'] && $showTools){ ?>
7582c98
76<                 <?php endif ?>
77---
78>                 <?php } ?>
79107d122
80<
81168c183,185
82<
83---
84>         <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
85> <?php if ('true'!==$_SERVER['HTTP_X_PJAX']) { ?>
86>        </div><!-- pjax container -->
87171,172c188,189
88<
89<     <div class="no"><?php tpl_indexerWebBug() /* provide DokuWiki housekeeping, required in all templates */ ?></div>
90---
91>     <script src="<?php print DOKU_TPL . 'jquery.pjax.js'; ?>" defer="defer"></script>
92>     <script src="<?php print DOKU_TPL . 'util.js'; ?>" defer="defer"></script>
93175a193
94> <?php } /* end of non-pjax footer */
95```
96Note that for clarity I have deliberately kept jquery.pjax.js (the unmolested PJAX code) and util.js (the glue between PJAX and Dokuwiki) in seperate files.
97
98## Speeding up the first page ##
99
100While PJAX speeds moving between pages, it doesn't help with the speed of the first page the user arrives at. But with Jokuwiki and the utils.js file from this template, it's possible to defer loading the javascript - so far I've not run into any problem with this, if you do, please let me know. This requires a small change to inc/template.php: in tpl_metaheaders(), added a defer attribute to the external javascript:
101
102```php
103            $head['script'][] = array(
104                    'type'=> 'text/javascript', 'charset'=> 'utf-8', '_data'=> '',
105                    'src' => DOKU_BASE.'lib/exe/js.php'.'?tseed='.$tseed,
106                    'defer' => 'defer'
107            );
108```
109
110## To Do ##
111
112 * Provide an admin interface to updating the Security Policy
113 * Currently, for clarity, the template keeps the Dokuwiki (lib/exe/js.php), PJAX (jquery.pjax.js) and integration code (util.js) in 3 seperate URLs (the Jokuwiki plugin code is merged into the Douwiki javascript file). The PAJX and integration javascript should be merged into the Dokuwiki Javascript file.
114 * The starter template has a single line of inline javascript (which is probably not required) which should be removed before you add a CSP violation URL.
115 * Document the places where Dokuwiki uses inline javascript (e.g. inc/html.php) and develop Jokuwiki base alternatives.
116
117## Version History ##
118
119 * 2013-06-27 -- v1 finalized
120
121