Builder/Provider/AddPropertyPopup.js
authorAlan Knowles <alan@akbkhome.com>
Wed, 3 Sep 2014 14:53:53 +0000 (22:53 +0800)
committerAlan Knowles <alan@akbkhome.com>
Wed, 3 Sep 2014 14:53:53 +0000 (22:53 +0800)
Builder/Provider/Templates/Roo.GridPanel.js
Builder/Provider/Templates
Builder/Provider/TestEnviroment
Builder/Provider
Builder/Provider/TestEnviroment/Setup.js
Builder

Builder/Provider/AddPropertyPopup.js [deleted file]
Builder/Provider/Templates/Roo.GridPanel.js [deleted file]
Builder/Provider/TestEnviroment/Setup.js [deleted file]

diff --git a/Builder/Provider/AddPropertyPopup.js b/Builder/Provider/AddPropertyPopup.js
deleted file mode 100644 (file)
index 7f91f8b..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-//<Script type="text/javascript">
-Gtk = imports.gi.Gtk;
-GLib = imports.gi.GLib;
-GObject = imports.gi.GObject;
-
-XObject = imports.XObject.XObject;
-console = imports.console;
-
-
-
-LeftPanelPopup = new XObject({
-    
-        
-    xtype : Gtk.Menu,
-    
-     
-    items :  [
-        {
-            
-            
-            xtype : Gtk.MenuItem,
-            pack : [ 'append' ],
-            label : 'Delete Property / Event',
-            listeners : {
-                activate : function () {
-                    imports.Builder.LeftPanel.LeftPanel.get('model').deleteSelected();
-                }
-            }
-        },
-    
-      {
-            
-            
-            xtype : Gtk.MenuItem,
-            pack : [ 'append' ],
-            label : 'Change Property to Javascript Value',
-            listeners : {
-                activate : function () {
-                   imports.Builder.LeftPanel.LeftPanel.get('model').setSelectedToJS();
-                }
-            }
-        },
-        {
-            
-            
-            xtype : Gtk.MenuItem,
-            pack : [ 'append' ],
-            label : 'Change Property to String (or native) Value',
-            listeners : {
-                activate : function () {
-                    imports.Builder.LeftPanel.LeftPanel.get('model').setSelectedToNoJS();
-                }
-            }
-            
-        },
-    ]
-});
diff --git a/Builder/Provider/Templates/Roo.GridPanel.js b/Builder/Provider/Templates/Roo.GridPanel.js
deleted file mode 100644 (file)
index 5432da4..0000000
+++ /dev/null
@@ -1,107 +0,0 @@
-{
-    xtype : 'GridPanel',
-    title : "test",
-    fitToframe : true,
-    fitContainer : true,
-    tableName : 'test',
-    background : true,
-    listeners : {
-        activate: function() {
-            _this.panel = this;
-            if (_this.grid) {
-                _this.grid.footer.onClick('first');
-            }
-        }
-    },
-    grid : {
-        xtype : 'Grid',
-        autoExpandColumn : 'test',
-        loadMask : true,
-        listeners : {
-            render: function() { 
-                _this.grid = this; 
-            
-                if (_this.panel.active) {
-                   this.footer.onClick('first');
-                }
-            }
-        },
-        dataSource : {
-            xtype : 'Store',
-            reader: Pman.Readers.Cash_transaction_split,
-            proxy : {
-                xtype : 'HttpProxy',
-                method : 'GET',
-                url: baseURL + 'YOUR URL"
-            }
-        },
-        colModel : [
-            {
-                header : 'Col1',
-                width : 100,
-                dataIndex : 'test',
-                renderer: function(v) { return String.format('{0}', v); }
-            },
-             
-        ],
-        footer : {
-            xtype : 'PagingToolbar',
-            pageSize : 25,
-            displayInfo : true,
-            displayMsg : "Displaying cash_transaction_split  {0} - {1} of {2}",
-            emptyMsg : "No cash_transaction_split found"
-        },
-        toolbar : {
-            xtype : 'Toolbar',
-            items : [
-                {
-                    text : "Add",
-                    xtype : 'Button',
-                    cls : 'x-btn-text-icon',
-                    icon: Roo.rootURL + 'images/default/dd/drop-add.gif',
-                    listeners : {
-                        click: " function() { }"
-                                
-                    }
-                },
-                {
-                    text : "Edit",
-                    xtype : 'Button',
-                    cls : 'x-btn-text-icon',
-                    icon: Roo.rootURL + 'images/default/tree/leaf.gif',
-                    listeners : {
-                        click: function()
-                                {
-                                    var s = _this.grid.getSelectionModel().getSelections();
-                                    if (!s.length || (s.length > 1))  {
-                                        Roo.MessageBox.alert("Error", s.length ? "Select only one Row" : "Select a Row");
-                                        return;
-                                    }
-                                    
-                                    _this.dialog.show(s[0].data, function() {
-                                        _this.grid.footer.onClick('first');
-                                       }); 
-                                    
-                                }
-                                
-                    }
-                },
-                {
-                    text : "Delete",
-                    cls : 'x-btn-text-icon',
-                    icon: rootURL + '/Pman/templates/images/trash.gif',
-                    xtype : 'Button',
-                    listeners : {
-                        click: function()
-                                {
-                                Pman.genericDelete(_this, _this.grid.tableName); 
-                                }
-                                
-                    }
-                }
-            ]
-        }
-    },
-    region : 'center'
-}
-     
diff --git a/Builder/Provider/TestEnviroment/Setup.js b/Builder/Provider/TestEnviroment/Setup.js
deleted file mode 100644 (file)
index 854848f..0000000
+++ /dev/null
@@ -1,150 +0,0 @@
-//<script type="text/javascript">
-
-
-/**
- * Set up a test enviroment using lighttpd server..
- * 
- * 
- * Needs:
- * 
- * A) index.php
- * B) Pman.Core
- * C) Pman.Base
- * D) files linked together..
- * E) lightttpd.conf file..
- */
-
-Setup = {
-    
-    dir:  '', // home appbulider...
-    user : '', // the runnning user..
-   
-    build : function()
-    {
-        // set up this.dir..
-        
-        
-        
-        if (!File.isDirectory(this.dir)) {
-            File.mkdir(this.dir);
-        }
-    
-        
-        this.cloneModule('Pman.Core');
-        this.cloneModule('Pman.Base');
-        this.cloneModule('pear');
-        this.cloneModule('roojs1');
-        this.link({
-            'Pman.Base/Pman.php'        : 'Pman.php',
-            'Pman.Base/Pman/Roo.php'    : 'Pman/Roo.php',
-            'Pman.Base/Pman/Login.php'  : 'Pman/Login.php',
-            'Pman.Base/Pman/Images.php' : 'Pman/Images.php',
-            'Pman.Base/Pman/I18N.php'   : 'Pman/I18N.php',
-            'Pman.Base/Pman/GnumericToExcel.php' : 'Pman/GnumericToExcel.php',
-            'Pman.Base/Pman/templates' : 'Pman/templates',
-            'Pman.Core' : 'Pman/Core',
-        });
-        var _this = this;
-        [ 
-            'lighttpd',
-            'lighttpd/uploads', 'lighttpd/logs',  'lighttpd/run', 'lighttpd/cache'
-        
-        ].forEach(function(n) {
-            if (!File.isDirectory(_this.dir + '/' + n)) {
-                File.mkdir(_this.dir + '/' + n);
-            }
-        
-        });
-        
-            
-            
-    },
-    cloneModule : function(name)
-    {
-        if (File.isDirectory(this.dir + '/' + name)) {
-            Spawn.run(this.dir + '/' + name, 'git pull');
-            return;
-        }
-        Spawn.run(this.dir, 'git clone http://git.akbkhome.com/' + name);
-    },
-    
-    createIndex : function()
-    {
-        File.write(this.dir + "/index.php",
-            "<" + "?php \n" +
-            "ini_set('include_path', \n" +
-            "    dirname(__FILE__). ':' .  \n" +
-            "    dirname(__FILE__).'/pear:' .  \n" +
-            "    ini_get('include_path')); \n" 
-            "define('DB_DATAOBJECT_NO_OVERLOAD', true); \n" +
-            "require_once 'HTML/FlexyFramework.php'; \n" +
-            
-            "new HTML_FlexyFramework( array(\n" +
-            "    'project'=> 'Pman',\n" +
-            "    'debug' => 0,\n" +
-            "    'version' => '1.2',\n" +
-            "    'enable' => 'Core', \n" +
-            
-            "    'appNameShort' => \"PROJECT\",\n" +
-            "    'appName' => \"PROJECT\",\n" +
-            "    'database' => 'mysql://root:@localhost/pman',\n" +
-            "    'Pman' => array(\n" +
-            "        'isDev' => true,  \n" +
-            "    ),\n" +
-            "));"
-        );
-             
-    }
-    createHttpConf : function()
-    {
-        File.write(this.dir + 'lighttpd/lighttpd.conf',
-            
-            
-            'server.document-root       =   "' + this.dir + '"' + "\n" +
-            'server.upload-dirs         = ( "' + this.dir + '/lighttpd/uploads" )' + "\n" +
-            'server.errorlog            =   "' + this.dir + '/lighttpd/logs/error.log"' + "\n" +
-            'server.pid-file            =   "' + this.dir + '/lighttpd/run/lighttpd.pid"' + "\n" +
-            'compress.cache-dir          =  "' + this.dir + '/lighttpd/cache/"' + "\n" +
-
-            'server.username            =   "' + this.user + '"' + "\n" +
-            'server.groupname           =   "' + this.user + '"' + "\n" +
-           
-            
-            // check??
-            'server.port               = 8090' + "\n" +
-            // chekc php path...
-            'fastcgi.server = ( ".php" => (( ' + "\n" +
-            '                     "bin-path" => "/usr/bin/php5-cgi",' + "\n" +
-            '                     "socket" => "' + this.dir + '/lighttpd/php5.socket" ' + "\n" +
-            '                 )))' + "\n" +
-            
-            // non dependant stuff..
-            'server.modules = (' + "\n" +
-            '    "mod_alias",' + "\n" +
-            '    "mod_fastcgi",' + "\n" +
-            '    "mod_compress",' + "\n" +
-            ')' + "\n" +
-           
-            'static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )' + "\n" +
-            'server.bind                = "localhost"' + "\n" +
-            'dir-listing.encoding        = "utf-8"' + "\n" +
-            'server.dir-listing          = "enable"' + "\n" +
-            'compress.filetype           = ("text/plain", "text/html", "application/x-javascript", "text/css")' + "\n" +
-            'include_shell "/usr/share/lighttpd/create-mime.assign.pl"' + "\n" +
-            'include_shell "/usr/share/lighttpd/include-conf-enabled.pl"' + "\n" +
-            
-            'index-file.names           = ( "index.php", "index.html",' + "\n" +
-            '                               "index.htm", "default.htm",' + "\n" +
-            '                               "index.lighttpd.html" )' + "\n" 
-           
-        );
-          
-         
-         
-         
-}        
-         
-
-
-