old_sql 1.12.0 → 1.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/public/javascripts/old_sql/MochiKit-1.4.2/Changes +362 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/LICENSE.txt +69 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/MANIFEST +179 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/META.json +17 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Async.html +814 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Base.html +1703 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Color.html +755 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/DOM.html +1197 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/DateTime.html +168 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/DragAndDrop.html +187 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Format.html +300 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Iter.html +524 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Logging.html +420 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/LoggingPane.html +142 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Position.html +38 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Selector.html +240 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Signal.html +508 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Sortable.html +244 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Style.html +385 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/VersionHistory.html +384 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/Visual.html +1161 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/html/MochiKit/index.html +447 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/js/toc.js +113 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Async.rst +767 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Base.rst +1445 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Color.rst +651 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/DOM.rst +1143 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/DateTime.rst +145 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/DragAndDrop.rst +197 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Format.rst +258 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Iter.rst +454 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Logging.rst +348 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/LoggingPane.rst +128 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Position.rst +26 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Selector.rst +203 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Signal.rst +498 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Sortable.rst +186 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Style.rst +353 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/VersionHistory.rst +362 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/Visual.rst +895 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/doc/rst/MochiKit/index.rst +83 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/ajax_tables/ajax_tables.css +69 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/ajax_tables/ajax_tables.js +401 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/ajax_tables/domains.json +10 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/ajax_tables/domains.xml +40 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/ajax_tables/index.html +96 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/color_wheel/color_wheel.css +4 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/color_wheel/color_wheel.js +95 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/color_wheel/index.html +31 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/dnd_sortable.css +23 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/dropmarker.png +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/icon.png +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/index.html +54 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable2_test.html +150 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable3_test.html +42 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable4_test.html +90 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable5_test.html +29 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable_test.html +38 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/dnd_sortable/sortable_tree_test.html +189 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/draggable/draggable.css +28 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/draggable/draggable.js +73 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/draggable/index.html +38 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_bigslide.html +36 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_blind.html +65 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_blindslide.html +31 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_combi.css +18 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_fadeappear.html +61 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_grow_shrink.html +38 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_onload.html +67 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_queue.html +67 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_queue_limit.html +30 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_scroll.html +483 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/effects_slide.html +62 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/full.html +71 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/icon.png +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/effects/index.html +150 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/interpreter/index.html +88 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/interpreter/interpreter.css +54 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/interpreter/interpreter.js +373 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/key_events/index.html +78 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/key_events/key_events.css +5 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/key_events/key_events.js +85 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/logging_pane/index.html +46 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/logging_pane/logging_pane.css +78 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/logging_pane/logging_pane.js +11 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mochiregexp/index.html +74 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mochiregexp/mochiregexp.css +73 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mochiregexp/mochiregexp.js +125 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mouse_events/index.html +88 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mouse_events/mouse_events.css +17 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/mouse_events/mouse_events.js +59 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/rounded_corners/index.html +28 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/rounded_corners/rounded_corners.css +3 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/rounded_corners/rounded_corners.js +19 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_boxes.html +45 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_full.html +119 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_ghost.html +40 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_hoverclass.html +43 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_scroll.html +91 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/dnd_snap.html +54 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/index.html +93 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/simple_dnd/simple_dnd.css +64 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/sortable_tables/index.html +71 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/sortable_tables/sortable_tables.css +66 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/sortable_tables/sortable_tables.js +203 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/SyntaxHighlighter.css +177 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/Tests.html +339 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushCSharp.js +30 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushDelphi.js +31 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushJScript.js +22 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushPhp.js +23 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushPython.js +71 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushSql.js +40 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushVb.js +29 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shBrushXml.js +61 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/lib/SyntaxHighlighter/shCore.js +622 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/view-source.css +1 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/view-source.html +19 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/examples/view-source/view-source.js +70 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/include/_img/bg_docheader.gif +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/include/_img/g_bullet.gif +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/include/_img/g_logo_doc.gif +0 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/include/css/documentation.css +130 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/include/css/general.css +48 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Async.js +682 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Base.js +1489 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Color.js +863 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/DOM.js +1256 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/DateTime.js +222 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/DragAndDrop.js +793 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Format.js +304 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Iter.js +844 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Logging.js +315 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/LoggingPane.js +353 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/MochiKit.js +188 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/MockDOM.js +115 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Position.js +236 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Selector.js +415 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Signal.js +897 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Sortable.js +589 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Style.js +594 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Test.js +162 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/Visual.js +2026 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/lib/MochiKit/__package__.js +18 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/packed/MochiKit/MochiKit.js +7829 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/packed/MochiKit/__package__.js +6 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/packed/MochiKit/customize.html +251 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/FakeJSAN.js +40 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/SimpleTest/SimpleTest.js +381 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/SimpleTest/TestRunner.js +159 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/SimpleTest/test.css +28 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/cli.js +6 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/index.html +25 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/standalone.js +16 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Base.js +577 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Color.js +137 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_DateTime.js +52 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_DragAndDrop.js +30 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Format.js +89 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Iter.js +186 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Logging.js +88 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Async.html +408 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Async.json +1 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Base.html +34 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Color.html +84 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-DOM-Safari.html +48 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-DOM.html +363 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-DateTime.html +39 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-DragAndDrop.html +54 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Format.html +39 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Iter.html +38 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-JSAN.html +32 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Logging.html +40 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-MochiKit.html +18 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Selector.html +295 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Signal.html +43 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Style.html +223 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_MochiKit-Visual.html +197 -0
- data/public/javascripts/old_sql/MochiKit-1.4.2/tests/test_Signal.js +481 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/COPYING +28 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/Base.js +406 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/Canvas.js +683 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/EasyPlot.js +161 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/Layout.js +756 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/PlotKit.js +151 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/PlotKit_Packed.js +2177 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/SVG.js +705 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/SweetCanvas.js +348 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/SweetSVG.js +247 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/dummy.svg +9 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/PlotKit/excanvas.js +723 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/README +1 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/MochiKitAdditions.html +2 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/MochiKitAdditions.txt +2 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Base.html +302 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Base.txt +139 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Canvas.html +172 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Canvas.txt +81 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.EasyPlot.html +155 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.EasyPlot.txt +50 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Layout.html +428 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Layout.txt +330 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.QuickStart.html +368 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.QuickStart.txt +256 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Renderer.html +436 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.Renderer.txt +299 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SVG.html +159 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SVG.txt +64 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SweetCanvas.html +131 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SweetCanvas.txt +34 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SweetSVG.html +131 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.SweetSVG.txt +34 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.html +334 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/PlotKit.txt +151 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/SVGCanvasCompat.html +304 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/SVGCanvasCompat.txt +144 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/barsample.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/black.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/blue.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/cyan.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/doc.css +62 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/generate.py +37 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/green.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/orange.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/piesample.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/purple.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/doc/red.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/scripts/custom_rhino.jar +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/scripts/pack.py +58 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/axis.html +31 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/basic.html +25 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/basic.js +143 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/debug.html +56 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/demo-svg.html +58 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/demo-svg.js +133 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/demo.html +57 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/demo.js +136 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/dynamic.html +161 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/firefox.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/konqueror.png +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/mozilla.ico +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/msie.gif +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/opera.ico +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/img/safari.gif +0 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/labels-img.html +38 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/labels.html +43 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/prototype_compat.html +28 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/quickstart-easy.html +29 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/quickstart-horiz.html +53 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/quickstart-neg.html +29 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/quickstart-svg.html +61 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/quickstart.html +57 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/sample.txt +6 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/svg-sweet.html +29 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/svg-sweet.js +141 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/svg.html +26 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/svg.js +147 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/sweet.html +24 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/sweet.js +89 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/tests.css +66 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/testsvg.html +20 -0
- data/public/javascripts/old_sql/plotkit-0.9.1/tests/testsvg.js +31 -0
- metadata +264 -2
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
{% extends "basex.html" %}
|
|
2
|
+
{% load markup %}
|
|
3
|
+
{% block pageid %}code{% endblock %}
|
|
4
|
+
{% block title %}PlotKit Documentation{% endblock %}
|
|
5
|
+
{% block headers %}
|
|
6
|
+
<link href="doc.css" media="screen" rel="stylesheet" type="text/css" />
|
|
7
|
+
{% endblock %}
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
{% block content %}
|
|
11
|
+
<div class="page doc">
|
|
12
|
+
{% filter markdown %}
|
|
13
|
+
PlotKit
|
|
14
|
+
=======
|
|
15
|
+
|
|
16
|
+
[PlotKit][] is a Javascript graph plotting library. It is aimed at web
|
|
17
|
+
applications that require plotting series of data in modern web
|
|
18
|
+
browsers.
|
|
19
|
+
|
|
20
|
+
PlotKit requires [MochiKit][]. (1.3 or higher)
|
|
21
|
+
|
|
22
|
+
PlotKit supports both HTML Canvas and SVG, along with an
|
|
23
|
+
[emulated canvas for Internet Explorer][IECanvas].
|
|
24
|
+
|
|
25
|
+
PlotKit is easily extensible to include other rendering engines,
|
|
26
|
+
styles and layouts. Please pursue the documentation for more
|
|
27
|
+
information.
|
|
28
|
+
|
|
29
|
+
PlotKit is licensed under the BSD License, so you can include it in
|
|
30
|
+
your free or commercial applications without worrying.
|
|
31
|
+
|
|
32
|
+
PlotKit Components
|
|
33
|
+
==================
|
|
34
|
+
|
|
35
|
+
Base Classes
|
|
36
|
+
------------
|
|
37
|
+
|
|
38
|
+
* [Base][] : Common functionality that is used in other classes,
|
|
39
|
+
including default styles.
|
|
40
|
+
* [Layout][] : The default chart layout engine, supports bar, line and
|
|
41
|
+
pie charts.
|
|
42
|
+
* [Renderer][]: Customising the look of the output
|
|
43
|
+
|
|
44
|
+
Renderer Specific Implementations
|
|
45
|
+
---------------------------------
|
|
46
|
+
|
|
47
|
+
* [CanvasRenderer][]: Basic renderer using an HTML Canvas.
|
|
48
|
+
* [SVGRenderer][]: Basic renderer using SVG.
|
|
49
|
+
* [SweetCanvasRenderer][]: Customised Renderer that builds on CanvasRenderer to provide nicer looking charts.
|
|
50
|
+
* [SweetSVGRenderer][]: Customised renderer that builds on SVGRenderer to provide nicer looking charts.
|
|
51
|
+
|
|
52
|
+
Utility Classes
|
|
53
|
+
---------------
|
|
54
|
+
|
|
55
|
+
* [EasyPlot][]: Simple Wrapper around classes to provide one-line plotting.
|
|
56
|
+
|
|
57
|
+
Getting Started
|
|
58
|
+
===============
|
|
59
|
+
|
|
60
|
+
* [PlotKit Quick Start][QuickStart] - A thorough quick start to getting charts working for Safari, Mozilla, Firefox, Opera and IE.
|
|
61
|
+
* [SVG/Canvas Browser Support Status][Browser] - Quirks about browser support that you should know about.
|
|
62
|
+
* [Simple Canvas Demo][QuickstartCanvasDemo] - Very basic Canvas demo all contained in an HTML file.
|
|
63
|
+
* [Simple SVG Demo][QuickstartSVGDemo] - Very basic SVG demo all contained in an HTML file.
|
|
64
|
+
|
|
65
|
+
More Demos
|
|
66
|
+
==========
|
|
67
|
+
|
|
68
|
+
* Unit Tests [Canvas][CanvasTest], [SVG][SVGTest], [SweetCanvas][SCanvasTest], [SweetSVG][SSVGTest].
|
|
69
|
+
* [Dynamic Charting][DynamicTest].
|
|
70
|
+
* [Labels Example][]. Thanks to Christopher Armstrong.
|
|
71
|
+
* [Labels with Images][].
|
|
72
|
+
* [Axis Restrictions][].
|
|
73
|
+
|
|
74
|
+
Version History
|
|
75
|
+
===============
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
###PlotKit 0.8
|
|
79
|
+
|
|
80
|
+
* Total rewrite from [CanvasGraph 0.7][CanvasGraph]
|
|
81
|
+
|
|
82
|
+
###PlotKit 0.9
|
|
83
|
+
|
|
84
|
+
* Fixed some redraw issues with clear()
|
|
85
|
+
* Replaced IECanvas.HTC with ExplorerCanvas
|
|
86
|
+
* Added auto import and packed versions just like MochiKit.
|
|
87
|
+
* Added horizontal bar chart rendering mode.
|
|
88
|
+
* Added awareness of prototype.js and workaround Array/Object mutilation issues with MochiKit.
|
|
89
|
+
* Added EasyPlot for single line plotting with Ajax support.
|
|
90
|
+
* More tests, [dynamic charting][DynamicTest] and quickstart demos.
|
|
91
|
+
|
|
92
|
+
###PlotKit 0.9.1
|
|
93
|
+
|
|
94
|
+
* Make Sweet{Canvas/SVG}Renderers respect shouldFill.
|
|
95
|
+
* Fixed ignoring of maximum x and y values when setting xAxis/yAxis.
|
|
96
|
+
* Fixed typo for calculating yrange in Layout.js (thanks to
|
|
97
|
+
HubrisSonic).
|
|
98
|
+
* Changed SweetCanvasRenderer to use axisLineColor for drawing lines over
|
|
99
|
+
background (thanks to HubrisSonic).
|
|
100
|
+
* Fixed bug in y-axis tick drawing (thanks to Cliff).
|
|
101
|
+
* Fixed x-axis calculation bug when xAxisIsZero is false (thanks to
|
|
102
|
+
Loic Jeannin)
|
|
103
|
+
* Fixed xTicks drawing that exceed the bounds of the chart (thanks to
|
|
104
|
+
Cliff)
|
|
105
|
+
* Fixed barchart drawing with only 2 values (thanks to HubrisSonic)
|
|
106
|
+
* Hide pie chart labels of 0% (thanks to Attiks)
|
|
107
|
+
* Added optional field to addDatasetFromTable to include x-axis labels.
|
|
108
|
+
* Updated excanvas.js version to fix possible printing issues.
|
|
109
|
+
|
|
110
|
+
Road Map
|
|
111
|
+
========
|
|
112
|
+
###Version 0.9
|
|
113
|
+
|
|
114
|
+
* AutoSelectRenderer, automatically choose Canvas or SVG by auto detecting browser support.
|
|
115
|
+
|
|
116
|
+
###Version 0.10
|
|
117
|
+
|
|
118
|
+
* Point plots
|
|
119
|
+
* Defined Event System Support
|
|
120
|
+
* Animation support.
|
|
121
|
+
|
|
122
|
+
[QuickStart]: PlotKit.QuickStart.html
|
|
123
|
+
[CanvasGraph]: http://www.liquidx.net/canvasgraphjs/
|
|
124
|
+
[PlotKit]: http://www.liquidx.net/plotkit/
|
|
125
|
+
[MochiKit]: http://mochikit.com/
|
|
126
|
+
[IECanvas]: http://me.eae.net/archive/2005/12/29/canvas-in-ie/
|
|
127
|
+
[Base]: PlotKit.Base.html
|
|
128
|
+
[Styles]: PlotKit.Styles.html
|
|
129
|
+
[Layout]: PlotKit.Layout.html
|
|
130
|
+
[Renderer]: PlotKit.Renderer.html
|
|
131
|
+
[CanvasRenderer]: PlotKit.Canvas.html
|
|
132
|
+
[SVGRenderer]: PlotKit.SVG.html
|
|
133
|
+
[SweetCanvasRenderer]: PlotKit.SweetCanvas.html
|
|
134
|
+
[SweetSVGRenderer]: PlotKit.SweetSVG.html
|
|
135
|
+
[EasyPlot]: PlotKit.EasyPlot.html
|
|
136
|
+
[Browser]: SVGCanvasCompat.html
|
|
137
|
+
[CanvasTest]: http://media.liquidx.net/js/plotkit-tests/basic.html
|
|
138
|
+
[SVGTest]: http://media.liquidx.net/js/plotkit-tests/svg.html
|
|
139
|
+
[SCanvasTest]: http://media.liquidx.net/js/plotkit-tests/sweet.html
|
|
140
|
+
[SSVGTest]: http://media.liquidx.net/js/plotkit-tests/sweet-svg.html
|
|
141
|
+
[QuickstartCanvasDemo]: http://media.liquidx.net/js/plotkit-tests/quickstart.html
|
|
142
|
+
[QuickstartSVGDemo]: http://media.liquidx.net/js/plotkit-tests/quickstart-svg.html
|
|
143
|
+
[QuickstartEasyDemo]: http://media.liquidx.net/js/plotkit-tests/quickstart-easy.html
|
|
144
|
+
[DynamicTest]: http://media.liquidx.net/js/plotkit-tests/dynamic.html
|
|
145
|
+
[Labels Example]: http://media.liquidx.net/js/plotkit-tests/labels.html
|
|
146
|
+
[Labels with Images]: http://media.liquidx.net/js/plotkit-tests/labels-img.html
|
|
147
|
+
[Axis Restrictions]: http://media.liquidx.net/js/plotkit-tests/axis.html
|
|
148
|
+
|
|
149
|
+
{% endfilter %}
|
|
150
|
+
</div>
|
|
151
|
+
{% endblock %}
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
|
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" >
|
|
4
|
+
<head>
|
|
5
|
+
<title>SVG and Canvas Support Status in Various Browsers. | liquidx</title>
|
|
6
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
7
|
+
<link href="http://media.liquidx.net/css/x_general.css" media="screen" rel="Stylesheet" type="text/css" />
|
|
8
|
+
<link href="http://media.liquidx.net/css/x_header.css" media="screen" rel="Stylesheet" type="text/css" />
|
|
9
|
+
<link href="http://media.liquidx.net/css/x_layout.css" media="screen" rel="Stylesheet" type="text/css" />
|
|
10
|
+
<link href="http://media.liquidx.net/css/x_blocks.css" media="screen" rel="Stylesheet" type="text/css" />
|
|
11
|
+
<link rel="icon" href="/favicon.png" type="image/x-png">
|
|
12
|
+
<link rel="shortcut icon" href="/favicon.png" type="image/x-png">
|
|
13
|
+
<!--[if lt IE 7.]>
|
|
14
|
+
<script defer type="text/javascript" src="http://media.liquidx.net/js/pngfix.js"></script>
|
|
15
|
+
<![endif]-->
|
|
16
|
+
|
|
17
|
+
<link href="doc.css" media="screen" rel="stylesheet" type="text/css" />
|
|
18
|
+
|
|
19
|
+
</head>
|
|
20
|
+
|
|
21
|
+
<body>
|
|
22
|
+
<div id="header">
|
|
23
|
+
<div id="logo"><a href="http://www.liquidx.net/"><img src="http://media.liquidx.net/imgx/logo.png" width="256" height="128" alt="liquidx.net" /></a></div>
|
|
24
|
+
<div id="menu-hack">
|
|
25
|
+
<div id="menu-l"><img src="http://media.liquidx.net/imgx/menu_l.png" width="17" height="28" alt="menu cap" /></div><div id="menu-r"><img src="http://media.liquidx.net/imgx/menu_r.png" width="17" height="28" alt="menu cap" /></div>
|
|
26
|
+
<div id="menu-main">
|
|
27
|
+
<ul id="menu" class="code">
|
|
28
|
+
<li class="tab" id="blog"><a href="http://www.liquidx.net/" title="blog/home">blog</a></li>
|
|
29
|
+
<li class="tab" id="code"><a href="http://www.liquidx.net/code/" title="software i have written">software</a></li>
|
|
30
|
+
<li class="tab" id="dev"><a href="http://projects.liquidx.net/" title="source code for my open source projects">dev</a></li>
|
|
31
|
+
<li class="tab" id="photos"><a href="http://al.tse.id.au/gallery/" title="photos and videos">photos</a></li>
|
|
32
|
+
<li class="tab" id="research"><a href="http://al.tse.id.au/research/" title="research profile">research</a></li>
|
|
33
|
+
<li class="tab" id="links"><a href="http://www.liquidx.net/links/" title="my bookmarks">linkblog</a></li>
|
|
34
|
+
<li class="tab" id="stats"><a href="http://stats.liquidx.net/" title="stats for various parts of my website">stats</a></li>
|
|
35
|
+
<li class="tab" id="status"><a href="http://www.liquidx.net/status/" title="weather report for alastair">status</a></li>
|
|
36
|
+
<li class="tab" id="about"><a href="http://al.tse.id.au/" title="about alastair tse">aboutme</a></li>
|
|
37
|
+
</ul>
|
|
38
|
+
</div>
|
|
39
|
+
</div>
|
|
40
|
+
<div id="quickbuttons">
|
|
41
|
+
<span class="quickbutton"><a href="http://www.liquidx.net/albumartwidget/"><img src="http://media.liquidx.net/imgx/quick_widget.png" alt="album art widget" /></a></span>
|
|
42
|
+
<span class="quickbutton"><a href="http://www.liquidx.net/plotkit/"><img src="http://media.liquidx.net/imgx/quick_plotkit.png" alt="plotkit" /></a></span>
|
|
43
|
+
<span class="quickbutton"><a href="http://www.liquidx.net/fruity/"><img src="http://media.liquidx.net/imgx/quick_fruity.png" alt="fruity" /></a></span>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
</div>
|
|
47
|
+
|
|
48
|
+
<div id="body">
|
|
49
|
+
<div class="page doc">
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
<h1> State of SVG and Canvas in Modern Browsers</h1>
|
|
53
|
+
<p> <strong>By: Alastair Tse - Last Updated: 27 April 2006</strong>
|
|
54
|
+
</p>
|
|
55
|
+
<p>My friends, just like HTML and CSS, different browsers support
|
|
56
|
+
different subsections of the SVG and Canvas specification. As part of
|
|
57
|
+
my work on PlotKit, the next generation javascript plotting library,
|
|
58
|
+
I've decided to summarise all the quirks in SVG and Canvas support.
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
<h1> Browsers Considered</h1>
|
|
62
|
+
<p>I am looking at browsers that are considered "modern" as of
|
|
63
|
+
March 2006. These include:
|
|
64
|
+
</p>
|
|
65
|
+
<ul>
|
|
66
|
+
<li>
|
|
67
|
+
<a href="http://apple.com/safari/">Safari 2.0.x</a> (W/ <a href="http://www.adobe.com/svg/">Adobe SVG Plugin</a>)
|
|
68
|
+
</li>
|
|
69
|
+
|
|
70
|
+
<li>
|
|
71
|
+
<a href="http://www.mozilla.com/firefox/">Firefox 1.5.x</a>
|
|
72
|
+
</li>
|
|
73
|
+
|
|
74
|
+
<li>
|
|
75
|
+
<a href="http://snapshot.opera.com/">Opera 9.0 Preview 2</a>
|
|
76
|
+
</li>
|
|
77
|
+
|
|
78
|
+
<li>
|
|
79
|
+
<a href="http://www.microsoft.com/windows/ie/">Internet Explorer 6</a> (w/ <a href="http://www.adobe.com/svg/">Adobe SVG Plugin</a>)
|
|
80
|
+
</li>
|
|
81
|
+
</ul>
|
|
82
|
+
<p>I am also looking at some experiemental browsers as of March 2006.
|
|
83
|
+
</p>
|
|
84
|
+
<ul>
|
|
85
|
+
<li>
|
|
86
|
+
<a href="http://www.microsoft.com/windows/IE/ie7/default.mspx">Internet Explorer 7 beta 2 preview + ASV</a>
|
|
87
|
+
</li>
|
|
88
|
+
|
|
89
|
+
<li>
|
|
90
|
+
<a href="http://nightly.webkit.org/">Safari WebKit+SVG Nightly 2006-03-11</a>
|
|
91
|
+
</li>
|
|
92
|
+
|
|
93
|
+
<li>
|
|
94
|
+
<a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/">Firefox Deerpark Nightly 2006-03-11</a>
|
|
95
|
+
</li>
|
|
96
|
+
</ul>
|
|
97
|
+
|
|
98
|
+
<h1> Canvas</h1>
|
|
99
|
+
<ul>
|
|
100
|
+
<li>
|
|
101
|
+
Canvas is defined by the WHATWG in what is known as the
|
|
102
|
+
<a href="http://whatwg.org/specs/web-apps/current-work/">Web Applications 1.0 specification</a>
|
|
103
|
+
</li>
|
|
104
|
+
</ul>
|
|
105
|
+
|
|
106
|
+
<h2> Supporting Browsers</h2>
|
|
107
|
+
<ul>
|
|
108
|
+
<li>
|
|
109
|
+
Safari 2.0 and above.
|
|
110
|
+
</li>
|
|
111
|
+
|
|
112
|
+
<li>
|
|
113
|
+
Opera 9.0 and above.
|
|
114
|
+
</li>
|
|
115
|
+
|
|
116
|
+
<li>
|
|
117
|
+
Firefox 1.5 and above.
|
|
118
|
+
</li>
|
|
119
|
+
</ul>
|
|
120
|
+
|
|
121
|
+
<h2> Quirks</h2>
|
|
122
|
+
<ul>
|
|
123
|
+
<li><p> <strong>Safari</strong> will forget a path after <code>fill()</code> or <code>stroke()</code> has
|
|
124
|
+
been called. Therefore, if you need to fill and stroke the same
|
|
125
|
+
path, you must draw the path out twice.
|
|
126
|
+
</p>
|
|
127
|
+
|
|
128
|
+
</li>
|
|
129
|
+
|
|
130
|
+
<li><p> <strong>Opera</strong> will not obey <code>stroke()</code> for arc paths.
|
|
131
|
+
</p>
|
|
132
|
+
|
|
133
|
+
</li>
|
|
134
|
+
|
|
135
|
+
<li><p> <strong>Firefox</strong> and <strong>Opera</strong> will not draw shadows even with
|
|
136
|
+
<code>shadowStyle</code> or <code>shadowOffset</code> is set on the context object.
|
|
137
|
+
</p>
|
|
138
|
+
|
|
139
|
+
</li>
|
|
140
|
+
</ul>
|
|
141
|
+
|
|
142
|
+
<h1> SVG</h1>
|
|
143
|
+
<ul>
|
|
144
|
+
<li>
|
|
145
|
+
SVG support is either provided natively, or through the Adobe SVG
|
|
146
|
+
Viewer (ASV).
|
|
147
|
+
</li>
|
|
148
|
+
</ul>
|
|
149
|
+
|
|
150
|
+
<h2> Supporting Browsers (Inline)</h2>
|
|
151
|
+
<ul>
|
|
152
|
+
<li>
|
|
153
|
+
Safari 2.0 + ASV
|
|
154
|
+
</li>
|
|
155
|
+
|
|
156
|
+
<li>
|
|
157
|
+
Internet Explorer 6 + ASV
|
|
158
|
+
</li>
|
|
159
|
+
|
|
160
|
+
<li>
|
|
161
|
+
Safari Webkit+SVG Nightly
|
|
162
|
+
</li>
|
|
163
|
+
|
|
164
|
+
<li>
|
|
165
|
+
Opera 9.0 and above
|
|
166
|
+
</li>
|
|
167
|
+
|
|
168
|
+
<li>
|
|
169
|
+
Mozilla Firefox 1.5 and above
|
|
170
|
+
</li>
|
|
171
|
+
</ul>
|
|
172
|
+
|
|
173
|
+
<h2> Quirks (Inline)</h2>
|
|
174
|
+
<ul>
|
|
175
|
+
<li><p> <strong>Safari Nightly</strong> will not render any <code>text</code> elements when
|
|
176
|
+
inlined. (Will do so if using <code>embed</code>)
|
|
177
|
+
</p>
|
|
178
|
+
|
|
179
|
+
</li>
|
|
180
|
+
|
|
181
|
+
<li><p> <strong>Safari 2.0 + ASV</strong> will not respect inlined SVG.
|
|
182
|
+
</p>
|
|
183
|
+
|
|
184
|
+
</li>
|
|
185
|
+
|
|
186
|
+
<li><p> <strong>Internet Explorer 6 + ASV</strong> will only parse inlined SVG if the
|
|
187
|
+
following is added to the HTML and all SVG elements are in the
|
|
188
|
+
correct namespace <code>svg:</code>.
|
|
189
|
+
</p>
|
|
190
|
+
|
|
191
|
+
</li>
|
|
192
|
+
</ul>
|
|
193
|
+
<p> following is added to the HTML and all SVG elements are in the
|
|
194
|
+
correct namespace <code>svg:</code>.
|
|
195
|
+
</p>
|
|
196
|
+
<pre><code><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
|
197
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
198
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
199
|
+
...
|
|
200
|
+
<body>
|
|
201
|
+
<!-- START Required for IE to support inlined SVG -->
|
|
202
|
+
<object id="AdobeSVG"
|
|
203
|
+
classid="clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2" width="1"
|
|
204
|
+
height="1"></object>
|
|
205
|
+
<?import namespace="svg" implementation="#AdobeSVG"?>
|
|
206
|
+
<!-- END Required for IE to support inlined SVG -->
|
|
207
|
+
<svg:svg width="300" height="300" baseProfile="full" version="1.1"></svg:svg>
|
|
208
|
+
</body>
|
|
209
|
+
</html>
|
|
210
|
+
</code></pre><ul>
|
|
211
|
+
<li><p> <strong>Mozilla Firefox (1.5 and nightly) on Mac</strong> will not render
|
|
212
|
+
<code>text</code> elements when inlined. Note that it does for Linux and Windows.
|
|
213
|
+
</p>
|
|
214
|
+
|
|
215
|
+
</li>
|
|
216
|
+
|
|
217
|
+
<li><p> <strong>Opera 9</strong> will refuse to draw an element if attribute <code>filter</code>
|
|
218
|
+
is defined.
|
|
219
|
+
</p>
|
|
220
|
+
|
|
221
|
+
</li>
|
|
222
|
+
</ul>
|
|
223
|
+
<p> is defined.
|
|
224
|
+
</p>
|
|
225
|
+
<ul>
|
|
226
|
+
<li>
|
|
227
|
+
<strong>Internet Explorer 7b2p + ASV</strong> will not work with the Adobe SVG Viewer.
|
|
228
|
+
</li>
|
|
229
|
+
</ul>
|
|
230
|
+
|
|
231
|
+
<h1> Disclaimer</h1>
|
|
232
|
+
<p>The above is presented as-is with my own findings. There may be
|
|
233
|
+
errors. Please do not use this to base your multi-million dollar
|
|
234
|
+
business decisions.
|
|
235
|
+
</p>
|
|
236
|
+
|
|
237
|
+
<h1> Contact</h1>
|
|
238
|
+
<p>If you have anything to add or modify, please contact me at
|
|
239
|
+
<a href="mailto:alastair@liquidx.net">alastair@liquidx.net</a>.
|
|
240
|
+
</p>
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
</div>
|
|
244
|
+
</div>
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
<div id="footer">
|
|
250
|
+
<div class="block">
|
|
251
|
+
<h3>Syndication Feeds:</h3>
|
|
252
|
+
<p>
|
|
253
|
+
<ul class="tiny">
|
|
254
|
+
<li><a href="http://www.liquidx.net/blog/feed/atom/" class="feed" title="feed for all posts on liquidx.net"><img src="http://media.liquidx.net/imgx/feed.gif" class="feed" alt="feed" />Atom Feed for the Blog Entries</a></li>
|
|
255
|
+
<li><a href="http://www.liquidx.net/blog/feed/rss/" class="feed" title="feed for all posts on liquidx.net"><img src="http://media.liquidx.net/imgx/feed.gif" class="feed" alt="feed" />RSS Feed for the Blog Entries</a></li>
|
|
256
|
+
<li><a href="http://www.liquidx.net/comments/feed/atom/" class="feed" title="feed for all posts on liquidx.net"><img src="http://media.liquidx.net/imgx/feed.gif" class="feed" alt="feed" />Feed for All Comments</a></li>
|
|
257
|
+
<li><a href="http://www.liquidx.net/links/feed/atom/" class="feed" title="feed for all bookmarked links"><img src="http://media.liquidx.net/imgx/feed.gif" class="feed" alt="feed" />Feed for Links</a></li>
|
|
258
|
+
</ul>
|
|
259
|
+
</p>
|
|
260
|
+
</div>
|
|
261
|
+
<div class="block">
|
|
262
|
+
<h3>About this site:</h3>
|
|
263
|
+
<p>Content on this site is licensed under <a href="http://creativecommons.org/licenses/by/2.5/">CC By Attribution</a> unless otherwise specified.
|
|
264
|
+
Copyright (c) 2002-2006, <a href="http://al.tse.id.au/">Alastair Tse</a>.</p>
|
|
265
|
+
<p>For more information, see <a href="http://al.tse.id.au/">al.tse.id.au</a>.</p>
|
|
266
|
+
<p><script type="text/javascript" src="http://technorati.com/embed/itwctkzez.js"></script></p>
|
|
267
|
+
</div>
|
|
268
|
+
<div class="block">
|
|
269
|
+
<h3>Is Made Possible By:</h3>
|
|
270
|
+
<p>
|
|
271
|
+
<dl>
|
|
272
|
+
<dt><a href="http://ecto.kung-foo.tv/" class="clean">ecto</a>. </dt>
|
|
273
|
+
<dd>Blogging client for Mac</dd>
|
|
274
|
+
<dt><a href="http://djangoproject.com/" class="clean">Django</a>. </dt>
|
|
275
|
+
<dd>Python Web Framework</dd>
|
|
276
|
+
<dt><a href="http://www.lighttpd.net/" class="clean">lighttpd</a>. </dt>
|
|
277
|
+
<dd>Really Fast Web Server</dd>
|
|
278
|
+
<dt><a href="http://www.saddi.com/software/flup/" class="clean">flup</a>. </dt>
|
|
279
|
+
<dd>FastCGI for Python</dd>
|
|
280
|
+
</dl>
|
|
281
|
+
</p>
|
|
282
|
+
</div>
|
|
283
|
+
<div class="block">
|
|
284
|
+
<h3>Search My Sites:</h3>
|
|
285
|
+
<p>
|
|
286
|
+
<div style='margin: 10px; text-align: center; width: 160px;'><form action='http://www.rollyo.com/search.html' ><fieldset style='margin: 0; padding: 4px 0 0 0; height: 60px; border: none; background: url(http://rollyo.com/remote/togo-bg4.png) no-repeat top left;'><div style="position: absolute; float:left; z-index:99; width: 46px; height: 50px;"><a href="http://rollyo.com"><img style="border: none;" height="50" width="46" src="http://rollyo.com/remote/x.gif"></a></div> <input type='text' size='30' style='float: left; width: 90px; margin: 2px 0 0 48px; padding: 0; font-size: 12px;' name='q' value='Search...' onclick='this.value="";' /><br /> <select name='sid' style='float: left; width: 78px; height: 15px; margin: 12px 0 0 46px; font-size: 7pt; padding: 0;'><option value='106081' selected='selected'>liquidx</option><option value='web'>Search The Web</option></select><input type='image' src='http://rollyo.com/remote/btn-togo.png' alt='Go' style='margin: 12px 0 0 3px; float: left;' /><input type='hidden' name='togo-v' value='1' /></fieldset></form></div>
|
|
287
|
+
</p>
|
|
288
|
+
</div>
|
|
289
|
+
|
|
290
|
+
|
|
291
|
+
<div class="clear"> </div>
|
|
292
|
+
|
|
293
|
+
</div>
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
|
|
298
|
+
<script type="text/javascript">
|
|
299
|
+
_uacct = "UA-58117-1";
|
|
300
|
+
urchinTracker();
|
|
301
|
+
</script>
|
|
302
|
+
|
|
303
|
+
</body>
|
|
304
|
+
</html>
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
{% extends "basex.html" %}
|
|
2
|
+
{% load markup %}
|
|
3
|
+
{% block pageid %}code{% endblock %}
|
|
4
|
+
{% block title %}SVG and Canvas Support Status in Various Browsers.{% endblock %}
|
|
5
|
+
{% block headers %}
|
|
6
|
+
<link href="doc.css" media="screen" rel="stylesheet" type="text/css" />
|
|
7
|
+
{% endblock %}
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
{% block content %}
|
|
11
|
+
<div class="page doc">
|
|
12
|
+
{% filter markdown %}
|
|
13
|
+
State of SVG and Canvas in Modern Browsers
|
|
14
|
+
==========================================
|
|
15
|
+
|
|
16
|
+
__By: Alastair Tse - Last Updated: 27 April 2006__
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
My friends, just like HTML and CSS, different browsers support
|
|
20
|
+
different subsections of the SVG and Canvas specification. As part of
|
|
21
|
+
my work on PlotKit, the next generation javascript plotting library,
|
|
22
|
+
I've decided to summarise all the quirks in SVG and Canvas support.
|
|
23
|
+
|
|
24
|
+
Browsers Considered
|
|
25
|
+
===================
|
|
26
|
+
|
|
27
|
+
I am looking at browsers that are considered "modern" as of
|
|
28
|
+
March 2006. These include:
|
|
29
|
+
|
|
30
|
+
* [Safari 2.0.x][Safari] (W/ [Adobe SVG Plugin][ASV])
|
|
31
|
+
* [Firefox 1.5.x][Firefox]
|
|
32
|
+
* [Opera 9.0 Preview 2][OperaSnapshot]
|
|
33
|
+
* [Internet Explorer 6][IE6] (w/ [Adobe SVG Plugin][ASV])
|
|
34
|
+
|
|
35
|
+
I am also looking at some experiemental browsers as of March 2006.
|
|
36
|
+
|
|
37
|
+
* [Internet Explorer 7 beta 2 preview + ASV][IE7]
|
|
38
|
+
* [Safari WebKit+SVG Nightly 2006-03-11][WebkitNightly]
|
|
39
|
+
* [Firefox Deerpark Nightly 2006-03-11][FirefoxNightly]
|
|
40
|
+
|
|
41
|
+
[Safari]: http://apple.com/safari/
|
|
42
|
+
[Firefox]: http://www.mozilla.com/firefox/
|
|
43
|
+
[OperaSnapshot]: http://snapshot.opera.com/
|
|
44
|
+
[IE6]: http://www.microsoft.com/windows/ie/
|
|
45
|
+
[ASV]: http://www.adobe.com/svg/
|
|
46
|
+
[IE7]: http://www.microsoft.com/windows/IE/ie7/default.mspx
|
|
47
|
+
[WebkitNightly]: http://nightly.webkit.org/
|
|
48
|
+
[FirefoxNightly]: http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
Canvas
|
|
52
|
+
======
|
|
53
|
+
|
|
54
|
+
* Canvas is defined by the WHATWG in what is known as the
|
|
55
|
+
[Web Applications 1.0 specification][WHATWG]
|
|
56
|
+
|
|
57
|
+
Supporting Browsers
|
|
58
|
+
-------------------
|
|
59
|
+
|
|
60
|
+
* Safari 2.0 and above.
|
|
61
|
+
* Opera 9.0 and above.
|
|
62
|
+
* Firefox 1.5 and above.
|
|
63
|
+
|
|
64
|
+
Quirks
|
|
65
|
+
------
|
|
66
|
+
|
|
67
|
+
* __Safari__ will forget a path after ``fill()`` or ``stroke()`` has
|
|
68
|
+
been called. Therefore, if you need to fill and stroke the same
|
|
69
|
+
path, you must draw the path out twice.
|
|
70
|
+
|
|
71
|
+
* __Opera__ will not obey ``stroke()`` for arc paths.
|
|
72
|
+
|
|
73
|
+
* __Firefox__ and __Opera__ will not draw shadows even with
|
|
74
|
+
``shadowStyle`` or ``shadowOffset`` is set on the context object.
|
|
75
|
+
|
|
76
|
+
SVG
|
|
77
|
+
===
|
|
78
|
+
|
|
79
|
+
* SVG support is either provided natively, or through the Adobe SVG
|
|
80
|
+
Viewer (ASV).
|
|
81
|
+
|
|
82
|
+
Supporting Browsers (Inline)
|
|
83
|
+
----------------------------
|
|
84
|
+
|
|
85
|
+
* Safari 2.0 + ASV
|
|
86
|
+
* Internet Explorer 6 + ASV
|
|
87
|
+
* Safari Webkit+SVG Nightly
|
|
88
|
+
* Opera 9.0 and above
|
|
89
|
+
* Mozilla Firefox 1.5 and above
|
|
90
|
+
|
|
91
|
+
Quirks (Inline)
|
|
92
|
+
---------------
|
|
93
|
+
|
|
94
|
+
* __Safari Nightly__ will not render any ``text`` elements when
|
|
95
|
+
inlined. (Will do so if using ``embed``)
|
|
96
|
+
|
|
97
|
+
* __Safari 2.0 + ASV__ will not respect inlined SVG.
|
|
98
|
+
|
|
99
|
+
* __Internet Explorer 6 + ASV__ will only parse inlined SVG if the
|
|
100
|
+
following is added to the HTML and all SVG elements are in the
|
|
101
|
+
correct namespace ``svg:``.
|
|
102
|
+
|
|
103
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"
|
|
104
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
105
|
+
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
106
|
+
...
|
|
107
|
+
<body>
|
|
108
|
+
<!-- START Required for IE to support inlined SVG -->
|
|
109
|
+
<object id="AdobeSVG"
|
|
110
|
+
classid="clsid:78156a80-c6a1-4bbf-8e6a-3cd390eeb4e2" width="1"
|
|
111
|
+
height="1"></object>
|
|
112
|
+
<?import namespace="svg" implementation="#AdobeSVG"?>
|
|
113
|
+
<!-- END Required for IE to support inlined SVG -->
|
|
114
|
+
<svg:svg width="300" height="300" baseProfile="full" version="1.1"></svg:svg>
|
|
115
|
+
</body>
|
|
116
|
+
</html>
|
|
117
|
+
|
|
118
|
+
* __Mozilla Firefox (1.5 and nightly) on Mac__ will not render
|
|
119
|
+
``text`` elements when inlined. Note that it does for Linux and Windows.
|
|
120
|
+
|
|
121
|
+
* __Opera 9__ will refuse to draw an element if attribute ``filter``
|
|
122
|
+
is defined.
|
|
123
|
+
|
|
124
|
+
* __Internet Explorer 7b2p + ASV__ will not work with the Adobe SVG Viewer.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
Disclaimer
|
|
128
|
+
==========
|
|
129
|
+
|
|
130
|
+
The above is presented as-is with my own findings. There may be
|
|
131
|
+
errors. Please do not use this to base your multi-million dollar
|
|
132
|
+
business decisions.
|
|
133
|
+
|
|
134
|
+
Contact
|
|
135
|
+
=======
|
|
136
|
+
|
|
137
|
+
If you have anything to add or modify, please contact me at
|
|
138
|
+
<alastair@liquidx.net>.
|
|
139
|
+
|
|
140
|
+
[WHATWG]: http://whatwg.org/specs/web-apps/current-work/
|
|
141
|
+
|
|
142
|
+
{% endfilter %}
|
|
143
|
+
</div>
|
|
144
|
+
{% endblock %}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
.doc h1 {
|
|
2
|
+
color: #335577;
|
|
3
|
+
padding-bottom: 5px;
|
|
4
|
+
border-bottom: 1px solid #ccc;
|
|
5
|
+
display: block;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.doc h2 {
|
|
9
|
+
font-size: medium;
|
|
10
|
+
padding-left: 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.doc h3 {
|
|
14
|
+
padding-left: 0;
|
|
15
|
+
font-size: medium;
|
|
16
|
+
color: #666;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.doc ul {
|
|
20
|
+
padding-left: 10px;
|
|
21
|
+
margin-left: 10px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.api li {
|
|
25
|
+
display: block;
|
|
26
|
+
border: 1px solid #eee;
|
|
27
|
+
background-color: #f9f9f9;
|
|
28
|
+
padding: 2px;
|
|
29
|
+
padding-left: 5px;
|
|
30
|
+
list-style: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.doc thead td {
|
|
34
|
+
border-bottom: 1px solid #eee;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.doc thead td, .doc thead th {
|
|
38
|
+
text-align: left;
|
|
39
|
+
font-weight: bold;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.doc tbody th {
|
|
43
|
+
text-align: left;
|
|
44
|
+
font-weight: bold;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.doc th, .doc td {
|
|
48
|
+
vertical-align: top;
|
|
49
|
+
padding: 4px;
|
|
50
|
+
margin: 0;
|
|
51
|
+
font-size: 9px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.doc pre {
|
|
55
|
+
border: 1px solid #f0f0f0;
|
|
56
|
+
background-color: #f9f9ff;
|
|
57
|
+
padding: 4px;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.doc .demo {
|
|
61
|
+
padding-bottom: 20px;
|
|
62
|
+
}
|