You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rave.apache.org by zh...@apache.org on 2011/04/01 02:29:38 UTC

svn commit: r1087520 [14/35] - in /incubator/rave/donations/ogce-gadget-container: ./ config/ config/shindig-1.1-BETA5/ config/shindig-2.0.0/ db-cleaner/ examples/ examples/src/ examples/src/main/ examples/src/main/java/ examples/src/main/java/cgl/ exa...

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/radiogroup.js
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/radiogroup.js?rev=1087520&view=auto
==============================================================================
--- incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/radiogroup.js (added)
+++ incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/radiogroup.js Fri Apr  1 00:29:22 2011
@@ -0,0 +1,282 @@
+/**
+ * @author Robert Williams (vtswingkid)
+ * @version 1.0.4
+ */
+Ext.namespace('Ext.ux');
+Ext.ux.RadioGroup = Ext.extend(Ext.form.Field,  {
+    /**
+     * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
+     */
+    focusClass : undefined,
+    /**
+     * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
+     */
+    fieldClass: "x-form-field",
+    /**
+     * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
+     */
+    checked: false,
+    /**
+     * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
+     * {tag: "input", type: "radio", autocomplete: "off"})
+     */
+    defaultAutoCreate : { tag: "input", type: 'radio', autocomplete: "off"},
+    /**
+     * @cfg {String} boxLabel The text that appears beside the checkbox
+     */
+    
+    getId:function(){
+        //if multiple radios are defined use this information
+        if(this.radios && this.radios instanceof Array){
+            if(this.radios.length){
+                var r=this.radios[0];
+                this.value=r.value;
+                this.boxLabel=r.boxLabel;
+                this.checked=r.checked || false;
+                this.readOnly=r.readOnly || false;
+                this.disabled=r.disabled || false;
+                this.tabIndex=r.tabIndex;
+                this.cls=r.cls;
+                this.listeners=r.listeners;
+                this.style=r.style;
+                this.bodyStyle=r.bodyStyle;
+                this.hideParent=r.hideParent;
+                this.hidden=r.hidden;
+            }
+        }
+        Ext.ux.RadioGroup.superclass.getId.call(this);
+    },
+
+    // private
+    initComponent : function(){
+        Ext.ux.RadioGroup.superclass.initComponent.call(this);
+        this.addEvents(
+            /**
+             * @event change
+             * Fires when the radio value changes.
+             * @param {Ext.vx.RadioGroup} this This radio
+             * @param {Boolean} checked The new checked value
+             */
+            'check'
+        );
+    },
+
+    // private
+    onResize : function(){
+        Ext.ux.RadioGroup.superclass.onResize.apply(this, arguments);
+        if(!this.boxLabel){
+            this.el.alignTo(this.wrap, 'c-c');
+        }
+    },
+    
+    // private
+    initEvents : function(){
+        Ext.ux.RadioGroup.superclass.initEvents.call(this);
+        this.el.on("click", this.onClick,  this);
+        this.el.on("change", this.onClick,  this);
+    },
+
+    // private
+    getResizeEl : function(){
+        return this.wrap;
+    },
+
+    // private
+    getPositionEl : function(){
+        return this.wrap;
+    },
+
+    /**
+     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
+     * @method
+     */
+    markInvalid : Ext.emptyFn,
+    /**
+     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
+     * @method
+     */
+    clearInvalid : Ext.emptyFn,
+
+    // private
+    onRender : function(ct, position){
+        Ext.ux.RadioGroup.superclass.onRender.call(this, ct, position);
+        this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
+        if(this.boxLabel){
+            this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
+        }
+        if(!this.isInGroup){
+            this.wrap.applyStyles({'padding-top':'2px'});
+        }
+        if(this.checked){
+            this.setChecked(true);
+        }else{
+            this.checked = this.el.dom.checked;
+        }
+        if (this.radios && this.radios instanceof Array) {
+            this.els=new Array();
+            this.els[0]=this.el;
+            for(var i=1;i<this.radios.length;i++){
+                var r=this.radios[i];
+                this.els[i]=new Ext.ux.RadioGroup({
+                    renderTo:this.wrap,
+                    hideLabel:true,
+                    boxLabel:r.boxLabel,
+                    checked:r.checked || false,
+                    value:r.value,
+                    name:this.name || this.id,
+                    readOnly:r.readOnly || false,
+                    disabled:r.disabled || false,
+                    tabIndex:r.tabIndex,
+                    cls:r.cls,
+                    listeners:r.listeners,
+                    style:r.style,
+                    bodyStyle:r.bodyStyle,
+                    hideParent:r.hideParent,
+                    hidden:r.hidden,
+                    isInGroup:true
+                });
+                if (this.horizontal) {
+                    this.els[i].el.up('div.x-form-check-wrap').applyStyles({
+                        'display': 'inline',
+                        'padding-left': '5px'
+                    });
+                }
+            }
+            if(this.hidden)this.hide();
+        }
+    },
+    
+    initValue : function(){
+        if(this.value !== undefined){
+            this.el.dom.value=this.value;
+        }else if(this.el.dom.value.length > 0){
+            this.value=this.el.dom.value;
+        }
+    },
+    
+    // private
+    onDestroy : function(){
+        if (this.radios && this.radios instanceof Array) {
+            var cnt = this.radios.length;
+            for(var x=1;x<cnt;x++){
+                this.els[x].destroy();
+            }
+        }
+        if(this.wrap){
+            this.wrap.remove();
+        }
+        Ext.ux.RadioGroup.superclass.onDestroy.call(this);
+    },
+
+    setChecked:function(v){
+        if(this.el && this.el.dom){
+            var fire = false;
+            if(v != this.checked)fire=true;
+            this.checked=v;
+            this.el.dom.checked = this.checked;
+            this.el.dom.defaultChecked = this.checked;
+            if(fire)this.fireEvent("check", this, this.checked);
+        }
+    },
+    /**
+     * Returns the value of the checked radio.
+     * @return {Mixed} value
+     */
+    getValue : function(){
+        if(!this.rendered) {
+            return this.value;
+        }
+        var p=this.el.up('form');//restrict to the form if it is in a form
+        if(!p)p=Ext.getBody();
+        var c=p.child('input[name='+escape(this.el.dom.name)+']:checked', true);
+        return (c)?c.value:this.value;
+    },
+
+    // private
+    onClick : function(){
+        if(this.el.dom.checked != this.checked){
+            var p = this.el.up('form');
+            if (!p) 
+                p = Ext.getBody();
+            var els = p.select('input[name=' + escape(this.el.dom.name) + ']');
+            els.each(function(el){
+                if (el.dom.id == this.id) {
+                    this.setChecked(true);
+                }
+                else {
+                    var e = Ext.getCmp(el.dom.id);
+                    e.setChecked.apply(e, [false]);
+                }
+            }, this);
+        }
+    },
+
+    /**
+     * Checks the radio box with the matching value
+     * @param {Mixed} v
+     */
+
+    setValue : function(v){
+        if(!this.rendered) {
+            this.value=v;
+            return;
+        }
+        var p=this.el.up('form');//restrict to the form if it is in a form
+        if(!p)p=Ext.getBody();
+        var target = p.child('input[name=' + escape(this.el.dom.name) + '][value=' + v + ']', true);
+        if (target) target.checked = true;
+    },
+    
+    clear: function(){
+        if (!this.rendered) return;
+        var p = this.el.up('form');//restrict to the form if it is in a form
+        if (!p) p = Ext.getBody();
+        var c = p.child('input[name=' + escape(this.el.dom.name) + ']:checked', true);
+        if (c) c.checked = false;
+    },
+    
+    disable: function(){
+        if (!this.rendered) return;
+        var p = this.el.up('form');//restrict to the form if it is in a form
+        if (!p) p = Ext.getBody();
+        var els = p.select('input[name=' + escape(this.el.dom.name) + ']');
+        els.each(function(el){
+            if (el.dom.id == this.id) {
+                Ext.ux.RadioGroup.superclass.disable.call(this);
+            }
+            else {
+                var e = Ext.getCmp(el.dom.id);
+                Ext.ux.RadioGroup.superclass.disable.call(e);
+            }
+        }, this);
+    },
+    
+    enable: function(){
+        if (!this.rendered) return;
+        var p = this.el.up('form');//restrict to the form if it is in a form
+        if (!p) p = Ext.getBody();
+        var els = p.select('input[name=' + escape(this.el.dom.name) + ']');
+        els.each(function(el){
+            if (el.dom.id == this.id) {
+                Ext.ux.RadioGroup.superclass.enable.call(this);
+            }
+            else {
+                var e = Ext.getCmp(el.dom.id);
+                Ext.ux.RadioGroup.superclass.enable.call(e);
+            }
+        }, this);
+    },
+
+    hide: function(){
+        if (!this.rendered) return;
+        this.wrap.hide();
+        this.wrap.parent().parent().hide();
+    },
+    
+    show: function(){
+        if (!this.rendered) return;
+        this.wrap.show();
+        this.wrap.parent().parent().show();
+    }
+});
+Ext.reg('ux-radiogroup', Ext.ux.RadioGroup);

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/box/tb-gray.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/box/tb-gray.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/box/tb-gray.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-arrow.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-arrow.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-arrow.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/button/btn-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/clear-trigger.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/clear-trigger.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/clear-trigger.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/date-trigger.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/date-trigger.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/date-trigger.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/error-tip-corners.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/error-tip-corners.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/error-tip-corners.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/exclamation.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/exclamation.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/exclamation.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/search-trigger.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/search-trigger.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/search-trigger.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/trigger.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/trigger.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/form/trigger.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/gradient-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/gradient-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/gradient-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-bottom.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-bottom.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-bottom.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-top.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-top.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/col-move-top.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid-hrow.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid-hrow.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid-hrow.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hd-btn.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hd-btn.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hd-btn.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hrow-over.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hrow-over.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-hrow-over.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-special-col-sel-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-special-col-sel-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/grid3-special-col-sel-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-first.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-first.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-first.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-last.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-last.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-last.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-next.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-next.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-next.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-prev.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-prev.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/page-prev.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/refresh.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/refresh.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/refresh.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_asc.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_asc.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_asc.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_desc.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_desc.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/grid/sort_desc.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/layout/panel-title-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/layout/panel-title-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/layout/panel-title-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/item-over.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/item-over.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/item-over.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/menu-parent.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/menu-parent.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/menu/menu-parent.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/corners-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/corners-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/corners-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/left-right.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/left-right.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/left-right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/light-hd.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/light-hd.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/light-hd.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprite-tpl.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprite-tpl.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprite-tpl.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprites.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprites.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tool-sprites.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tools-sprites-trans.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tools-sprites-trans.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/tools-sprites-trans.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/top-bottom.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-corners-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-corners-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-corners-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-left-right.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-left-right.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-left-right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-top-bottom.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-top-bottom.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/panel/white-top-bottom.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/close.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/close.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/tip-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/tip-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/qtip/tip-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/s.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/s.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/s.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/glass-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/glass-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/glass-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/hd-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/hd-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/hd-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/left-btn.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/left-btn.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/left-btn.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/right-btn.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/right-btn.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/shared/right-btn.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/e-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/ne-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/nw-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/s-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/se-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/square.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/square.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/square.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle-dark.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle-dark.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle-dark.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/sizer/sw-handle.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-bg.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-bg.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-bg.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-thumb.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-thumb.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-thumb.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-bg.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-bg.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-bg.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-thumb.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-thumb.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/slider/slider-v-thumb.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-left.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-left.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-left.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-right.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-right.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroll-right.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroller-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroller-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/scroller-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-left-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-left-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-left-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-right-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-right-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-inactive-right-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-left-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-left-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-left-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-right-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-right-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-btm-right-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-close.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-close.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-close.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-bg.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-btm-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-btm-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tab-strip-btm-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tabs-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tabs-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/tabs/tabs-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow-light.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow-light.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow-light.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-arrow.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-over-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-over-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/btn-over-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/gray-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/gray-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/gray-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-bg.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-bg.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-bg.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-btn-sprite.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-btn-sprite.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/toolbar/tb-btn-sprite.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-error.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-error.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-error.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-info.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-info.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-info.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-question.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-question.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-question.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-warning.gif
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-warning.gif?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/icon-warning.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.pspimage
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.pspimage?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-corners.pspimage
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-right.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-right.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/left-right.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/right-corners.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/right-corners.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/right-corners.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/top-bottom.png
URL: http://svn.apache.org/viewvc/incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/top-bottom.png?rev=1087520&view=auto
==============================================================================
Binary file - no diff available.

Propchange: incubator/rave/donations/ogce-gadget-container/ishindig-webapp/src/main/webapp/www/extjs/xtheme-gray-extend/gray-extend/window/top-bottom.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream