]> source.dussan.org Git - nextcloud-server.git/commitdiff
Changed theme. Editing is now default action for all supported types. Fixed static...
authorTom Needham <needham.thomas@gmail.com>
Wed, 28 Sep 2011 20:25:25 +0000 (21:25 +0100)
committerTom Needham <needham.thomas@gmail.com>
Wed, 28 Sep 2011 20:25:25 +0000 (21:25 +0100)
apps/editor/index.php
apps/editor/js/editor.js
apps/files_textviewer/js/textviewer.js
files/js/fileactions.js

index 701104f0a815ec2500d0337cec7f0fb97a393479..b4a15c5d2088b4dff6d492a5002abf441dee3c2d 100644 (file)
@@ -45,6 +45,7 @@ if(substr_count($file,'.')!=0){
        $plaintypes = array('txt','doc','rtf');
        $filetype = 'plain';
        if(!in_array($parts[1],$plaintypes)){
+               // TODO ADD THESE
                $types = array('php' => 'php',
                                                'js' => 'javascript',
                                                'html' => 'html');
@@ -58,7 +59,7 @@ if(substr_count($file,'.')!=0){
 }
 
 // Add theme
-OC_UTIL::addScript('editor','aceeditor/theme-cobalt');
+OC_UTIL::addScript('editor','aceeditor/theme-clouds');
 
 OC_App::setActiveNavigationEntry( 'editor_index' );
 
index 324666110d89fa539c8a33eddc750e8a5df98062..8c7ae5856de65c6076ee5364d1b97dcf229a4a59 100644 (file)
@@ -1,5 +1,7 @@
 $(document).ready(function(){
        
+               
+       
        // Set the editor size.
        doEditorResize();
        
@@ -15,7 +17,7 @@ $(document).ready(function(){
        }
        
        // Set the theme
-       aceEditor.setTheme("ace/theme/cobalt");
+       aceEditor.setTheme("ace/theme/clouds");
        
        // Process the save button click event
        $('#editor_save').click(function(){
@@ -53,18 +55,6 @@ $(document).ready(function(){
        // TODO give focus back to the editor
        // window.aceEditor.focus();
        });
-       
-       /*
-       // Process the gotoline button click event
-       $('#editor_goToLine').click(function(){
-               var html = '<div id="dropdown" class="drop"><input type="text" id="editot_goToLine_line" size="20"><input type="button" id="editor_goToLine_gp" value="<?php echo $l->t(\'Go\'); ?>"></div>';
-               $(html).appendTo($('#editor_goToLine'));
-               $('#dropdown').show('blind');
-               
-               //window.aceEditor.gotoLine(100);
-               //TODO GIVE FOCUS BACK
-       });
-       */
     
     // Process the window resize event 
        $(window).resize(function() {
index 143c97c9d47e681c013394635b4536c18ea1dfca..0bc56db8da1d3dbcef2b130c19ce93e2c3fb9805 100644 (file)
@@ -106,6 +106,7 @@ TextViewer.loadHighlighter=function(ready){
 }
 
 $(document).ready(function() {
+       /*
        if(typeof FileActions!=='undefined'){
                FileActions.register('text','View','',function(filename){
                        TextViewer.showText($('#dir').val(),filename);
@@ -116,6 +117,7 @@ $(document).ready(function() {
                });
                FileActions.setDefault('application/xml','View');
        }
+       */
        OC.search.customResults.Text=function(row,item){
                var text=item.link.substr(item.link.indexOf('file=')+5);
                var a=row.find('a');
index 5d31af40376ee11a4a084344c3470748349616a3..d688973e53c91e4b3a9d1223e5dd9bcd1a31e205 100644 (file)
@@ -135,14 +135,21 @@ 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');
 
 FileActions.register('dir','Open','',function(filename){
        window.location='index.php?dir='+$('#dir').val()+'/'+filename;
 });
 
 FileActions.setDefault('dir','Open');  
+
+FileActions.register('text','Edit','',function(filename){
+       window.location=OC.linkTo('editor', 'index.php')+'?file='+filename+'&dir='+$('#dir').val();
+});
+
+FileActions.setDefault('text','Edit');
+
+FileActions.register('application/xml','Edit','',function(filename){
+       window.location=OC.linkTo('editor', 'index.php')+'?file='+filename+'&dir='+$('#dir').val();
+});
+
+FileActions.setDefault('application/xml','Edit');