Skip to content
Snippets Groups Projects
Commit 1f74e76d authored by Tom Needham's avatar Tom Needham
Browse files

Implemented ace-edtior as an app. Basic file editing and saving supported.

parent c6f78fbe
No related branches found
No related tags found
No related merge requests found
ErrorDocument 404 //owncloud/core/templates/404.php
ErrorDocument 404 /core/templates/404.php
<IfModule mod_php5.c>
php_value upload_max_filesize 512M
php_value post_max_size 512M
......
......@@ -135,6 +135,9 @@ FileActions.register('all','Delete',function(){return OC.imagePath('core','actio
FileActions.register('all','Rename',function(){return OC.imagePath('core','actions/rename')},function(filename){
FileList.rename(filename);
});
FileActions.register('text','Edit',function(){return OC.imagePath('core','actions/rename')},function(filename){
window.location='/apps/editor/index.php?file='+filename+'&dir='+$('#dir').val();
});
//FileActions.setDefault('all','Download');
......
......@@ -442,6 +442,10 @@ class OC_Filesystem{
}
static public function update_session_file_hash($sessionname,$sessionvalue){
$_SESSION[$sessionname] = $sessionvalue;
}
/**
* abstraction for running most basic operations
* @param string $operation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment