Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/websdk/static/js/wymeditor/plugins/resizable
diff options
context:
space:
mode:
Diffstat (limited to 'websdk/static/js/wymeditor/plugins/resizable')
-rw-r--r--websdk/static/js/wymeditor/plugins/resizable/.svn/entries96
-rw-r--r--websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/jquery.wymeditor.resizable.js.svn-base91
-rw-r--r--websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/readme.txt.svn-base124
-rw-r--r--websdk/static/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js91
-rw-r--r--websdk/static/js/wymeditor/plugins/resizable/readme.txt124
5 files changed, 0 insertions, 526 deletions
diff --git a/websdk/static/js/wymeditor/plugins/resizable/.svn/entries b/websdk/static/js/wymeditor/plugins/resizable/.svn/entries
deleted file mode 100644
index 8afaf68..0000000
--- a/websdk/static/js/wymeditor/plugins/resizable/.svn/entries
+++ /dev/null
@@ -1,96 +0,0 @@
-10
-
-dir
-677
-svn://svn.wymeditor.org/wymeditor/trunk/src/wymeditor/plugins/resizable
-svn://svn.wymeditor.org/wymeditor
-
-
-
-2009-04-28T19:42:37.044706Z
-614
-jf.hovinne
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-89e89e35-0a13-0410-8f61-920bba073fa9
-
-jquery.wymeditor.resizable.js
-file
-
-
-
-
-2011-07-13T16:45:39.000000Z
-dfe19ff3f55ea32c465ecd64c8b4b8bc
-2009-04-28T19:42:37.044706Z
-614
-jf.hovinne
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-2913
-
-readme.txt
-file
-
-
-
-
-2011-07-13T16:45:39.000000Z
-779875a11fe8526a6d246829afda4f1c
-2008-07-05T12:52:55.176122Z
-510
-jf.hovinne
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-4273
-
diff --git a/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/jquery.wymeditor.resizable.js.svn-base b/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/jquery.wymeditor.resizable.js.svn-base
deleted file mode 100644
index 1ba2d2e..0000000
--- a/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/jquery.wymeditor.resizable.js.svn-base
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * WYMeditor : what you see is What You Mean web-based editor
- * Copyright (c) 2005 - 2009 Jean-Francois Hovinne, http://www.wymeditor.org/
- * Dual licensed under the MIT (MIT-license.txt)
- * and GPL (GPL-license.txt) licenses.
- *
- * For further information visit:
- * http://www.wymeditor.org/
- *
- * File Name:
- * jquery.wymeditor.resizable.js
- * resize plugin for WYMeditor
- *
- * File Authors:
- * Peter Eschler (peschler _at_ gmail.com)
- * Jean-Francois Hovinne - http://www.hovinne.com/
- *
- * Version:
- * 0.4
- *
- * Changelog:
- *
- * 0.4
- * - Removed UI and UI.resizable scripts loading - see #167 (jfh).
- *
- * 0.3
- * - Added 'iframeOriginalSize' and removed 'ui.instance' calls (jfh).
- *
- * 0.2
- * - Added full support for all jQueryUI resizable plugin options.
- * - Refactored and documented code.
- * 0.1
- * - Initial release.
- */
-
-/**
- * The resizable plugin makes the wymeditor box vertically resizable.
- * It it based on the ui.resizable.js plugin of the jQuery UI library.
- *
- * The WYMeditor resizable plugin supports all parameters of the jQueryUI
- * resizable plugin. The parameters are passed like this:
- *
- * wym.resizable({ handles: "s,e",
- * maxHeight: 600 });
- *
- * DEPENDENCIES: jQuery UI, jQuery UI resizable
- *
- * @param options options for the plugin
- */
-WYMeditor.editor.prototype.resizable = function(options) {
-
- var wym = this;
- var iframe = jQuery(wym._box).find('iframe');
- var iframeOriginalSize = {};
-
- // Define some default options
- var default_options = {
- start: function(e, ui) {
- iframeOriginalSize = {
- width: jQuery(iframe).width(),
- height: jQuery(iframe).height()
- }
- },
-
- // resize is called by the jQuery resizable plugin whenever the
- // client area was resized.
- resize: function(e, ui) {
- var diff = ui.size.height - ui.originalSize.height;
- jQuery(iframe).height( iframeOriginalSize.height + diff );
-
- // If the plugin has horizontal resizing disabled we need to
- // adjust the "width" attribute of the area css, because the
- // resizing will set a fixed width (which breaks liquid layout
- // of the wymeditor area).
- if( !ui.options.handles['w'] && !ui.options.handles['e'] ) {
- ui.size.width = "inherit";
- }
- },
- handles: "s,e,se",
- minHeight: 250,
- maxHeight: 600
- };
-
- // Merge given options with default options. Given options override
- // default ones.
- var final_options = jQuery.extend(default_options, options);
-
- if(jQuery.isFunction( jQuery.fn.resizable )) jQuery(wym._box).resizable(final_options);
- else WYMeditor.console.error('Oops, jQuery UI.resizable unavailable.');
-
-};
diff --git a/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/readme.txt.svn-base b/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/readme.txt.svn-base
deleted file mode 100644
index 2a0444e..0000000
--- a/websdk/static/js/wymeditor/plugins/resizable/.svn/text-base/readme.txt.svn-base
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-resizable plugin for WYMeditor
-##############################
-
-The ``resizable`` plugin for WYMeditor_ enables vertical resizing of the
-editor area. The plugin is based on the jQuery UI library.
-
-Requirements
-============
-The following packages are required for using the WYMeditor ``resizable``
-plugin:
-
-* jQuery (tested with jQuery ``jquery-1.2.4a.js`` from ``jquery.ui`` package)
-* WYMeditor SVN trunk (Revision: 482)
-* jQuery-UI (tested with ``jquery.ui-1.5b2``)
-
-It should be possible to use this plugin with ``WYMeditor-0.4`` but I have not
-tried.
-
-Download
-========
-You can download the WYMeditor ``resizable`` plugin here:
-
-* wymeditor-resizable-plugin-0.2.tgz_
-* wymeditor-resizable-plugin-0.1.tgz_
-
-See the Changelog_ for more infos about the releases.
-
-.. _wymeditor-resizable-plugin-0.2.tgz: http://pyjax.net/download/wymeditor-resizable-plugin-0.2.tgz
-.. _wymeditor-resizable-plugin-0.1.tgz: http://pyjax.net/download/wymeditor-resizable-plugin-0.1.tgz
-
-Installation
-============
-Just extract the downloaded archive into your WYMeditor's ``plugin``
-directory.
-
-Usage
-=====
-For general instructions on WYMeditor plugins please refer to the `WYMeditor
-plugin page`_.
-
-To use the ``resizable`` plugin simply include the plugin's JavaScript file in
-your code. You **do not** need to include the jQuery UI files - this is done
-automatically by the plugin (see `Internals`_)::
-
- <script type="text/javascript"
- src="/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js">
- </script>
-
-Make sure to adjust the ``src`` attribute to your needs, then initialize the
-plugin in WYMeditor's ``postInit`` function::
-
- wymeditor({postInit: function(wym) {
- wym.hovertools(); // other plugins...
- wym.resizable({handles: "s,e",
- maxHeight: 600});
- }
- })
-
-The ``resizable`` plugin takes exactly one parameter, which is an object literal
-containing the options of the plugin. The WYMeditor ``resizable`` plugin
-supports all options of the jQuery UI ``resizable`` plugin. These are the
-default values used by the plugin::
-
- handles: "s,e,se",
- minHeight: 250,
- maxHeight: 600
-
-See the `jQuery UI resizable plugin docs`_ for a list of all options.
-
-That's it! You are now able to resize the WYMeditor vertically, horizontally or
-both, depending on your options.
-
-.. _jQuery UI resizable plugin docs: http://docs.jquery.com/UI/Resizables
-
-Internals
-=========
-The plugin takes care of loading the necessary jQuery UI files (``base`` and
-``resizable``) from the same path the jQuery library was loaded. Here's how
-it's done::
-
- // Get the jQuery path from the editor, stripping away the jQuery file.
- // see http://www.oreilly.com/catalog/regex/chapter/ch04.html
- // The match result array contains the path and the filename.
- var jQueryPath = wym.computeJqueryPath().match(/^(.*)\/(.*)$/)[1];
-
- // Make an array of the external JavaScript files required by the plugin.
- var jQueryPlugins = [jQueryPath + '/ui.base.js',
- jQueryPath + '/ui.resizable.js'];
-
- // First get the jQuery UI base file
- $.getScript(jQueryPlugins[0]);
-
- // Get the jQuery UI resizeable plugin and then init the wymeditor resizable
- // plugin. It is import to do the initialisation after loading the
- // necessary jQuery UI files has finished, otherwise the "resizable" method
- // would not be available.
- $.getScript(jQueryPlugins[1], function() {
- jQuery(wym._box).resizable(final_options);
- });
-
-An alternative approach would be to use an AJAX queue when getting the script
-files to ensure that all jQuery files are loaded before the initialisation code
-of the plugin is executed. There is an `jQuery AJAX queue plugin`_ which does
-that.
-
-.. _jQuery AJAX queue plugin: http://plugins.jquery.com/project/ajaxqueue
-
-Changelog
-=========
-
-0.2
----
-- Added full support for all jQuery UI resizable plugin options.
-- Refactored and documented code.
-- Now contains a packed version (775 bytes).
-
-0.1
----
-- Initial release.
-
-.. _WYMeditor: http://www.wymeditor.org/
-.. _WYMeditor plugin page: http://trac.wymeditor.org/trac/wiki/0.4/Plugins
diff --git a/websdk/static/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js b/websdk/static/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js
deleted file mode 100644
index 1ba2d2e..0000000
--- a/websdk/static/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js
+++ /dev/null
@@ -1,91 +0,0 @@
-/*
- * WYMeditor : what you see is What You Mean web-based editor
- * Copyright (c) 2005 - 2009 Jean-Francois Hovinne, http://www.wymeditor.org/
- * Dual licensed under the MIT (MIT-license.txt)
- * and GPL (GPL-license.txt) licenses.
- *
- * For further information visit:
- * http://www.wymeditor.org/
- *
- * File Name:
- * jquery.wymeditor.resizable.js
- * resize plugin for WYMeditor
- *
- * File Authors:
- * Peter Eschler (peschler _at_ gmail.com)
- * Jean-Francois Hovinne - http://www.hovinne.com/
- *
- * Version:
- * 0.4
- *
- * Changelog:
- *
- * 0.4
- * - Removed UI and UI.resizable scripts loading - see #167 (jfh).
- *
- * 0.3
- * - Added 'iframeOriginalSize' and removed 'ui.instance' calls (jfh).
- *
- * 0.2
- * - Added full support for all jQueryUI resizable plugin options.
- * - Refactored and documented code.
- * 0.1
- * - Initial release.
- */
-
-/**
- * The resizable plugin makes the wymeditor box vertically resizable.
- * It it based on the ui.resizable.js plugin of the jQuery UI library.
- *
- * The WYMeditor resizable plugin supports all parameters of the jQueryUI
- * resizable plugin. The parameters are passed like this:
- *
- * wym.resizable({ handles: "s,e",
- * maxHeight: 600 });
- *
- * DEPENDENCIES: jQuery UI, jQuery UI resizable
- *
- * @param options options for the plugin
- */
-WYMeditor.editor.prototype.resizable = function(options) {
-
- var wym = this;
- var iframe = jQuery(wym._box).find('iframe');
- var iframeOriginalSize = {};
-
- // Define some default options
- var default_options = {
- start: function(e, ui) {
- iframeOriginalSize = {
- width: jQuery(iframe).width(),
- height: jQuery(iframe).height()
- }
- },
-
- // resize is called by the jQuery resizable plugin whenever the
- // client area was resized.
- resize: function(e, ui) {
- var diff = ui.size.height - ui.originalSize.height;
- jQuery(iframe).height( iframeOriginalSize.height + diff );
-
- // If the plugin has horizontal resizing disabled we need to
- // adjust the "width" attribute of the area css, because the
- // resizing will set a fixed width (which breaks liquid layout
- // of the wymeditor area).
- if( !ui.options.handles['w'] && !ui.options.handles['e'] ) {
- ui.size.width = "inherit";
- }
- },
- handles: "s,e,se",
- minHeight: 250,
- maxHeight: 600
- };
-
- // Merge given options with default options. Given options override
- // default ones.
- var final_options = jQuery.extend(default_options, options);
-
- if(jQuery.isFunction( jQuery.fn.resizable )) jQuery(wym._box).resizable(final_options);
- else WYMeditor.console.error('Oops, jQuery UI.resizable unavailable.');
-
-};
diff --git a/websdk/static/js/wymeditor/plugins/resizable/readme.txt b/websdk/static/js/wymeditor/plugins/resizable/readme.txt
deleted file mode 100644
index 2a0444e..0000000
--- a/websdk/static/js/wymeditor/plugins/resizable/readme.txt
+++ /dev/null
@@ -1,124 +0,0 @@
-
-
-resizable plugin for WYMeditor
-##############################
-
-The ``resizable`` plugin for WYMeditor_ enables vertical resizing of the
-editor area. The plugin is based on the jQuery UI library.
-
-Requirements
-============
-The following packages are required for using the WYMeditor ``resizable``
-plugin:
-
-* jQuery (tested with jQuery ``jquery-1.2.4a.js`` from ``jquery.ui`` package)
-* WYMeditor SVN trunk (Revision: 482)
-* jQuery-UI (tested with ``jquery.ui-1.5b2``)
-
-It should be possible to use this plugin with ``WYMeditor-0.4`` but I have not
-tried.
-
-Download
-========
-You can download the WYMeditor ``resizable`` plugin here:
-
-* wymeditor-resizable-plugin-0.2.tgz_
-* wymeditor-resizable-plugin-0.1.tgz_
-
-See the Changelog_ for more infos about the releases.
-
-.. _wymeditor-resizable-plugin-0.2.tgz: http://pyjax.net/download/wymeditor-resizable-plugin-0.2.tgz
-.. _wymeditor-resizable-plugin-0.1.tgz: http://pyjax.net/download/wymeditor-resizable-plugin-0.1.tgz
-
-Installation
-============
-Just extract the downloaded archive into your WYMeditor's ``plugin``
-directory.
-
-Usage
-=====
-For general instructions on WYMeditor plugins please refer to the `WYMeditor
-plugin page`_.
-
-To use the ``resizable`` plugin simply include the plugin's JavaScript file in
-your code. You **do not** need to include the jQuery UI files - this is done
-automatically by the plugin (see `Internals`_)::
-
- <script type="text/javascript"
- src="/js/wymeditor/plugins/resizable/jquery.wymeditor.resizable.js">
- </script>
-
-Make sure to adjust the ``src`` attribute to your needs, then initialize the
-plugin in WYMeditor's ``postInit`` function::
-
- wymeditor({postInit: function(wym) {
- wym.hovertools(); // other plugins...
- wym.resizable({handles: "s,e",
- maxHeight: 600});
- }
- })
-
-The ``resizable`` plugin takes exactly one parameter, which is an object literal
-containing the options of the plugin. The WYMeditor ``resizable`` plugin
-supports all options of the jQuery UI ``resizable`` plugin. These are the
-default values used by the plugin::
-
- handles: "s,e,se",
- minHeight: 250,
- maxHeight: 600
-
-See the `jQuery UI resizable plugin docs`_ for a list of all options.
-
-That's it! You are now able to resize the WYMeditor vertically, horizontally or
-both, depending on your options.
-
-.. _jQuery UI resizable plugin docs: http://docs.jquery.com/UI/Resizables
-
-Internals
-=========
-The plugin takes care of loading the necessary jQuery UI files (``base`` and
-``resizable``) from the same path the jQuery library was loaded. Here's how
-it's done::
-
- // Get the jQuery path from the editor, stripping away the jQuery file.
- // see http://www.oreilly.com/catalog/regex/chapter/ch04.html
- // The match result array contains the path and the filename.
- var jQueryPath = wym.computeJqueryPath().match(/^(.*)\/(.*)$/)[1];
-
- // Make an array of the external JavaScript files required by the plugin.
- var jQueryPlugins = [jQueryPath + '/ui.base.js',
- jQueryPath + '/ui.resizable.js'];
-
- // First get the jQuery UI base file
- $.getScript(jQueryPlugins[0]);
-
- // Get the jQuery UI resizeable plugin and then init the wymeditor resizable
- // plugin. It is import to do the initialisation after loading the
- // necessary jQuery UI files has finished, otherwise the "resizable" method
- // would not be available.
- $.getScript(jQueryPlugins[1], function() {
- jQuery(wym._box).resizable(final_options);
- });
-
-An alternative approach would be to use an AJAX queue when getting the script
-files to ensure that all jQuery files are loaded before the initialisation code
-of the plugin is executed. There is an `jQuery AJAX queue plugin`_ which does
-that.
-
-.. _jQuery AJAX queue plugin: http://plugins.jquery.com/project/ajaxqueue
-
-Changelog
-=========
-
-0.2
----
-- Added full support for all jQuery UI resizable plugin options.
-- Refactored and documented code.
-- Now contains a packed version (775 bytes).
-
-0.1
----
-- Initial release.
-
-.. _WYMeditor: http://www.wymeditor.org/
-.. _WYMeditor plugin page: http://trac.wymeditor.org/trac/wiki/0.4/Plugins