Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
AgeCommit message (Collapse)Author
2013-11-20Merge pull request #5967 from owncloud/encryption-extstorage-fixsizeresetVincent Petry
Fix for extstorage + encryption where unencrypted size is not kept
2013-11-20Fix for extstorage + encryption where unencrypted size is not keptVincent Petry
Fix for external storage with encryption where the unencrypted size is first written in the DB, then set back to zero, causing performance issue because the file needs to be reopened every time to find out the unencrypted size (and potentially needs a full redownload)
2013-11-20check if it is a cached file or a version to resolve the correct path to the ↵Bjoern Schiessle
file key
2013-11-20only check if the key file exists to decide if it is an encrypted file or not.Bjoern Schiessle
This solves problems with external storage which doesn't support fseek
2013-11-19make sure that the owners home is mounted correctlyBjoern Schiessle
2013-11-19Fixed SMB file deletion success detectionVincent Petry
Since unlink() smb4php doesn't return true on deletion success, we need to check whether the file was deleted to confirm success. Fixes #5866
2013-11-19Removing trailing dot in path that samba doesn't seem to likeVincent Petry
Fixes #5778 Added unit test for getId() and constructUrl()
2013-11-19Fixed delete action to show error message as notificationVincent Petry
2013-11-19Merge pull request #5916 from owncloud/extstorage-smb-ignorenetbioserrorMorris Jobke
SMB ignore connection errors when NetBIOS is disabled
2013-11-18Merge pull request #5923 from owncloud/font-weightJan-Christoph Borchardt
change bold 'deleted files' button to normal for less focus
2013-11-18fix filtering number like filenames in filelistJörn Friedrich Dreyer
forward port of https://github.com/owncloud/core/commit/847ad6c40b951cbd3d187e3c72cb55dc3acd6951
2013-11-18change bold 'deleted files' button to normal for less focusJan-Christoph Borchardt
2013-11-18Merge pull request #5908 from owncloud/fix_errorpage_callVincent Petry
[encryption] fix redirectToErrorPage() call
2013-11-18SMB ignore connection errors when NetBIOS is disabledVincent Petry
When NetBIOS is blocked or disabled, a smb::look() call can still get the list of shares from smbclient, even though the name resolution at the end of the command fails. This fix makes it ignore the connection error if we already got the list of shares. Fixed #5860
2013-11-17call error page with session as parameterBjoern Schiessle
2013-11-16[tx-robot] updated from transifexJenkins for ownCloud
2013-11-15Merge pull request #5894 from owncloud/readd_sharing_tokenVincent Petry
readd sharing token to public template
2013-11-15Merge pull request #5772 from owncloud/fix5741blizzz
LDAP Wizard: introduce configuration status indicator, fixes #5741
2013-11-15Merge pull request #5833 from owncloud/encryption_fixesBjörn Schießle
[encryption] preserve timestamps and etags during encryption/decryption
2013-11-15Merge pull request #5880 from owncloud/replace_etmp_filesVincent Petry
write encryption tmp files to the cache folder
2013-11-15tests addedBjoern Schiessle
2013-11-15readd sharing token to public templateJörn Friedrich Dreyer
necessary for https://github.com/owncloud/apps/pull/1476
2013-11-15Fix for smb4php fseekVincent Petry
The stream_fseek function must return a boolean which will be mapped to 0 for success and -1 for failure for the caller. This patch fixes stream_fseek of smb4php to also respect this convention. Since the encryption app is relying on fseek to detect whether a file is encrypted by reading the last bit of data, this will fix #5023
2013-11-15Merge pull request #5700 from owncloud/ldapWizSetDisplayNamesThomas Müller
LDAP Wizard: do not forget to set display name attributes for user and g...
2013-11-14Merge pull request #5862 from owncloud/files-singledotdirsThomas Müller
Files singledotdirs
2013-11-14instead of writing etmp files we write the dummy file to data/user/cache to ↵Bjoern Schiessle
avoid that etmp files show up in the users files list
2013-11-14Merge pull request #5214 from owncloud/no_extra_slashesFrank Karlitschek
Don't double-slash filenames at the root.
2013-11-14Files app backend now normalizes paths before rendering templatesVincent Petry
Before rendering breadcrumbs or the file list, the paths are now normalized. This prevents the UI to show "." breadcrumbs in case the path contains sections with "/./" Fixes #5848
2013-11-14remove debug outputBjoern Schiessle
2013-11-14test encryptAll() and decryptAll() to make sure that mtime and etag stay the ↵Bjoern Schiessle
same
2013-11-13Merge pull request #5805 from owncloud/shared-storage-copy-folderlistFrank Karlitschek
Use View::copy and View::rename when copying or renaming files in the shared storage
2013-11-13LDAP Wizard: make 'Configuration OK' and 'Help' texts grey so they don't ↵Arthur Schiwon
take too much awareness
2013-11-13LDAP Wizard: move status indicator in one line with back and continue buttonsArthur Schiwon
2013-11-13LDAP Wizard: introduce configuration status indicator, fixes #5741Arthur Schiwon
2013-11-13Merge pull request #5806 from owncloud/styles-fix-external_storageFrank Karlitschek
Fix spacing issue for checkboxes, vertically center checkboxes on person...
2013-11-13Merge pull request #5809 from owncloud/fix5753Morris Jobke
LDAP Wizard: proper behaviour with anonymous bind, fixes #5753
2013-11-13Merge pull request #5831 from owncloud/files-charatissueMorris Jobke
Fixed total dirs/files message hiding condition
2013-11-13Merge branch 'master' into encryption_fixesBjoern Schiessle
2013-11-13Merge pull request #5447 from owncloud/fixing-5117-masterVincent Petry
No data corruption duriing parallel upload
2013-11-13Fixed total dirs/files message hiding conditionVincent Petry
Fixes #5829
2013-11-12fixPartialFilePath() is now stripPartialFileExtension()Bjoern Schiessle
2013-11-12rename fixPartialFilePath() to stripPartialFileExtension(), this name ↵Bjoern Schiessle
describes better what the method actually does
2013-11-12only update file cache if the file is already indexed to avoid that we ↵Bjoern Schiessle
create a incomplete file cache entry
2013-11-12make sure that we keep the correct timestamp and etag after ↵Bjoern Schiessle
encryoption/decryption
2013-11-12implement delete hooks in file versions libGeorg Ehrke
2013-11-12replace $path with '/files_trashbin/files/' . $fileGeorg Ehrke
2013-11-12add delete hook for trash bin appGeorg Ehrke
2013-11-12missed some replacements... now tests should workBjoern Schiessle
2013-11-12fixing tests for the new part file handlingBjoern Schiessle
2013-11-11LDAP Wizard: make UI behaviour more consistent and more pleasant when ↵Arthur Schiwon
determining Base DN