aboutsummaryrefslogtreecommitdiffstats
path: root/lib/files/mapper.php
Commit message (Collapse)AuthorAgeFilesLines
* move the private namespace OC into lib/private - OCP will stay in lib/publicThomas Müller2013-09-301-239/+0
| | | | | Conflicts: lib/private/vcategories.php
* Merge pull request #3690 from owncloud/use_execute_audited_in_filecacheThomas Müller2013-06-131-13/+13
|\ | | | | use executeAudited in files cache
| * use executeAudited in files cacheJörn Friedrich Dreyer2013-06-121-13/+13
| |
* | Update mapper.phpinfoneo2013-06-081-25/+8
| | | | | | Now slugify is performed on whole filename (including extension). Changed method of adding index number (using regular expressions pathinfo() method removed).
* | Fixed problems with a dots in a filenamesinfoneo2013-05-121-6/+12
| |
* | Dots in a filenames fixinfoneo2013-05-121-8/+19
|/
* some more test cases & fix on file name generation with indexThomas Mueller2013-03-191-2/+2
|
* adding extension to slugified physical pathThomas Mueller2013-03-191-7/+16
|
* fixing various filesystem/storage unit tests on windowsThomas Mueller2013-03-121-3/+5
| | | | fixing copy operation on mapper
* adding //IGNORE to iconv to prevent nasty php warningsThomas Mueller2013-03-121-1/+1
|
* slug generates uniqid in case the file/folder name contains not one single ↵Thomas Mueller2013-03-121-4/+2
| | | | valid character
* indexed slug should be created based on logic pathThomas Mueller2013-03-121-1/+1
|
* class Mapper no respects an unchanged physical root which will be excluded ↵Thomas Mueller2013-02-151-12/+12
| | | | from slugifying the path
* Fix NoSpaceAfterComma and SpaceBeforeCommaBart Visscher2013-02-141-1/+1
|
* fixing mappedlocal storage to work on non-windows as wellThomas Mueller2013-02-111-1/+15
| | | | this allows us to run unit tests on linux - necessary to enable easy regression testing
* Mapper: use md5 hashes for database indexesRobin Appelman2013-02-101-6/+6
| | | | indexing the full path exeeds the maximum index length for MySQL
* initial version of a local storage implementation which will use unique ↵Thomas Mueller2013-02-061-0/+216
slugified filename on the local filesystem. This implementation will only be enabled on windows based system to solve the issues around UTF-8 file names with php on windows.