diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-14 15:39:19 +0000 |
commit | 1c5685d68f1b73270fb814fe04cbb490eb90ba5f (patch) | |
tree | 3d3ada08a934b96fc31531f1327690d7edc6f766 /includes/js/dojox/layout/README | |
parent | 104d59099e048688c4dbac37d72137006e396558 (diff) | |
download | semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.gz semanticscuttle-1c5685d68f1b73270fb814fe04cbb490eb90ba5f.tar.bz2 |
Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/layout/README')
-rw-r--r-- | includes/js/dojox/layout/README | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/includes/js/dojox/layout/README b/includes/js/dojox/layout/README deleted file mode 100644 index 81cbe0d..0000000 --- a/includes/js/dojox/layout/README +++ /dev/null @@ -1,75 +0,0 @@ -------------------------------------------------------------------------------- -dojox.layout -------------------------------------------------------------------------------- -Version 1.0 -Release date: 10/31/2007 -------------------------------------------------------------------------------- -Project state: -[experimental | beta] -------------------------------------------------------------------------------- -Credits - Pete Higgins (dante) - Fredrik Johansson (fj.mumme@gmail.com) - Adam Peller (peller) - Bill Keese (bill) -------------------------------------------------------------------------------- -Project description - - placeholder for dijit.layout extensions. Currently only: - - dojox.layout.FloatingPane - an extension on TitlePane for drag/drop - operation, "docking" [minimize/maximize], and [soon] resizing. - - dojox.layout.ResizeHandle - resize handle to attach to a domNode. - works well on normal domNodes, but will require adding a resizeTo(w,h) - method to any widget you wish to use it on. [experimental] - - dojox.layout.ContentPane - an extension on dijit ContentPane. - Supports inline scripts, inline styles, relative path adjustments - and having a table tag as domNode. - - dojox.layout.RadioGroup - a stack container with sliding or fading transitions - (and an internal button set to mimic a tab container, but fires on hover) - - dojox.layout.ScrollPane - a dynamically scrolling pane. Adjusts naturally sized content - to a "viewport" and scrolls based on relative mouse position. - - dojox.layout.DragPane - an experimental start of a simple Dragable pane - (drag larger content around inside of a sized pane) Does not support borderContainer - LayoutContainer resizing yet. - -------------------------------------------------------------------------------- -Dependencies - - require Dojo Core, Dojo Base (fx), and Dijit - -------------------------------------------------------------------------------- -Installation: - - checkout: - - http://svn.dojotoolkit.org/dojo/dojox/layout/* - http://svn.dojotoolkit.org/dojo/dijit/* - - and require via: - dojo.require("dojox.layout.FloatingPane"); - or: - dojo.require("dojox.layout.ContentPane"); - etc ... - -------------------------------------------------------------------------------- -Basic Usage: - - <div dojoType="dojox.layout.FloatingPane" title="my title"> - Content To be Floated - </div> - - <div dojoType="dojox.layout.ContentPane" - adjustPaths="true" - renderStyles="true" - executeScripts="true" - href="my/page/containing/scripts/and/styles/in/a/sub/folder.html" - > - Initial content, will be replace by href. - paths in folder.html will be adjusted to match this page - </div> |