summaryrefslogtreecommitdiffstats
path: root/core/ajax
Commit message (Collapse)AuthorAgeFilesLines
* kill ancient codeMorris Jobke2015-01-201-17/+0
|
* Verify whether type is correctLukas Reschke2015-01-081-16/+12
| | | | `$this->info` can very well contain an empty array or possibly other values. This means that when this code path is called a PHP Fatal error might get thrown which is not what we want.
* Merge pull request #13016 from owncloud/sharing_fixesMorris Jobke2015-01-071-2/+2
|\ | | | | don't delete share table entries for the unique name if re-share permission was removed
| * shareType and permissions are integersBjoern Schiessle2015-01-071-2/+2
| |
* | new OC.Search, add search result formatters and handlers, use full content ↵Jörn Friedrich Dreyer2015-01-021-1/+1
|/ | | | width for results
* Next step in server-to-server sharing next generation, see #12285Bjoern Schiessle2014-12-191-1/+16
| | | | | | | | | | | | | | Beside some small improvements and bug fixes this will probably the final state for OC8. To test this you need to set up two ownCloud instances. Let's say: URL: myPC/firstOwnCloud user: user1 URL: myPC/secondOwnCloud user: user2 Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud". The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined. If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.
* Inject configVictor Dubiniuk2014-12-101-1/+2
|
* Use httphelper and cache response even when it emptyVictor Dubiniuk2014-12-061-1/+4
|
* in case a translation javascript is not found we no longer bail outThomas Müller2014-10-291-30/+0
| | | | remove translation.php
* move some deprecated usage of OC_Config and OC_AppConfig to \OC::serverThomas Müller2014-10-201-7/+8
|
* Close the session for preview generationLukas Reschke2014-09-291-0/+1
| | | | Without closing the session every preview image generation is locking the session which makes the webinterface unresponsive.
* Merge pull request #9512 from libasys/patch-2Lukas Reschke2014-09-091-1/+2
|\ | | | | Fix use Sharing Api with calendar
| * Fix use Sharing Api with calendarlibasys2014-07-081-2/+3
| | | | | | | | | | Without this fix it logs this error: Undefined index: itemSourceName at /opt/local/apache2/htdocs/oc7/core/ajax/share.php#44 I think the itemSourceName is only used with sharing files!
* | Merge pull request #10739 from owncloud/eventsource-publicLukas Reschke2014-09-081-1/+1
|\ \ | | | | | | Add EventSource to the public API
| * | Better phpdoc and method namingRobin Appelman2014-09-041-1/+1
| | |
| * | Use the public api to get event sourcesRobin Appelman2014-09-031-1/+1
| | |
* | | Fix upgrade process when apps enabled for specific groupsVincent Petry2014-09-021-0/+4
|/ / | | | | | | | | | | | | Fix issue where the currently logged user was causing side-effects when upgrading. Now setting incognito mode (no user) on update to make sure the whole apps list is taken into account with getEnabledApps() or isEnabled().
* | Use public api for getting l10nRobin Appelman2014-08-312-4/+4
| |
* | Add require_once to update.php due to routingLukas Reschke2014-08-221-0/+1
| | | | | | | | Fixes https://github.com/owncloud/core/issues/10585 Partially reverts 52d5429768acdb87b2dc2efedc89eb4ad0d29139
* | Merge pull request #10522 from owncloud/removeLoadAppScriptblizzz2014-08-211-1/+0
|\ \ | | | | | | Remove loadAppScriptFile
| * | Add update route to coreLukas Reschke2014-08-191-1/+0
| | |
* | | Merge pull request #9866 from owncloud/app-upgradeRobin Appelman2014-08-191-0/+6
|\ \ \ | |/ / |/| | Don't do app upgrades in the background
| * | Send feedback from upgrading apps to the upgrade uiRobin Appelman2014-08-041-0/+6
| | |
* | | we need the recipient as a additional parameter to know for which share the ↵Bjoern Schiessle2014-08-131-2/+2
| | | | | | | | | | | | notification was send
* | | in case $_POST['itemSourceName'] does not exist we simply default it to nullThomas Müller2014-08-011-1/+2
|/ /
* | Merge pull request #10051 from owncloud/preview-empty-textThomas Müller2014-07-311-1/+2
|\ \ | | | | | | Use svg mimeicons for empty text files
| * | Use svg mimeicons for empty text filesRobin Appelman2014-07-301-1/+2
| | |
* | | Also keep maxY into account when scaling a preview while preserving aspect ratioRobin Appelman2014-07-301-4/+0
|/ /
* / add OCS api call to set expire date for link sharesBjoern Schiessle2014-07-251-11/+5
|/
* set minDate and maxDate in datepickerBjoern Schiessle2014-06-061-0/+2
|
* unify share settingsBjoern Schiessle2014-06-051-3/+3
|
* Simulate apps database schema update on upgradeVincent Petry2014-06-041-0/+3
| | | | | When upgrade, also simulate the database schema update for apps before doing the actual upgrade.
* Now showing disabled apps as upgrade status lineVincent Petry2014-05-271-0/+8
| | | | | - Added app id in update overview. - Added status message for disabled app for CLI upgrade and web upgrade
* Automatically copy the share expiration date when new shares are createdJoas Schilling2014-05-191-1/+2
| | | | Fix #4823
* Images on public sharing get downscaled to increase use experience - this ↵Thomas Müller2014-05-021-1/+7
| | | | | | | | | | | will speed up loading time - adding keep aspect to core/ajax/preview.php - remove duplicate method Preview::show() - no more hard coded mimetype of preview - remove .png from the preview urls - keep old route preview.png for backwards compatibility - aspect preserving previews are now cached
* Merge pull request #5857 from owncloud/type-ahead-share-by-mail-masterThomas Müller2014-04-111-0/+28
|\ | | | | introduce auto completion on share email - integrated with the contactsm...
| * Fix copy/paste error :PThomas Tanghus2014-03-251-1/+1
| |
| * 'ID' => 'id' and check existence of EMAILThomas Tanghus2014-03-251-1/+5
| |
| * introduce auto completion on share email - integrated with the ↵Thomas Müller2013-11-141-0/+24
| | | | | | | | contactsmanager api
* | killing some more calls to OC_App::loadApps(); - because we load all apps in ↵Thomas Müller2014-03-251-1/+0
| | | | | | | | handleRequest()
* | Merge branch 'master' into load-apps-proper-masterThomas Müller2014-03-214-127/+71
|\ \ | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php
| * \ Merge pull request #7557 from owncloud/issue/7297Vincent Petry2014-03-191-0/+8
| |\ \ | | | | | | | | Do not allow setting an expiration date in the past
| | * | Do not allow setting an expiration date in the pastJoas Schilling2014-03-051-0/+8
| | | | | | | | | | | | | | | | Fix #7297
| * | | drop file cache migration OC5 -> OC6Thomas Müller2014-03-181-9/+0
| | | |
| * | | send an individual email to each recipientThomas Müller2014-03-101-2/+9
| |/ /
| * | rename url parameterRobin Appelman2014-02-241-1/+1
| | |
| * | Add url parameter to control whether previews should return 404 when the ↵Robin Appelman2014-02-211-1/+2
| | | | | | | | | | | | mimetype is unsupported
| * | Merge branch 'master' into mimeicons-svgRobin Appelman2014-02-202-105/+34
| |\ \
| | * \ Merge pull request #7247 from owncloud/sharing_cleanup_step1Björn Schießle2014-02-201-99/+13
| | |\ \ | | | | | | | | | | clean up the sharing ajax calls, add mail notification class
| | | * | clean up the sharing ajax calls, add mail notification classBjoern Schiessle2014-02-191-99/+13
| | | | |