| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
blocking the request to itself - fixes #13153
|
|\
| |
| | |
Check for hash
|
| |
| |
| |
| | |
See https://github.com/owncloud/core/pull/13042
|
| | |
|
|/ |
|
| |
|
|
|
|
| |
Make DateTimeFormatter a service and adjust tests that have been inaccurate
|
|
|
|
|
|
|
|
|
|
| |
Both are removed from 5.4.0
Safe Mode: http://php.net/manual/en/features.safe-mode.php
> This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.
Magic Quotes: http://php.net/manual/en/security.magicquotes.php
> This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.
|
|
|
|
| |
:beers:
|
| |
|
|
|
|
| |
This is not installed by default in all cases and will break the DAV features of ownCloud. Lot's of reports such as https://github.com/owncloud/ios-issues/issues/167#issuecomment-63798507
|
|
|
|
|
|
| |
* add addVendorScript & addVendorStyle
* refactoring of addScript and addStyle
* add shortcuts vendorScript and vendorStyle
|
|\
| |
| | |
Fix the addHeader tag attributes text methods to not ignore the text parameter
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
$text parameter
Also support closing tags with no text content given
Conflicts:
lib/private/template.php
|
| |
| |
| |
| | |
remove translation.php
|
|/
|
|
|
|
|
|
|
|
|
| |
Added addTranslations and fixed de.js file
Fixed de.js to use OC.L10N.register() and use to correct expected
format.
Added JS unit tests for OC.L10N class
Include translations JS script for all apps
|
|\
| |
| | |
Make supported DBs configurable within config.php
|
| |
| |
| |
| |
| |
| | |
This commit will make the supported DBs for installation configurable within config.php. By default the following databases are tested: "sqlite", "mysql", "pgsql". The reason behind this is that there might be instances where we want to prevent SQLite to be used by mistake.
To test this play around with the new configuration parameter "supportedDatabases".
|
|/
|
|
| |
It's only reasonable to have proper type hinting here which might even help us to catch bugs.
|
|
|
|
| |
There is not much sense in having these files marked executable, we should avoid that.
|
| |
|
|
|
|
| |
suspend encryption proxy when copying skeleton
|
| |
|
|\
| |
| | |
Redirect only to absolute URL
|
| |
| |
| |
| | |
We do not want to redirect to other domains using the "?redirect_url=" feature. Please notice, that the ownCloud project does not consider open redirectors as security issue.
|
|/ |
|
|\
| |
| | |
Don't complain about non-writable datadirs before we're installed
|
| | |
|
| | |
|
|\ \
| | |
| | | |
Moved WebDAV check to client side JS
|
| |/
| |
| |
| |
| |
| |
| | |
- Added setup checks in JavaScript
- Moved isWebDAVWorking to JS using SetupChecks
- Moved internet connection checks to an ajax call that goes through the
server
|
|\ \
| | |
| | | |
send browsers timezone back tp the server on login
|
| |/
| |
| |
| | |
time zone
|
|\ \
| | |
| | | |
Use only lower-case letters
|
| |/
| |
| |
| | |
Fixes https://github.com/owncloud/core/issues/11239
|
|/
|
|
|
|
|
|
| |
We do not want to follow redirects to other protocols since they might allow an adversary to bypass network restrictions. (i.e. a redirect to ftp:// might be used to access files of a FTP server which might be in a secure zone and not be reachable from the net but from the ownCloud server)
Get final redirect manually using get_headers()
Migrate to HTTPHelper class and add unit tests
|
|
|
|
| |
Some code that I also used for https://github.com/owncloud/administration/pull/11
|
| |
|
| |
|
|\
| |
| | |
Fix upgrade process when apps enabled for specific groups
|
| |
| |
| |
| |
| |
| |
| | |
Fix issue where the currently logged user was causing side-effects when
upgrading.
Now setting incognito mode (no user) on update to make sure the whole
apps list is taken into account with getEnabledApps() or isEnabled().
|
|\ \
| | |
| | | |
added missing User-Agents
|
| | |
| | |
| | |
| | |
| | |
| | | |
Some providers block connections with missing user-agents. Also
user-agents are useful for analyzing requests. I've added a USER_AGENT
constant that is used in cURL and in file_get_contents.
|
| |/
| |
| |
| | |
header "User-Agent" was missed
|
| |
| |
| |
| |
| | |
OC_Util::generateRandomBytes() only returns lowercase alphanumeric values.
We should use the new RNG which has a broader characterset.
|
| | |
|
|\|
| |
| |
| |
| | |
Conflicts:
lib/private/util.php
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession
restore order os OC::$session and OC::$CLI
remove unneded initialization of dummy session
write back session when $useCustomSession is true
log warning when deprecated app is used
|