| c3f4c777 | 12-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
changed tests to use a data provider
this allows for each dump being run within its own test case which then can be skipped. This is needed to skip the django test on older PHP versions. |
| 44f1c4b7 | 12-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
removed another new feature from the postgres dump |
| 3ca21440 | 12-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
remove postgres 9.3+ feature from dump
this hopefully fixes the tests on travis |
| 97e5bd24 | 11-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
removed unnecessary travis file
|
| 3b7a976e | 11-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
test postgres on travis |
| 32a211c7 | 11-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
added a postgres example database to the tests |
| 924cc11c | 11-Mar-2016 |
Andreas Gohr <andi@splitbrain.org> |
add support for new Django hashing methods
New Python Django application default to PBKDF2 with SHA256 as a password mechanism. This adds support for that mechanism in our password hasher class. Thi
add support for new Django hashing methods
New Python Django application default to PBKDF2 with SHA256 as a password mechanism. This adds support for that mechanism in our password hasher class. This will be needed in the tests for the new PDO auth plugin.
show more ...
|
| dab290ef | 11-Mar-2016 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
usie a strict comparison === instead |
| 82f5f399 | 11-Mar-2016 |
Satoshi Sahara <sahara.satoshi@gmail.com> |
use getNS() call instead of dirname() |
| 63cf4192 | 04-Mar-2016 |
sarehag <joakim.sarehag@gmail.com> |
#1477:Search heading still displayed although search disabled |
| 6ebabe2f | 02-Mar-2016 |
Gerrit Uitslag <klapinklapin@gmail.com> |
Fix PHP7 evaluation order incompatibility
Fixes #1480 |
| 3a63c3f3 | 24-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
clean up the onselect callback
This makes sure the provided callback is using alphanumerics only. I'm not sure this is needed, but better safe than sorry. |
| 34b180e5 | 22-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Revert "Revert "make reuse of mediamanager popup easier""
because we actually want it in this branch ;-)
This reverts commit 38a2174b1dd098290d4b853df853c1072369377d. |
| 38a2174b | 22-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Revert "make reuse of mediamanager popup easier"
this was an accidental commit to master
This reverts commit f7f7fb6c2b301fc145bf78687261f89e446e89ae. |
| f7f7fb6c | 22-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
make reuse of mediamanager popup easier
This introduces a mechanism to override what happens when a media item is selected in the media manager popup by providing a callback name in the URL. The def
make reuse of mediamanager popup easier
This introduces a mechanism to override what happens when a media item is selected in the media manager popup by providing a callback name in the URL. The default implementation just does what dw_mediamanager.insert did before and calls insertTags()
show more ...
|
| 0476c521 | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
added travis configuration for mysql checks |
| 0cec3e2a | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
cache groups during a request |
| 36726b91 | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
marked authmyslq and authpgsql as deprecated |
| 67234204 | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
removed isset() from blank() function
As discussed in #1471, an uninitialized variable will always be implicitly created when passed to the blank() function. Calling isset() is thus a no-op. A warni
removed isset() from blank() function
As discussed in #1471, an uninitialized variable will always be implicitly created when passed to the blank() function. Calling isset() is thus a no-op. A warning about this behavior has been added to the function comment.
show more ...
|
| 3258ecf1 | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
deny access to .git directories in .htaccess |
| 6fc7ffc9 | 19-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
use proper JSON in mediaupload response. fixes #1474 |
| b24d9195 | 18-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
refactor page saving and introduce COMMON_WIKIPAGE_SAVE
This makes the saveWikiText() function a little easier to read and moves external edit handling to its own function. Behavior stays the same (
refactor page saving and introduce COMMON_WIKIPAGE_SAVE
This makes the saveWikiText() function a little easier to read and moves external edit handling to its own function. Behavior stays the same (tests are unchanged).
In addition a new event COMMON_WIKIPAGE_SAVE is introduced that makes intercepting and acting on page saves much easier than possible before.
Developers can:
* prevent saves by either preventing the default action or overwriting the contentChanged field in a BEFORE hook * enforce saves even when no content changed by overwriting the contentChanged field in a BEFORE hook * Adjust the saved content by modifying the newContent field in a BEFORE hook * Adjust the stored change log information (summary, type, extras) in an AFTER hook * Easily know if a page was deleted, created or edited by inspecting the changeType field * what ever they want before or after a wiki page is saved
show more ...
|
| 023953f0 | 17-Feb-2016 |
Andreas Gohr <gohr@cosmocode.de> |
added test for saveWikiTest()
for possible upcoming refactoring |
| 014eefaa | 14-Feb-2016 |
Masoud Sadrnezhaad <masoud@sadrnezhaad.ir> |
translation update |
| df01249e | 12-Feb-2016 |
Andreas Gohr <andi@splitbrain.org> |
added fluxbb dump to the tests.
now all capabilities are covered |