aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Implemented ace-edtior as an app. Basic file editing and saving supported.Tom Needham2011-09-283-5/+12
|
* Add flag in info.xml to control the apps that are installed by defaultBart Visscher2011-09-279-8/+17
|
* show only most essential stuff in add and edit event formGeorg Ehrke2011-09-272-8/+20
|
* check for php modulesFrank Karlitschek2011-09-271-1/+8
|
* remove warning by check cookie before accessing it.Frank Karlitschek2011-09-271-1/+1
|
* Fixed table gap from appearing.Scott Barnett2011-09-271-2/+0
|
* Merge branch 'master' of git://gitorious.org/owncloud/owncloudScott Barnett2011-09-272-5/+5
|\
| * Use correct name for function state for addScript/addStyle in jsBart Visscher2011-09-261-4/+4
| |
| * Fix space in commentBart Visscher2011-09-261-1/+1
| |
* | Fixed delete cross positioning issue.Scott Barnett2011-09-271-3/+6
|/
* Reverting: initial commit for gallery appBartek Przybylski2011-09-2614-450/+0
|
* dont set content type to json for AppsRobin Appelman2011-09-262-3/+5
|
* Merge branch 'master' of git://gitorious.org/owncloud/owncloudBartek Przybylski2011-09-2555-353/+228
|\
| * Use OC_JSON for json responsesBart Visscher2011-09-2554-351/+226
| | | | | | | | | | Create OC_JSON class, for single point of creating json responses. No real logic change, this just cleans up the code a bit.
| * Fixed minor issue.Scott Barnett2011-09-261-1/+1
| |
| * Fixed uploaded file hover issue.Scott Barnett2011-09-261-2/+2
| |
* | initial commit for gallery appBartek Przybylski2011-09-2514-0/+450
|/
* fix creating usersRobin Appelman2011-09-251-0/+1
|
* correctly update the collection when music files are moved aroundRobin Appelman2011-09-253-5/+26
|
* remove some debug statementsRobin Appelman2011-09-251-3/+0
|
* fix uploading files using webdavRobin Appelman2011-09-251-1/+1
|
* actually check the correct password when changing the passwordRobin Appelman2011-09-251-1/+2
|
* check for old password when changing passwordsRobin Appelman2011-09-251-1/+1
|
* moved scanning to controls barJan-Christoph Borchardt2011-09-252-7/+11
|
* lots of music improvements, might break some things thoughJan-Christoph Borchardt2011-09-252-28/+14
|
* updated translationsJan-Christoph Borchardt2011-09-2476-1836/+2892
|
* removed 'share by publiclink' app as it has been superseded by SharingJan-Christoph Borchardt2011-09-2411-371/+0
|
* widened inputs for language and timezoneJan-Christoph Borchardt2011-09-241-0/+1
|
* no mickey mouse hand for quota barJan-Christoph Borchardt2011-09-241-0/+1
|
* removed deprecated images and iconsJan-Christoph Borchardt2011-09-2422-202/+10
|
* relabeled Finish setup button with 'Finishing ...'Jan-Christoph Borchardt2011-09-241-1/+1
|
* Merge branch 'master' of gitorious.org:owncloud/owncloudGeorg Ehrke2011-09-2416-6891/+1
|\
| * remove getID3 demos due to security issue caused by one of themRobin Appelman2011-09-2414-6889/+0
| |
| * dont submit the setup form to a new tabRobin Appelman2011-09-241-1/+0
| |
| * prevent people from triggering the setup manuallyRobin Appelman2011-09-241-1/+1
| |
* | delete calendar function for userinterfaceGeorg Ehrke2011-09-244-2/+42
|/
* Merge branch 'working'Florian Pritz2011-09-2446-116/+211
|\
| * apps/calendar: check for unset variableFlorian Pritz2011-09-241-1/+1
| | | | | | | | Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * files: fix max filesize checkFlorian Pritz2011-09-242-2/+6
| | | | | | | | | | | | | | php check both, upload_max_filesize and post_max_size, when uploading a file so we should do the same when figuring out the maximum size. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * files/ajax: catch upload errorsFlorian Pritz2011-09-241-0/+18
| | | | | | | | | | | | If the file wasn't uploaded successfully bail early. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * settings/personal: calculate the relative usage with 2 decimalsFlorian Pritz2011-09-241-1/+1
| | | | | | | | | | | | | | | | Normally a browser window will be large enough that the bar is wider than 100px so we can use decimals to display the real usage more closely. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * settings/personal: remove padding from quota barFlorian Pritz2011-09-242-2/+3
| | | | | | | | | | | | | | The text will stay in it's place, but 0% usage will lead to an empty bar. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * fix warning when uploading file using webdavFlorian Pritz2011-09-242-1/+4
| | | | | | | | | | | | | | | | | | When uploading a file using davfs php warned about a missing argument to OC_FileProxy_Quota::preFile_put_contents(). Since we get a resource from OC_Connector_Sabre_File->put(), we have to convert that before running strlen because it expects a string. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * set cookie secure if forcessl is enabledFlorian Pritz2011-09-244-6/+23
| | | | | | | | | | | | | | This also moves session_start in lib/base.php down a bit because we need OC::$SERVERROOT to get the config settings. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * apps/contacts: only display buttons if there is a contactFlorian Pritz2011-09-241-5/+4
| | | | | | | | | | | | | | If you don't have any contacts, it would display a non-functioning delete button. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * apps/contacts: fix wrapping issue in addpropertyformFlorian Pritz2011-09-241-7/+7
| | | | | | | | | | | | | | | | | | The browser added random line breaks between the label and input field making it hard to see what's what. Now we break lines intentionally just like in setpropertyform. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * apps/bookmarks: use curl instead of file_get_contentsFlorian Pritz2011-09-241-1/+6
| | | | | | | | | | | | | | Don't depend on allow_url_fopen being enabled when we already use curl elsewhere in the code. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * fix apps/bookmarks if oc_bookmarks_tags is emptyFlorian Pritz2011-09-241-1/+2
| | | | | | | | | | | | | | | | | | | | If you have bookmarks, but there are no tags in oc_bookmarks_tags, the query doesn't return any results. Using a left join fixes this. Reference: http://stackoverflow.com/questions/3171276/select-multiple-tables-when-one-table-is-empty-in-mysql Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * apps/calendar: change ctag after modifying eventFlorian Pritz2011-09-241-1/+3
| | | | | | | | | | | | | | edit() tried to do that, but it used $id which is the event id and not the calendar id. Signed-off-by: Florian Pritz <bluewind@xinu.at>
| * files: hide non functioning code when called from a/f_s/get.phpFlorian Pritz2011-09-243-2/+8
| | | | | | | | | | | | | | | | | | | | The checkboxes don't work because files.js is missing. Adding it leads to the problem that it relies on files/ajax and most of the code only works for logged in users. The actions div contains undefined variables and doesn't work either. Signed-off-by: Florian Pritz <bluewind@xinu.at>