| b038bf62 | 26-Jun-2010 |
Gina Haeussge <gina@foosel.net> |
FS#1874: removed padding for interwiki links in print stylesheet, as the icons aren't displayed there |
| 7e1f9fd3 | 26-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
Hotkey trigger is now CTRL-ALT FS#1958
Tests and feedbacks please! |
| 8d22f1e9 | 26-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
Changes to the ft_pageLookup and related event FS#1978
This patch changes the ft_pageLookup function to always return the title of pages with the result. This makes it easier to work with the array,
Changes to the ft_pageLookup and related event FS#1978
This patch changes the ft_pageLookup function to always return the title of pages with the result. This makes it easier to work with the array, as it no longer changes between numeric and key indexes depending on useheading. This also means that action plugins subscribed to SEARCH_QUERY_PAGELOOKUP need to be adjusted. The event contains a new data field called 'has_titles' which plugins can use to check for backwards compatibility.
show more ...
|
| 681a59b2 | 26-Jun-2010 |
Gina Haeussge <gina@foosel.net> |
FS#1884: respect $conf['showuseras'] in feeds |
| 345b1674 | 26-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
create title.idx with the correct length FS#1978
The title.idx file needs to have exactly the same length as the page.idx. This patch creates the file with the correct length if it doesn't exist yet
create title.idx with the correct length FS#1978
The title.idx file needs to have exactly the same length as the page.idx. This patch creates the file with the correct length if it doesn't exist yet.
If you upgrade in between you need to delete your data/index/title.idx file
show more ...
|
| 80601d26 | 26-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
fixed wildcard handling in ACL manager FS#1955
This patch also removes legacy support for @USER@. Only %USER% is valid now. |
| 69266de5 | 24-Jun-2010 |
Dominik Eckelmann <deckelmann@gmail.com> |
fixed handling of MSG
msg() now stores always the message to the MSG array until headers are sent. After this, a call of msg will print out all messages from the MSG array immediately through html_m
fixed handling of MSG
msg() now stores always the message to the MSG array until headers are sent. After this, a call of msg will print out all messages from the MSG array immediately through html_msgarea. This prevents double posting and losses of messages from the MSG array.
show more ...
|
| b0f6db0c | 23-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Support namespace selection in quicksearch |
| be6541cc | 23-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
basic_auth is loaded by inc/auth.php |
| 3d5e07d9 | 23-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Do not parse URL params in internal links, just pass them through |
| def4baf2 | 22-Jun-2010 |
Samuel Dorsaz <samuel.dorsaz@novelion.net> |
French language update |
| e53f9e72 | 22-Jun-2010 |
Marijn Hofstra <hofstra.m@gmail.com> |
Dutch language update |
| fa61423c | 22-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
temporary disable hotkey JS for FS#1958 |
| 880f62fa | 22-Jun-2010 |
Andreas Gohr <andi@splitbrain.org> |
new auth capability 'logout'
This patch implements what Adrian's patch "Hide logout button if auth backend cannot logout" intended to do.
The 'logoff' capability was used to decide if a special met
new auth capability 'logout'
This patch implements what Adrian's patch "Hide logout button if auth backend cannot logout" intended to do.
The 'logoff' capability was used to decide if a special method called $auth->logOff() should be called when the user logs out, not if the backend supports logouts at all. This was a superflous capability since an empty logOff() method is implemented in the base class anyway - it doesn't hurt to always call the method.
The 'logoff' capability is now deprecated. Backends who want to do actions on logout simply need to overwrite logOff().
A new capability 'logout' was added which defaults to true. Backends that can't logoff the user (eg. because they use some automatic login/logoff mechanism) can set this to false.
Probably makes sense to add a 'login' capability as well...
show more ...
|
| 2380e8a8 | 22-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Hide logout button if auth backend cannot logout |
| 2bd74074 | 22-Jun-2010 |
Andreas Gohr <gohr@cosmocode.de> |
License change for inc/JpegMeta.php
Original author Sebastian Delmont agreed to rerelease the code under BSD license to avoid license compatibility problems.
Other authors (me and Hakan Sandell) ag
License change for inc/JpegMeta.php
Original author Sebastian Delmont agreed to rerelease the code under BSD license to avoid license compatibility problems.
Other authors (me and Hakan Sandell) agreed as well.
show more ...
|
| 1f2058fa | 21-Jun-2010 |
Andreas Gohr <gohr@cosmocode.de> |
Clariefied license (clean version) |
| 85b77bbd | 21-Jun-2010 |
Andreas Gohr <gohr@cosmocode.de> |
Revert "inc/utf8.php license clarified for Debian project"
This was an edit through the github interface which changed more than intented.
This reverts commit 1720a8e9a67df95c104eb02146c98a3d9da1f8
Revert "inc/utf8.php license clarified for Debian project"
This was an edit through the github interface which changed more than intented.
This reverts commit 1720a8e9a67df95c104eb02146c98a3d9da1f84b.
show more ...
|
| 1720a8e9 | 21-Jun-2010 |
CosmoCode GmbH <gohr@cosmocode.de> |
inc/utf8.php license clarified for Debian project |
| 147c74da | 18-Jun-2010 |
Adrian Lang <mail@adrianlang.de> |
Do not output trailing whitespace in conf/local.php |
| a453d131 | 18-Jun-2010 |
Adrian Lang <mail@adrianlang.de> |
Refactor action links and buttons
Behavioural changes: * buttons * no 'do=show' but clean URLs (show and back buttons) * the alias 'subscription' for subscribe buttons is now available *
Refactor action links and buttons
Behavioural changes: * buttons * no 'do=show' but clean URLs (show and back buttons) * the alias 'subscription' for subscribe buttons is now available * links * draft link has class 'draft', not 'edit' * revisions link has class 'revs', not 'revisions' * both * 'revision' is added as an alias for 'history'
These changes were mainly introduced to reduce the differences between links and buttons.
show more ...
|
| f46093a1 | 17-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Make normal wikilinks work again |
| 44653a53 | 17-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Allow URL params in internal links (FS#1967) |
| a0070b52 | 16-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Add title index to the indexer files, improve indexer calls |
| 159ef596 | 16-Jun-2010 |
Adrian Lang <lang@cosmocode.de> |
Remove temp indexer upgrade stuff from 579b0f7e |