summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [tx-robot] updated from transifexJenkins for ownCloud2012-10-02112-996/+2499
|
* l18n support added to files_external/jsThomas Mueller2012-10-022-15/+33
|
* Correct checking item source for share from same owner when generating item ↵Michael Gapczynski2012-10-021-1241/+1242
| | | | target
* we are sharing the same file again if item_source of the already shared file ↵Björn Schießle2012-10-021-0/+3
| | | | and the newly shared file is the same. Therefore we can use the same target name
* remove unnecessary code and add missing items to select statementBjörn Schießle2012-10-021-14/+2
|
* remove textbox after pressing "enter" even if the name is the sameBjörn Schießle2012-10-021-16/+15
|
* escape identifiers in queriesJörn Friedrich Dreyer2012-10-021-9/+9
|
* merge all possible conflicts into on arrayBjörn Schießle2012-10-021-10/+9
|
* automatically remove and prevent installation of apps with a require version ↵Frank Karlitschek2012-10-029-11/+11
| | | | | | | less than the current one. We check now the first ad second part of the version number. Also increase the require tags of the core apps to 4.9 Please note that 4.9 is the internal versionnumber of the upcoming 4.5 release. You have to pu a <require>4.9</require> into the info.xml of your app to make it as compatible with 4.5
* fix create folder and upload file issue on win, fixes oc-1747, solution ↵Arthur Schiwon2012-10-021-2/+2
| | | | follows suggestion from bug tracker
* We can't rely on the assumption that if the matching target is from the same ↵Björn Schießle2012-10-021-10/+30
| | | | | | | | | owner that the share type will be different. Files in different folders can have the same name. Therefore also a unique name has to be generated if the matching target it from the same user. Also for folders and files with the same name a unique target name has to be generated If matching target is from the same owner, use the same target. The share type will be different so this isn't the sa
* don't use the complete path but the basename if the file/foder has no ↵Björn Schießle2012-10-021-1/+1
| | | | | | extension. Otherwise we can end up with different items in the shared directory with the same name (Also folder names can contain dots)
* [tx-robot] updated from transifexJenkins for ownCloud2012-10-0230-199/+267
|
* Fixed old, annoying css error that it turned out I had made myself :-PThomas Tanghus2012-10-011-1/+1
|
* Merge pull request #23 from lipemat/patch-1Lukas Reschke2012-10-011-1/+1
|\ | | | | | | Fix the File Upload Button in Chrome Arrow was showing under the button in Chrome. With this commit it should be shown correctly.
| * Update apps/files/css/files.cssMat Lipe2012-10-011-1/+1
| | | | | | Fixed a strange comment issue
| * Update apps/files/css/files.cssMat Lipe2012-09-301-2/+2
| | | | | | Fix the File Upload Button in Chrome. Tested in IE9-8-7, Firefox, Chrome
* | Search: fix Notice and thus broken search with activiated error reportingArthur Schiwon2012-10-011-1/+5
| |
* | LDAP: fix sharing doesn't work with ldap groups, oc-1819Arthur Schiwon2012-10-012-2/+8
| |
* | Share - Dropdown dialog - cut off username if it's longer than 14 chars - ↵Georg Ehrke2012-10-011-2/+6
| | | | | | | | bugfix for oc-1871
* | Sharing: backward compatibility to links from OC 4.0.Arthur Schiwon2012-10-011-0/+20
| |
* | fix test case for when a user is logged inRobin Appelman2012-10-011-1/+4
| |
* | add test to make sure filepaths that are passed to filesystems hooks are ↵Robin Appelman2012-10-011-0/+23
| | | | | | | | normalized
* | code styleRobin Appelman2012-10-011-46/+44
|/
* [tx-robot] updated from transifexJenkins for ownCloud2012-10-0121-63/+94
|
* update the filecache by setting mtimes to 0 when the mount configuration has ↵Robin Appelman2012-09-303-4/+18
| | | | changed instead of clearing the cache
* fix updating the filecache for when contents of a folder has changedRobin Appelman2012-09-301-5/+8
|
* fix mimetype detection using the 'file' command in some edge casesRobin Appelman2012-09-301-0/+1
|
* reload the current url when login in instead of always redirecting to the ↵Robin Appelman2012-09-302-2/+3
| | | | default app (oc-1873)
* [tx-robot] updated from transifexJenkins for ownCloud2012-09-3019-70/+98
|
* Fix a typoLukas Reschke2012-09-301-1/+1
|
* Fix double url decoding in fileDownloadPath functionBart Visscher2012-09-291-1/+1
|
* Merge pull request #21 from raghunayyar/masterLukas Reschke2012-09-291-1/+1
|\ | | | | CSS typo fixed.
| * Update settings/css/settings.cssRaghu Nayyar2012-09-291-1/+1
| | | | | | CSS typo fixed.
* | Fallback for systems without opensslLukas Reschke2012-09-293-7/+30
| |
* | mt_rand() is not secure from a cryptographic point of view, let's use ↵Lukas Reschke2012-09-291-1/+2
| | | | | | | | openssl_random_pseudo_bytes() here
* | rand() + uniqid() are not from cryptographic qualityLukas Reschke2012-09-291-1/+1
| |
* | Removed sectokenLukas Reschke2012-09-293-9/+1
| | | | | | | | | | This token is completly useless since an attacker can easily extract it from the page.
* | Removed sectokenLukas Reschke2012-09-292-12/+4
| | | | | | | | | | This token is completly useless since an attacker can easily extract it from the page.
* | mt_rand() is not secure from a security point of view and predictable. Let's ↵Lukas Reschke2012-09-291-1/+3
| | | | | | | | | | | | | | use openssl_random_pseudo_bytes() instead. Before: 26 bits entropy After: 72 bits entropy
* | [tx-robot] updated from transifexJenkins for ownCloud2012-09-2915-55/+92
| |
* | [tx-robot] updated from transifexJenkins for ownCloud2012-09-28107-1250/+1718
| |
* | Merge pull request #20 from scambra/undo-l10nThomas Müller2012-09-281-4/+4
|\ \ | | | | | | undo interpolation in js for 4.5
| * | undo interpolation in js for 4.5scambra2012-09-281-4/+4
| | |
* | | Do urlencoding in linkTo functionsBart Visscher2012-09-286-5/+8
| | |
* | | Fix syntax error in removeETagHookBart Visscher2012-09-281-5/+5
| | |
* | | After selecting a search result, hide the resultsBart Visscher2012-09-281-0/+1
| | |
* | | urlencode filename in search result, fixes problems with & in nameBart Visscher2012-09-281-0/+1
| | |
* | | Simplify generating file search resultsBart Visscher2012-09-281-8/+14
| | |
* | | Correctly fix oc-1016 and fix downloading of filesBart Visscher2012-09-281-1/+1
| | |