| 99e10b7f | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Always disable compression when sitemaps are delivered
The class loader isn't available at that place in inc/init.php so the check if the sitemap is compressed didn't work. |
| c0f0f1f8 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Remove unused/directly overwritten variable declarations in inc/html.php |
| 8d5e837e | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Fix/add some PHPDoc comments in inc/html.php |
| 6d9eab4d | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Prevent access to undefined variables and make returns consistent in html.php |
| c857afe0 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Allow the $check parameter of sectionID to be false |
| 93b2e677 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Declare timestamp parameter of http_conditionalRequest as int |
| 59f20ea3 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Fix types in inc/changelog.php and initialize variables |
| d9764001 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Document $text parameters of html and php in the xhtml parser |
| 44982778 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Prevent access to undefined $auth variable |
| c8b076b1 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Add PHPDoc comments, type hints and ignore return value of act_sitemap() |
| b4cf5bda | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Fix return types and result value handling in Sitemapper.php |
| 65f6e7d6 | 24-Aug-2012 |
Michael Hamann <michael@content-space.de> |
Disable compression when a compressed sitemap might be delivered FS#2576
Compressing a gzip file again for transport is standards compliant, but some clients assume that the file is only compressed
Disable compression when a compressed sitemap might be delivered FS#2576
Compressing a gzip file again for transport is standards compliant, but some clients assume that the file is only compressed once then and don't remove the outer compression layer. This could disable compression in too many cases theses cases should be rare and shouldn't cause any problems.
show more ...
|
| 64273335 | 24-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
more $INPUT use FS#2577 |
| 006b89da | 23-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
lowercase groups |
| 496e18cd | 23-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
make AD utilitiy functions public |
| c51e9570 | 23-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
allow selects in block forms |
| 86bd5c0d | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
add user's domain to the list of groups |
| 70d71ed8 | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
fixed domain handling in user names |
| 33c5220c | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
some code cleanup/PHP5ization |
| e12ea846 | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
use UTF-8 aware lower casing |
| 7b0a749a | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
Better support for multi domain AD setups
This changes how the AD auth backend handles multiple domains. It is now possible to configure multiple authentication domains even when not using SSO. USer
Better support for multi domain AD setups
This changes how the AD auth backend handles multiple domains. It is now possible to configure multiple authentication domains even when not using SSO. USers can provide a domain in NTLM- and Kerberos-Style (prepended with a backslash, appended with a @-char).
IMPORTANT: If you used AD auth before, you will need to adjust your ACLs and $conf['superuser'] settings.
This patch changes how user names are cleaned. Spaces and other special chars are no longer removed. The only adjustment is lowercasing the username and streamlining the domain handling.
User's login names will now contain the domain name in Kerberos style (user@yourdomain.com) when they logged in a non-default domain. You need to make sure your ACLs are setup accordingly.
Domain names are always lowercased and need to be specified lowercased in the config.
show more ...
|
| 5782941b | 22-Aug-2012 |
Andreas Gohr <gohr@cosmocode.de> |
git ignore IntelliJ Idea .iml files |
| f036cff4 | 12-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
minor cleanup |
| 02308d17 | 12-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
initialize new subscriptions with current time
We don't want to create a bunch of mails whenever a namespace is subscribed. Only changes *after* the subscription should be considered. This patch add
initialize new subscriptions with current time
We don't want to create a bunch of mails whenever a namespace is subscribed. Only changes *after* the subscription should be considered. This patch adds the timestamp to "every" style subscriptions as well, though this data is ignored.
show more ...
|
| a0519fda | 12-Aug-2012 |
Andreas Gohr <andi@splitbrain.org> |
fixed subscription management
now adding and removing subscriptions works again |