summaryrefslogtreecommitdiffstats
path: root/core/js
Commit message (Collapse)AuthorAgeFilesLines
* Translate reload message after updateMorris Jobke2013-11-261-1/+1
| | | | fixes #6064
* Check which permissions are possible to re-share a fileBjoern Schiessle2013-11-181-1/+16
|
* Fixed multiselect to not set the button's height on itself after selectVincent Petry2013-11-141-2/+0
| | | | Fixes #5841
* Merge pull request #5582 from owncloud/files-previewcachingThomas Müller2013-11-051-3/+3
|\ | | | | Append file etag to preview URLs
| * Append file etag to preview URLsVincent Petry2013-10-281-3/+3
| | | | | | | | Fixes #5534
* | Fixed input field and tipsy positioning in singleselectVincent Petry2013-10-311-4/+3
| | | | | | | | | | | | If the user scrolls or the window is resized, the formerly cached offset was wrong. This fix makes sure the offset is re-read before showing the input field.
* | Improve quota input fieldVincent Petry2013-10-301-1/+14
| | | | | | | | | | | | - Added tooltip with examples - The quota value returned by the server is now displayed after update - Fixes #5346
* | allow to share a file/folder as public link also if one of it parents was ↵Bjoern Schiessle2013-10-301-2/+4
| | | | | | | | already shared as link
* | Merge pull request #5396 from owncloud/fix-sharing-codeMorris Jobke2013-10-291-9/+23
|\ \ | |/ |/| Fix sharing error message - id -> file name
| * also add new parameter to function callsMorris Jobke2013-10-291-4/+4
| |
| * pass the name of the item source from the browser to the server - no need to ↵Thomas Müller2013-10-231-5/+19
| | | | | | | | get the data via complicated db queries
* | Fix broken users page when a username consists of digits only, fixes #5560Arthur Schiwon2013-10-251-1/+1
| |
* | Merge pull request #5477 from ↵Thomas Müller2013-10-232-2/+2
|\ \ | | | | | | | | | | | | owncloud/prevent_user_from_creating_or_renaming_to_an_existing_filename prevent user from creating or renaming sth. to an existing filename
| * | add missing ;Jörn Friedrich Dreyer2013-10-231-1/+1
| | |
| * | prevent user from creating or renaming sth. to an existing filenameJörn Friedrich Dreyer2013-10-221-1/+1
| |/ | | | | | | | | | | | | | | - show tooltip when violating naming constraints while typing - when target filename exists on server fallback to dialog to interrupt the users flow because something unexpected went wrong - fixes #5062 - also fixes some whitespace and codestyle issues in files js - uses css selector over filterAttr in touched js files
* | Merge pull request #5497 from owncloud/ie8-placeholdershimThomas Müller2013-10-234-6/+225
|\ \ | | | | | | Ie8 placeholdershim
| * | Fixed sharing dropdown placeholders in IE8/9Vincent Petry2013-10-232-0/+219
| | | | | | | | | | | | Added jquery.placeholder shim to handle input field placeholders in IE8/9
| * | Renamed current placeholder jquery plugin to imageplaceholderVincent Petry2013-10-232-6/+6
| |/ | | | | | | | | This is to prevent conflicts with jquery libs that handle text placeholders in IE8
* | Merge pull request #5435 from owncloud/share-improvementsThomas Müller2013-10-231-36/+18
|\ \ | |/ |/| Share improvements
| * Fixed share dropdown checkbox wrappingVincent Petry2013-10-231-10/+15
| | | | | | | | | | | | | | The "show cruds" button is now embedded into the last label/checkbox group and wraps with it. Added ellipsis to prevent long names to exceed the dropdown's width.
| * better wording for share input field and share linkJan-Christoph Borchardt2013-10-231-2/+2
| |
| * shorten string to 'notify by email', cut 'user'Jan-Christoph Borchardt2013-10-201-1/+1
| |
| * remove hover hide/show stuff for share dropdown to make things more obviousJan-Christoph Borchardt2013-10-201-26/+3
| |
* | Merge pull request #5446 from frisco82/fixNotifyUserFrank Karlitschek2013-10-211-11/+10
|\ \ | | | | | | Fix notify user checkbox
| * | fix notify user, and made js more resiliant to changesRamiro Aparicio2013-10-211-11/+10
| |/
* | Merge pull request #5120 from frisco82/sendEmailJSVincent Petry2013-10-211-4/+4
|\ \ | | | | | | Fix disabled status after sending a share link email
| * | Fix disabled status after sending the emailRamiro Aparicio2013-10-041-4/+4
| | |
* | | Merge pull request #5444 from frisco82/fixDisplayGroupVincent Petry2013-10-211-5/+7
|\ \ \ | | | | | | | | Fix display name for user after sharing
| * | | fix user displayName not being shown after add, added class for improved ↵Ramiro Aparicio2013-10-211-5/+7
| | |/ | |/| | | | | | | styling, fix strong for groups when english is not being used
* / | Fixed share with link checkbox missing as regular userVincent Petry2013-10-211-12/+1
|/ / | | | | | | | | | | | | | | | | Instead of loading the app config setting "shareapi_allow_links" using a synchronous ajax call that fails when the user is not an admin, this fix puts the flag directly in the template so it doesn't need to be loaded afterwards. Fixes #5440
* | Merge pull request #5338 from frisco82/fixGroupDisplayMorris Jobke2013-10-181-1/+4
|\ \ | | | | | | Show (group) after groups in share dropdown
| * | Show (group) after groups in share dropdownRamiro Aparicio2013-10-141-1/+4
| | |
* | | readability: single line -> multiple linesMorris Jobke2013-10-181-4/+10
| | |
* | | Fix accidental deletion of ifMichael Gapczynski2013-10-181-0/+1
| | |
* | | Don't show links option in dropdown if disabledMichael Gapczynski2013-10-181-1/+6
| | |
* | | Added missing var in share.jsVincent Petry2013-10-171-0/+1
| | |
* | | Fixed sharing status update for new/uploaded filesVincent Petry2013-10-171-39/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Creating new files, folders or uploading files now have their sharing icon updated accordingly. For this, the global share status list that is cached in OC.Share.statuses is reused for new files. Performance should improve as the sharing list is now only loaded once per navigation session. In OC.Share, split loadIcons into loadIcons + updateIcons. Fixes #4977
* | | Merge pull request #5262 from owncloud/files-ie8-conflictdialogbrokenfixMorris Jobke2013-10-161-1/+1
|\ \ \ | | | | | | | | Fixed conflict dialog in IE8
| * | | Fixed conflict dialog in IE8Vincent Petry2013-10-101-1/+1
| | | | | | | | | | | | | | | | | | | | - Fixed JS error that prevent the conflict dialog to open #5060 - Fixed JS error that prevented the overwrite case to run
* | | | Merge pull request #5295 from owncloud/show-eye-in-personalRaghu Nayyar2013-10-152-10/+6
|\ \ \ \ | |_|/ / |/| | | Shows The Eye permanently in the Confirm Password field in Personal Settings
| * | | Removes Bogus showpassword js. thx @PVince81raghunayyar2013-10-151-3/+1
| | | |
| * | | Should Display PasswordToggle Eye Everywhere.raghunayyar2013-10-151-7/+1
| | | |
| * | | Shows The Eye permanently in the Confirm Password field in Personal Settings ↵raghunayyar2013-10-121-1/+5
| | | | | | | | | | | | | | | | - fix #5167
* | | | Improve expand/collapse logicVictor Dubiniuk2013-10-111-16/+13
|/ / /
* | | Merge pull request #5133 from owncloud/js_vcategories_to_tagsThomas Tanghus2013-10-113-249/+353
|\ \ \ | |/ / |/| | Js vcategories to tags
| * | It's 'status', not 'result'!Thomas Tanghus2013-10-041-4/+4
| | |
| * | Remove obsolete files.Thomas Tanghus2013-10-042-249/+0
| | |
| * | JS version of the OCP\ITags interfaceThomas Tanghus2013-10-041-0/+353
| |/
* | Merge pull request #4921 from owncloud/file_conflicts_dialog_fixesVicDeo2013-10-071-1/+1
|\ \ | | | | | | File conflicts dialog fixes
| * | use correct property for mimetype of existing filesJörn Friedrich Dreyer2013-10-071-1/+1
| | |