| 3b58faf6 | 16-May-2018 |
Michael Große <grosse@cosmocode.de> |
refactor: Move the remainder of code from lib/exe/indexer.php to TaskRunner::run |
| 9493c275 | 16-May-2018 |
Michael Große <grosse@cosmocode.de> |
refactor: Extract code from lib/exe/indexer into new TaskRunner class |
| 1cdd0090 | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
moved XMLRPC server class from lib/exe to inc/Remote |
| dd87735d | 07-May-2018 |
Andreas Gohr <andi@splitbrain.org> |
PSR-2 compatibility for the remote API libs |
| 64159a61 | 27-Apr-2018 |
Andreas Gohr <andi@splitbrain.org> |
line lengths shortened
This makes sure all files use line lenghts shorter than 120 characters.
This is a quick fix. It might not always be the nicest change. |
| b3054f02 | 29-Mar-2018 |
Michael Große <grosse@cosmocode.de> |
refactor: rename JSINFO.DOKU_UHN and JSINFO.DOKU_UHC
This should make their purpose more obvious. |
| bb8ef867 | 20-Mar-2018 |
Michael Große <grosse@cosmocode.de> |
feat(search): add search assistance for simple queries
This add some search assistance to simple, single-word search queries which may be restricted to a single namespace.
Further improvements: * b
feat(search): add search assistance for simple queries
This add some search assistance to simple, single-word search queries which may be restricted to a single namespace.
Further improvements: * better styling * trigger events for other plugins * set namespaces directly from fulltext search results * some more config options
show more ...
|
| f3d2b6ae | 07-Mar-2018 |
Michael Große <grosse@cosmocode.de> |
fix: use exit instead of return in the global scope |
| ac6ceee3 | 16-Feb-2018 |
Michael Große <grosse@cosmocode.de> |
fix(manifest): check if manifest action enabled before sending |
| c9071834 | 05-Feb-2018 |
Michael Große <grosse@cosmocode.de> |
refactor: move manifest functions to more intuitive places |
| 10b4c843 | 01-Feb-2018 |
Michael Große <grosse@cosmocode.de> |
feat: ensure that the cope is always only the current wiki |
| 6f858236 | 01-Feb-2018 |
Michael Große <grosse@cosmocode.de> |
feat: use style replacements for background and theme color
This also adds the default theme color for the DokuWiki template as the green from the existing links. |
| fb1f9089 | 01-Feb-2018 |
Michael Große <grosse@cosmocode.de> |
refactor: extract css utils to an autoloaded class
The goal is to make the css replacement accessible in other contexts, for example for the manifest. |
| 5e0255e3 | 24-Jan-2018 |
Michael Große <grosse@cosmocode.de> |
feat: provide web app manifest (dynamically geneated) |
| 14cd40ec | 05-Jan-2018 |
Chang Zhao <chang-zhao@users.noreply.github.com> |
Update css.php
typo |
| 034db885 | 11-Dec-2017 |
Michael Große <grosse@cosmocode.de> |
feat: DOKU_UH[N|C] to jsinfo and add deprecation message
I'm not sure that setting the constants in template.php is the best place. However if we set them in doku.php, we have to duplicate it in lib
feat: DOKU_UH[N|C] to jsinfo and add deprecation message
I'm not sure that setting the constants in template.php is the best place. However if we set them in doku.php, we have to duplicate it in lib/exe/mediamanager.php and lib/exe/detail.php, which is not ideal as well.
show more ...
|
| 9f184f79 | 10-Dec-2017 |
Andreas Gohr <andi@splitbrain.org> |
make sure guaranteed placeholders are defined. fixes #1792
This adds some simple defaults for the guaranteed placeholders. This ensures plugins can safely use these placeholders even when a template
make sure guaranteed placeholders are defined. fixes #1792
This adds some simple defaults for the guaranteed placeholders. This ensures plugins can safely use these placeholders even when a template did not implement them.
show more ...
|
| 16a367d4 | 29-Aug-2017 |
Andreas Gohr <andi@splitbrain.org> |
refactor Ajax functions into a class
This doesn't really do much except wrapping the functions into a namespaced class. Autoloading takes care of loading the file. It's now possible to call lib/exe/
refactor Ajax functions into a class
This doesn't really do much except wrapping the functions into a namespaced class. Autoloading takes care of loading the file. It's now possible to call lib/exe/ajax.php multiple times in a test request.
show more ...
|
| cf35519c | 01-Aug-2017 |
Gerry Weißbach <gerry.w@gammaproduction.de> |
Make default encapsulation more readable and less duplicate. |
| 65cc1598 | 01-Aug-2017 |
Phy <git@phy25.com> |
Replace htmlspecialchars to hsc in core |
| 85319150 | 01-Aug-2017 |
Gerry Weißbach <gerry.w@gammaproduction.de> |
Add the preview-bool for the cache file. |
| 814e20b8 | 28-Jul-2017 |
Yurii K <yurii-github@users.noreply.github.com> |
extracted functions added test coverage |
| 8f34cf3d | 26-Jul-2017 |
Michael Große <grosse@cosmocode.de> |
Fix PHP Notices: Reduce error log noise
While DokuWiki suppresses PHP Notices they are still a code smell and should be fixed. This fixes some PHP Notices that occurred.
Some of these fixes could b
Fix PHP Notices: Reduce error log noise
While DokuWiki suppresses PHP Notices they are still a code smell and should be fixed. This fixes some PHP Notices that occurred.
Some of these fixes could be refactored into nicer code once we move to PHP 7 and get access to the `??` operator.
show more ...
|
| e4f7f55e | 24-Jul-2017 |
Yurii K <yurii-github@users.noreply.github.com> |
allow tests against ajax requests |
| e0ded59c | 27-Jun-2017 |
Andreas Gohr <gohr@cosmocode.de> |
simplify ajax call handling
No need to check those seperately. The correct order should be ensured already. |