Arthur Schiwon
466b6c1ee0
local user backend shall search for both username and displayname, fixes #5401
12 years ago
Vincent Petry
ebcd9ae628
Added comment for clarification about fseek() call in quota.php
12 years ago
Bart Visscher
b6c67c4c63
'Update to' is shown when there is no update
...
See #4716
12 years ago
Bart Visscher
310c8400df
When updating an appstore app, execute a database update
...
See #5202
12 years ago
Thomas Müller
c455cb989b
add header 'OC-FileId' on PUT
12 years ago
Thomas Müller
3bca1519ee
switch instance id and file id
12 years ago
Thomas Müller
8253994262
using array_diff_assoc to detect diffs in values as well
12 years ago
Thomas Müller
f619f59f1c
cast storage_mtime to int
12 years ago
Vincent Petry
c8df27de73
Fixed quota stream to not wrap read-only fopen calls
12 years ago
Vincent Petry
d8b245490b
Fixed quota stream's fseek method
...
- Added missing return statement
- Added missing support for SEEK_END
- Fixes #5524
12 years ago
Thomas Müller
c5b8963b18
log the data arrays
12 years ago
Thomas Müller
a22f12cfe0
- fixing namespace
...
- remove property only if present
12 years ago
Thomas Müller
88d1e20d56
some logging added ....
12 years ago
Thomas Müller
54e0f1d739
fixing PHPDoc & grammar
12 years ago
Jörn Friedrich Dreyer
0bf034da96
prefer logo png from theme over svg from core
...
The logo images are specified in the php templates with eg `image_path('', 'logo-wide.svg')`. If that file exists the correct path will be served to the client in the html template. Then the `SVGSupport()` is checked in https://github.com/owncloud/core/blob/master/core/js/js.js#L701 which will replace `svg` with `png` in img tags and css background definitions.
fixes #5074
partially solves #5421 , but not when an svg has been specified in css and is then 'fixed' by js to point to a png which does not exist in the theme but is then might be resolved to an image from core .... well theoretical problem ... might not even be a problem
@karlitschek @jancborchardt please review
12 years ago
Thomas Müller
b02a485712
handle case where fileid is not set
12 years ago
Thomas Müller
b60ae11db8
introducing new dav property {xmlns:oc=" http://owncloud.org/ns }id
12 years ago
Andreas Fischer
06f2ae082e
Have to also strtolower() on available language name. Otherwise no match.
12 years ago
Andreas Fischer
daf93c4516
Sort, so 'de' is preferred over 'de_DE' when performing non-exact matching.
12 years ago
Andreas Fischer
c14b470ea2
Apply substring on the correct value.
12 years ago
Vincent Petry
a542c57a7b
Catch duplicate insertion errors while scanning files
...
When two scanning processed run at the same time, for example when
scan.php and list.php were called at the same time on an external
storage mountpoint, duplicate insertion errors can occurs.
These errors are now logged and ignored.
Since both scans are running in parallel transactions, they don't see
each other's changes directly in the DB which can cause duplicate
insertion errors for mime types as well, but those mime types can't be
selected yet. The solution to this is to force-reload the mimetypes list
after the transaction is finished.
Fixes #5199
12 years ago
Andreas Fischer
4c76dd3871
Better variable names.
12 years ago
Andreas Fischer
207f6d55ce
Fix coding style for else.
12 years ago
Thomas Müller
3c710696e8
add missing file header
12 years ago
Andreas Fischer
9d1b425b62
Correct indentation for default language.
12 years ago
Thomas Tanghus
ad017285e1
Fix namespace for OCP\Appframework\Http
...
To avoid having to use OCP\Appframework\Http\Http in the public - and stable
- API OCP\Appframework\Http is now both a class and a namespace.
12 years ago
Thomas Müller
09903aa36c
- delete properties on node delete
...
- move properties on node move
12 years ago
Bjoern Schiessle
bd450d6f6b
add post_enable hook if a app gets enabled
12 years ago
Thomas Müller
6e0e621218
creating and deleting of file and folder 'Shared' in root is not allowed
12 years ago
Thomas Müller
7f1432600c
fixing php 5.3.3 error:
...
Undefined variable: this
lib/private/appframework/dependencyinjection/dicontainer.php:92
12 years ago
Thomas Müller
87a09156f8
use OC_Helper::linkToDocs() in lib/private/config.php
12 years ago
Thomas Müller
e30e4ea1cc
php 5.3 compatibility regarding OC\DB\Connection fixed
12 years ago
Thomas Müller
124984905e
introduce OC_Helper::linkToDocs()
12 years ago
Victor Dubiniuk
97aff7c64e
Use quoteIdentifier with proper objects
12 years ago
Thomas Müller
148d2616e5
introduce link_to_docs() and migrate links
12 years ago
Thomas Müller
66a2f3b0b9
New OCS route:
...
/ocs/cloud/user
Response:
<?xml version="1.0"?>
<ocs>
<meta>
<status>ok</status>
<statuscode>100</statuscode>
<message/>
</meta>
<data>
<id>thomas</id>
<display-name>DeepDiver</display-name>
<email>no-response@domain.tld</email>
</data>
</ocs>
12 years ago
Thomas Müller
581cd9bb9c
Support existing sessions within OCS API calls
12 years ago
Thomas Müller
2628601e79
adding oc-mtime handling to chunked upload
12 years ago
Thomas Müller
3cb666ad77
chunked files are assembled into a part file on the target storage followed by an atomic rename operation.
12 years ago
Andreas Fischer
5978ddbec6
Try to create custom log file before falling back to default.
12 years ago
Arthur Schiwon
701009bd72
dispayNamesInGroup(s) should always return uid as key in the result attr, fixes #5209
12 years ago
Frank Karlitschek
9e99f9d13d
the logfile shoudn't be world readable.
12 years ago
Morris Jobke
1f1fcc6129
Remove "link" shares right after disabling the "allow_link_share" setting
12 years ago
Vincent Petry
b1f72edc57
Fixed spaces
12 years ago
Thomas Müller
d2d2c9a46d
fixes #5367
12 years ago
Frank Karlitschek
6a60a47d59
add options to disable the check for a working .htaccess file in data and for a working WebDAV server. This are advanced settings that are needed in special situations where our check fail and the user runs into an http timeout.
12 years ago
Andreas Fischer
5ee74b656c
Move OC_Connector_Sabre_Server to expected location.
12 years ago
Georg Ehrke
4c5959e1f5
fix comment
12 years ago
Thomas Müller
e55d2359b1
removing pointless calls on quoteIdentifier() - reason: name on $tableDiff doesn't exist and my design the name cannot be changed
...
adding PHPDoc
12 years ago
Georg Ehrke
521277b8b6
only call shell_exec if enabled
12 years ago