summaryrefslogtreecommitdiffstats
path: root/apps/files
Commit message (Expand)AuthorAgeFilesLines
* added a nice API to get the installes Apps with names, urls and icon from the...Frank Karlitschek2012-05-051-0/+1
* Fix loading by apptype in webdavBart Visscher2012-05-051-4/+1
* fix writing of webdav.phpGeorg Ehrke2012-05-051-1/+1
* fix writing in remote folderGeorg Ehrke2012-05-053-8/+3
* only emit the filesystem hooks once when creating a new fileRobin Appelman2012-05-051-7/+8
* Changed $APPROOT to $APPSROOT as in https://gitorious.org/owncloud/owncloud/m...Thomas Tanghus2012-05-041-1/+1
* ported oc_dbFrank Karlitschek2012-05-031-2/+2
* ported oc_jsonFrank Karlitschek2012-05-0310-35/+35
* port oc_responseFrank Karlitschek2012-05-031-1/+1
* fix installFrank Karlitschek2012-05-021-2/+2
* add require_once('../lib/base.php'); to webdav.phpGeorg Ehrke2012-05-021-0/+1
* create folder 'remote' for the remote services like caldav, carddav and webdavGeorg Ehrke2012-05-023-2/+9
* first part of the config stuffFrank Karlitschek2012-05-022-5/+5
* move all the files stuff into a files classFrank Karlitschek2012-05-021-1/+1
* files is not internal any more, part IIArthur Schiwon2012-05-021-0/+1
* ported the oc_app callsFrank Karlitschek2012-05-023-4/+4
* ported the rest of the OC_Helper callsFrank Karlitschek2012-05-024-13/+13
* port linkto and serverHostFrank Karlitschek2012-05-013-5/+5
* ported checkLoggedIn and checkAdminFrank Karlitschek2012-05-015-5/+5
* some more portingFrank Karlitschek2012-05-013-3/+3
* ported addSyript and other small stuffFrank Karlitschek2012-05-013-8/+8
* port to use the new public apiFrank Karlitschek2012-05-012-2/+2
* Various file path fixes.Thomas Tanghus2012-04-301-1/+1
* add a info.xml to filesFrank Karlitschek2012-04-291-0/+10
* fix file deletionRobin Appelman2012-04-291-2/+2
* moving the file actions properlyJan-Christoph Borchardt2012-04-281-3/+3
* add version file to files appGeorg Ehrke2012-04-281-0/+1
* fix duplicated entries on uploadBartek Przybylski2012-04-271-1/+0
* make *DAV work with movable appsGeorg Ehrke2012-04-261-1/+2
* move files to the correct placeGeorg Ehrke2012-04-262-0/+1031
* fix merge conflictsGeorg Ehrke2012-04-268-70/+254
* fix security check for the path of the requested fileGeorg Ehrke2012-04-262-2/+2
* fix downloading of files in files appGeorg Ehrke2012-04-262-4/+4
* some fixes fore movable appsGeorg Ehrke2012-04-261-2/+2
* Merge branch 'master' into movable_appsGeorg Ehrke2012-04-231-1/+1
* fix path in apps/files/templats/index.phpGeorg Ehrke2012-04-231-1/+1
* fix style.css of the files appGeorg Ehrke2012-04-231-2/+2
* fix path in /apps/files/js/timezone.phpGeorg Ehrke2012-04-231-1/+1
* fix merge conflictsGeorg Ehrke2012-04-221-3/+7
* Merge branch 'master' into movable_appsGeorg Ehrke2012-04-201-2/+2
* remove require once lib base in files scan.phpGeorg Ehrke2012-04-201-2/+0
* remove require once lib base in some more filesGeorg Ehrke2012-04-185-8/+4
* move files to app folderGeorg Ehrke2012-04-1868-0/+2767
ss="p">(!\OC::$server->getAppManager()->isInstalled($app)) { http_response_code(404); exit; } OC_App::loadApp($app); OC_User::setIncognitoMode(true); $baseuri = OC::$WEBROOT . '/public.php/' . $service . '/'; require_once OC_App::getAppPath($app) . '/' . $parts[1]; } catch (Exception $ex) { $status = 500; if ($ex instanceof \OC\ServiceUnavailableException) { $status = 503; } //show the user a detailed error page \OC::$server->getLogger()->logException($ex, ['app' => 'public']); OC_Template::printExceptionErrorPage($ex, $status); } catch (Error $ex) { //show the user a detailed error page \OC::$server->getLogger()->logException($ex, ['app' => 'public']); OC_Template::printExceptionErrorPage($ex, 500); }