]>
source.dussan.org Git - nextcloud-server.git/log
Björn Schießle [Wed, 16 Jan 2013 09:18:40 +0000 (10:18 +0100)]
initialize
Björn Schießle [Tue, 15 Jan 2013 13:35:48 +0000 (14:35 +0100)]
Merge branch 'versioning_history_issue_1189' of github.com:schiesbn/core into versioning_history_issue_1189
Björn Schießle [Tue, 15 Jan 2013 12:29:59 +0000 (13:29 +0100)]
fix for issue #1186, missing variables added
Björn Schießle [Tue, 15 Jan 2013 12:29:59 +0000 (13:29 +0100)]
fix for issue #1189, missing variables added
blizzz [Tue, 15 Jan 2013 12:01:57 +0000 (04:01 -0800)]
Merge pull request #1087 from owncloud/ldap_multiple_dns
LDAP: ability to configure more than one base DN
Jenkins for ownCloud [Mon, 14 Jan 2013 23:05:10 +0000 (00:05 +0100)]
[tx-robot] updated from transifex
Lukas Reschke [Mon, 14 Jan 2013 22:37:23 +0000 (14:37 -0800)]
Merge pull request #1182 from owncloud/sanitizeHTML-Clean
Expanded one line if statement - Trivial
Lukas Reschke [Mon, 14 Jan 2013 21:04:31 +0000 (22:04 +0100)]
Move { to same line
Lukas Reschke [Mon, 14 Jan 2013 21:01:52 +0000 (22:01 +0100)]
Expand if to multiple lines
Oneliners are ugly.
Bart Visscher [Mon, 14 Jan 2013 20:53:18 +0000 (12:53 -0800)]
Merge pull request #1177 from owncloud/OC_User--isAdminUser()
Check if user is admin - bool
Lukas Reschke [Mon, 14 Jan 2013 20:39:49 +0000 (21:39 +0100)]
Enhanced auth is totally unmaintained and broken
Let's remove it, it's also not secure anymore with the introduction of
our API etc...
(And doesn't work with ldap etc…)
Bart Visscher [Mon, 14 Jan 2013 20:36:38 +0000 (12:36 -0800)]
Merge pull request #1172 from owncloud/isSubDirectory
Simplify the isSubDirectory() function
Bart Visscher [Mon, 14 Jan 2013 20:28:51 +0000 (12:28 -0800)]
Merge pull request #1169 from owncloud/webdav_L10n
user_webdavauth - l10n - Trivial
Lukas Reschke [Mon, 14 Jan 2013 19:24:02 +0000 (11:24 -0800)]
Merge pull request #1135 from owncloud/allow_default_click_behaviour
allow default click behaviour
Lukas Reschke [Mon, 14 Jan 2013 19:10:10 +0000 (20:10 +0100)]
Add a closing )
Thanks Jenkins!
Lukas Reschke [Mon, 14 Jan 2013 18:51:16 +0000 (19:51 +0100)]
CP fail
Lukas Reschke [Mon, 14 Jan 2013 18:45:17 +0000 (19:45 +0100)]
Check if user is admin - bool
There was no "isAdminUser()" function which returned bool. This is
irritiating as there were a loooooooot of places in the code which
checked this itself with `OC_Group::inGroup($uid, 'admin)` - why not
use a function for this?
(Especially if you consider that we might change the group name in the
future, which would lead to problems then)
Additionally, @Raydiation needed such a method for his AppFramework :)
Lukas Reschke [Mon, 14 Jan 2013 15:51:31 +0000 (16:51 +0100)]
Check for string position instead of string existence
otherwise /foo/bar would be detected as a subfolder of /bar
THX @icewind1991
Bart Visscher [Mon, 14 Jan 2013 15:35:14 +0000 (07:35 -0800)]
Merge pull request #1112 from Raydiation/master
This fixes a problem that prevented app routes from being loaded after ocs_api merge
Daniel Molkentin [Mon, 14 Jan 2013 15:25:03 +0000 (16:25 +0100)]
Revert "fix c&p error"
This reverts commit
9d41322cf0943e3960a4a7dc5878c713b8fedbca .
Daniel Molkentin [Mon, 14 Jan 2013 15:15:22 +0000 (16:15 +0100)]
fix c&p error
Thomas Müller [Mon, 14 Jan 2013 12:59:53 +0000 (04:59 -0800)]
Merge pull request #1170 from owncloud/correctIndention
Remove ugly indentation - Trivial
Björn Schießle [Mon, 14 Jan 2013 09:33:17 +0000 (10:33 +0100)]
Merge branch 'master' of github.com:owncloud/core
Björn Schießle [Mon, 14 Jan 2013 09:24:40 +0000 (10:24 +0100)]
merge conflict fixed, settings-personal.php is no longer needed
Conflicts:
apps/files_versions/templates/settings-personal.php
Jenkins for ownCloud [Sun, 13 Jan 2013 23:18:21 +0000 (00:18 +0100)]
[tx-robot] updated from transifex
Lukas Reschke [Sun, 13 Jan 2013 13:54:18 +0000 (14:54 +0100)]
Commentblocks should begin with two *
Lukas Reschke [Sun, 13 Jan 2013 13:50:31 +0000 (14:50 +0100)]
Add @brief to description
Lukas Reschke [Sun, 13 Jan 2013 13:33:19 +0000 (14:33 +0100)]
Simplify the isSubDirectory() function
isSubDirectory() checks if a specified $sub is a subdirectory of the
$parent, this is needed to prevent file inclusions.
Actually, the current code is more kind of a "hack" which I always
struggle over if browsing through source. So this should be a much
better implementation.
The implementation is really straightforward:
- [realpath()](http://php.net/manual/function.realpath.php) expands all
symbolic links and resolves references to '/./', '/../' and extra '/'
characters in the input path and return the canonicalized absolute
pathname.
- [strpos()](php.net/manual/function.strpos.php) returns FALSE if the
substring wasn't found.
Since this is an absolutely critical piece of code, I'd like to ensure
that this is absolutely safe!
Lukas Reschke [Sun, 13 Jan 2013 00:02:11 +0000 (01:02 +0100)]
Remove ugly indentation
Lukas Reschke [Sat, 12 Jan 2013 23:45:45 +0000 (00:45 +0100)]
The => This
Sounds better for me.
Lukas Reschke [Sat, 12 Jan 2013 23:37:58 +0000 (00:37 +0100)]
Improved the help text
Lukas Reschke [Sat, 12 Jan 2013 23:32:44 +0000 (00:32 +0100)]
legend - l10n
Jenkins for ownCloud [Sat, 12 Jan 2013 23:08:40 +0000 (00:08 +0100)]
[tx-robot] updated from transifex
Lukas Reschke [Sat, 12 Jan 2013 14:19:12 +0000 (15:19 +0100)]
Correct the link
Lukas Reschke [Sat, 12 Jan 2013 10:51:31 +0000 (02:51 -0800)]
Merge pull request #1160 from owncloud/updateContrib
Update CONTRIBUTING.md
Lukas Reschke [Sat, 12 Jan 2013 10:51:03 +0000 (11:51 +0100)]
Updated browser log
Thomas Müller [Sat, 12 Jan 2013 08:08:23 +0000 (09:08 +0100)]
Adding database to server config
Jenkins for ownCloud [Fri, 11 Jan 2013 23:10:58 +0000 (00:10 +0100)]
[tx-robot] updated from transifex
Lukas Reschke [Fri, 11 Jan 2013 22:40:14 +0000 (23:40 +0100)]
Typos
Lukas Reschke [Fri, 11 Jan 2013 22:39:37 +0000 (23:39 +0100)]
Add server operating system to template
Thanks @eMerzh, could be especially needed as there are some platform specific issues like filename encoding under MS Windows
Lukas Reschke [Fri, 11 Jan 2013 22:34:16 +0000 (23:34 +0100)]
Add the correct link to the apps repository
:oops:
Lukas Reschke [Fri, 11 Jan 2013 22:08:01 +0000 (23:08 +0100)]
Add a space behind the ####
Makes it at least better readable for me.
Lukas Reschke [Fri, 11 Jan 2013 22:00:48 +0000 (23:00 +0100)]
Uneeded newline
Lukas Reschke [Fri, 11 Jan 2013 21:59:41 +0000 (22:59 +0100)]
Remove :
Lukas Reschke [Fri, 11 Jan 2013 21:57:55 +0000 (22:57 +0100)]
Add ownCloud version
Bart Visscher [Fri, 11 Jan 2013 21:57:40 +0000 (22:57 +0100)]
Merge pull request #1157 owncloud/move-OpenID
Move openid.php to apps repo
Conflicts:
settings/routes.php
Lukas Reschke [Fri, 11 Jan 2013 21:57:30 +0000 (22:57 +0100)]
Add template
Lukas Reschke [Fri, 11 Jan 2013 21:52:41 +0000 (13:52 -0800)]
Create issue_template.md
Lukas Reschke [Fri, 11 Jan 2013 21:24:22 +0000 (22:24 +0100)]
Fix a typo
Lukas Reschke [Fri, 11 Jan 2013 21:22:08 +0000 (22:22 +0100)]
Update CONTRIBUTING.md
Lukas Reschke [Fri, 11 Jan 2013 21:14:18 +0000 (22:14 +0100)]
Remove uneeded link
Lukas Reschke [Fri, 11 Jan 2013 19:57:14 +0000 (11:57 -0800)]
Merge pull request #1159 from LukasReschke/master
Add contribution file
Björn Schießle [Fri, 11 Jan 2013 18:33:54 +0000 (19:33 +0100)]
- code clean-up
- some more code comments
- fixed bug in the expire function, cleanup all_versions array during run. Otherwise it could happen that we try to delete already deleted versions
Lukas Reschke [Fri, 11 Jan 2013 18:23:04 +0000 (10:23 -0800)]
Merge pull request #994 from owncloud/enhanced_multiSelect
Enhanced multiSelect
Lukas Reschke [Fri, 11 Jan 2013 18:19:04 +0000 (19:19 +0100)]
Added links to app + mirall repo
Lukas Reschke [Fri, 11 Jan 2013 17:59:56 +0000 (18:59 +0100)]
Update CONTRIBUTING.md
Lukas Reschke [Fri, 11 Jan 2013 17:57:56 +0000 (09:57 -0800)]
Create CONTRIBUTING.md
Lukas Reschke [Fri, 11 Jan 2013 17:21:08 +0000 (09:21 -0800)]
Merge pull request #1150 from owncloud/EnableSSL-AdminMenu
Add security section to admin settings to enable the HTTPS enforcement
Lukas Reschke [Fri, 11 Jan 2013 17:18:14 +0000 (09:18 -0800)]
Merge pull request #1155 from owncloud/remove-setContentTypeHeader
Remove setContentTypeHeader()
Frank Karlitschek [Fri, 11 Jan 2013 17:16:55 +0000 (09:16 -0800)]
Merge pull request #1154 from owncloud/remove-uneededFile
Remove uneeded file
Lukas Reschke [Fri, 11 Jan 2013 16:24:10 +0000 (17:24 +0100)]
Remove OpenID from the router
Lukas Reschke [Fri, 11 Jan 2013 16:22:15 +0000 (17:22 +0100)]
Move to apps repo
This belongs to the apps repo.
Lukas Reschke [Fri, 11 Jan 2013 16:09:36 +0000 (17:09 +0100)]
Remove setContentTypeHeader()
`OC_JSON::success` and `OC_JSON::error` are calling
`OC_JSON::encodedPrint`, which already sets these headers. So this two
calls are uneeded duplicates.
Lukas Reschke [Fri, 11 Jan 2013 15:49:55 +0000 (16:49 +0100)]
Remove uneeded file
logout.php is a legacy file, which isn't used anymore in the ownCloud
code.
Lukas Reschke [Fri, 11 Jan 2013 15:42:06 +0000 (16:42 +0100)]
Correct link to the bugtracker in exception.php
Lukas Reschke [Fri, 11 Jan 2013 13:43:56 +0000 (14:43 +0100)]
Removed uneeded HTML tag
Björn Schießle [Fri, 11 Jan 2013 13:24:00 +0000 (14:24 +0100)]
function description fixed
Björn Schießle [Fri, 11 Jan 2013 13:23:28 +0000 (14:23 +0100)]
some more clean-up, isVersioned() is no longer needed; rename hook fixed if a complete folder gets renamed
Lukas Reschke [Fri, 11 Jan 2013 13:18:51 +0000 (14:18 +0100)]
Add security section to admin menu
Currently it only allows the admin to enable or disable the HTTPS
enforcement, but in the future it could be expanded to further options.
The HTTPS enforcement only allows the admin to enforce it, if he is
connected via HTTPS. (To prevent admins to enable it without a proper
SSL setup)
Björn Schießle [Fri, 11 Jan 2013 10:12:32 +0000 (11:12 +0100)]
some code clean-up
Thomas Müller [Thu, 10 Jan 2013 23:14:14 +0000 (15:14 -0800)]
Merge pull request #1133 from owncloud/add_linebreaks_in_sharing
add more linebreaks, replace SQL LIMIT with param
Jenkins for ownCloud [Thu, 10 Jan 2013 23:06:14 +0000 (00:06 +0100)]
[tx-robot] updated from transifex
Björn Schießle [Thu, 10 Jan 2013 17:04:30 +0000 (18:04 +0100)]
keep track of the size of the versions directory
Thomas Müller [Thu, 10 Jan 2013 10:27:00 +0000 (02:27 -0800)]
Merge pull request #1127 from owncloud/fixing-641-for-webdav-master
webdav returns "503 Service Unavailable" in case the ownCloud server is ...
Björn Schießle [Thu, 10 Jan 2013 09:36:55 +0000 (10:36 +0100)]
add complete size of versions to array
Jenkins for ownCloud [Wed, 9 Jan 2013 23:05:53 +0000 (00:05 +0100)]
[tx-robot] updated from transifex
Lukas Reschke [Wed, 9 Jan 2013 20:07:39 +0000 (12:07 -0800)]
Merge pull request #1131 from owncloud/more_translations
translate move and rename error messages
Lukas Reschke [Wed, 9 Jan 2013 20:06:25 +0000 (12:06 -0800)]
Merge pull request #1124 from schiesbn/sabredav2
OC_Connector_Sabre_Client no longer needed
Björn Schießle [Wed, 9 Jan 2013 16:11:46 +0000 (17:11 +0100)]
every 1000s run reduce the number of versions for all files, not only for the currently edited file
Jörn Friedrich Dreyer [Wed, 9 Jan 2013 14:21:55 +0000 (15:21 +0100)]
allow default click behaviour
Jörn Friedrich Dreyer [Wed, 9 Jan 2013 12:57:51 +0000 (13:57 +0100)]
add more linebreaks, replace SQL LIMIT with param
Jörn Friedrich Dreyer [Wed, 9 Jan 2013 11:48:57 +0000 (12:48 +0100)]
more translations
Thomas Mueller [Tue, 8 Jan 2013 23:37:50 +0000 (00:37 +0100)]
webdav returns "503 Service Unavailable" in case the ownCloud server is currently in maintenance mode.
Jenkins for ownCloud [Tue, 8 Jan 2013 23:05:49 +0000 (00:05 +0100)]
[tx-robot] updated from transifex
Thomas Tanghus [Tue, 8 Jan 2013 23:02:06 +0000 (15:02 -0800)]
Merge pull request #938 from owncloud/fix_minor_files_annoyances
Fix minor files annoyances
Arthur Schiwon [Tue, 8 Jan 2013 18:25:19 +0000 (19:25 +0100)]
dechex not necessary, do not waste time with it
Arthur Schiwon [Tue, 8 Jan 2013 18:00:49 +0000 (19:00 +0100)]
Code style
Björn Schießle [Tue, 8 Jan 2013 16:44:28 +0000 (17:44 +0100)]
Upstream merged my patch to add additional ssl root certificates to the webdav client.
This means that OC_Connector_Sabre_Client is no longer needed
Thomas Mueller [Mon, 7 Jan 2013 23:32:41 +0000 (00:32 +0100)]
fixing string concatenation in javascript
refs https://github.com/owncloud/core/commit/
ae54364d7c8baf5138d166855db6431190963886
Jenkins for ownCloud [Mon, 7 Jan 2013 23:31:36 +0000 (00:31 +0100)]
[tx-robot] updated from transifex
Bernhard Posselt [Mon, 7 Jan 2013 20:57:13 +0000 (21:57 +0100)]
added cleanup recommendations by including ocs in the cachedKey method and moving the ocs routes stuff at the end of the loadRoutes method
Frank Karlitschek [Mon, 7 Jan 2013 15:45:03 +0000 (16:45 +0100)]
Update apps/user_webdavauth/user_webdavauth.php
Fixing wrong documentation. Fixes https://github.com/owncloud/core/issues/1110
Bernhard Posselt [Mon, 7 Jan 2013 14:48:45 +0000 (15:48 +0100)]
readded ocs routes
Bernhard Posselt [Mon, 7 Jan 2013 14:34:42 +0000 (15:34 +0100)]
fixed error that displayed a white page and a warning that routes could not be loaded from apps that was caused by the ocs_api merge
Björn Schießle [Mon, 7 Jan 2013 14:13:32 +0000 (15:13 +0100)]
adjust timestamp of the file copied from the version history
Jörn Friedrich Dreyer [Mon, 7 Jan 2013 12:09:52 +0000 (13:09 +0100)]
ie8 ignores rgba, show button border in ie8 by adding second border css row
Jörn Friedrich Dreyer [Mon, 7 Jan 2013 11:23:29 +0000 (12:23 +0100)]
attach max upload tipsy to div instead of a to fix tooltip not showing due to new z-index
Björn Schießle [Mon, 7 Jan 2013 11:06:31 +0000 (12:06 +0100)]
use limits defined in issue https://github.com/owncloud/core/issues/860
Jörn Friedrich Dreyer [Mon, 7 Jan 2013 10:11:21 +0000 (11:11 +0100)]
remove aborted uploads
Jörn Friedrich Dreyer [Mon, 7 Jan 2013 09:39:35 +0000 (10:39 +0100)]
adapt to isFileNameValid, whitespace cleanup