rubyvis 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +8 -1
- data/Manifest.txt +100 -416
- data/README.txt +5 -2
- data/examples/barley/barley.rb +79 -0
- data/examples/crimea/crimea.rb +37 -0
- data/examples/crimea/crimea_line.rb +47 -0
- data/examples/second.rb +2 -2
- data/examples/third.rb +16 -0
- data/lib/rubyvis.rb +2 -1
- data/lib/rubyvis/color/color.rb +170 -169
- data/lib/rubyvis/color/colors.rb +4 -4
- data/lib/rubyvis/color/ramp.rb +1 -0
- data/lib/rubyvis/format.rb +2 -2
- data/lib/rubyvis/format/date.rb +9 -2
- data/lib/rubyvis/format/number.rb +3 -3
- data/lib/rubyvis/internals.rb +13 -13
- data/lib/rubyvis/javascript_behaviour.rb +3 -3
- data/lib/rubyvis/label.rb +1 -0
- data/lib/rubyvis/mark.rb +178 -169
- data/lib/rubyvis/mark/anchor.rb +4 -4
- data/lib/rubyvis/mark/area.rb +93 -5
- data/lib/rubyvis/mark/bar.rb +1 -1
- data/lib/rubyvis/mark/label.rb +2 -2
- data/lib/rubyvis/mark/line.rb +11 -5
- data/lib/rubyvis/mark/panel.rb +13 -11
- data/lib/rubyvis/mark/rule.rb +2 -2
- data/lib/rubyvis/property.rb +3 -2
- data/lib/rubyvis/scale.rb +4 -4
- data/lib/rubyvis/scale/linear.rb +2 -2
- data/lib/rubyvis/scale/ordinal.rb +41 -41
- data/lib/rubyvis/scale/quantitative.rb +212 -200
- data/lib/rubyvis/scene/svg_bar.rb +21 -21
- data/lib/rubyvis/scene/svg_label.rb +34 -34
- data/lib/rubyvis/scene/svg_line.rb +185 -0
- data/lib/rubyvis/scene/svg_panel.rb +36 -30
- data/lib/rubyvis/scene/svg_rule.rb +18 -19
- data/lib/rubyvis/scene/svg_scene.rb +33 -30
- data/lib/rubyvis/sceneelement.rb +5 -1
- data/lib/rubyvis/transform.rb +2 -2
- data/spec/mark_spec.rb +6 -6
- data/spec/scale_linear_datetime_spec.rb +52 -0
- data/spec/scale_linear_spec.rb +0 -10
- data/vendor/{protovis-r3.3.js → protovis/protovis-r3.3.js} +0 -0
- data/vendor/{src → protovis/src}/behavior/Behavior.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Drag.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Pan.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Point.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Resize.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Select.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Zoom.js +0 -0
- data/vendor/{src → protovis/src}/color/Color.js +0 -0
- data/vendor/{src → protovis/src}/color/Colors.js +0 -0
- data/vendor/{src → protovis/src}/color/Ramp.js +0 -0
- data/vendor/{src → protovis/src}/data/Arrays.js +0 -0
- data/vendor/{src → protovis/src}/data/Dom.js +0 -0
- data/vendor/{src → protovis/src}/data/Flatten.js +0 -0
- data/vendor/{src → protovis/src}/data/Histogram.js +0 -0
- data/vendor/{src → protovis/src}/data/LinearScale.js +0 -0
- data/vendor/{src → protovis/src}/data/LogScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Nest.js +0 -0
- data/vendor/{src → protovis/src}/data/Numbers.js +0 -0
- data/vendor/{src → protovis/src}/data/Objects.js +0 -0
- data/vendor/{src → protovis/src}/data/OrdinalScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantileScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantitativeScale.js +0 -0
- data/vendor/{src → protovis/src}/data/RootScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Scale.js +0 -0
- data/vendor/{src → protovis/src}/data/Transform.js +0 -0
- data/vendor/{src → protovis/src}/data/Tree.js +0 -0
- data/vendor/{src → protovis/src}/data/Vector.js +0 -0
- data/vendor/{src → protovis/src}/geo/Geo.js +0 -0
- data/vendor/{src → protovis/src}/geo/GeoScale.js +0 -0
- data/vendor/{src → protovis/src}/geo/LatLng.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projection.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projections.js +0 -0
- data/vendor/{src → protovis/src}/lang/Array.js +0 -0
- data/vendor/{src → protovis/src}/lang/init.js +0 -0
- data/vendor/{src → protovis/src}/layout/Arc.js +0 -0
- data/vendor/{src → protovis/src}/layout/Bullet.js +0 -0
- data/vendor/{src → protovis/src}/layout/Cluster.js +0 -0
- data/vendor/{src → protovis/src}/layout/Force.js +0 -0
- data/vendor/{src → protovis/src}/layout/Grid.js +0 -0
- data/vendor/{src → protovis/src}/layout/Hierarchy.js +0 -0
- data/vendor/{src → protovis/src}/layout/Horizon.js +0 -0
- data/vendor/{src → protovis/src}/layout/Indent.js +0 -0
- data/vendor/{src → protovis/src}/layout/Layout.js +0 -0
- data/vendor/{src → protovis/src}/layout/Matrix.js +0 -0
- data/vendor/{src → protovis/src}/layout/Network.js +0 -0
- data/vendor/{src → protovis/src}/layout/Pack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Partition.js +0 -0
- data/vendor/{src → protovis/src}/layout/Rollup.js +0 -0
- data/vendor/{src → protovis/src}/layout/Stack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Tree.js +0 -0
- data/vendor/{src → protovis/src}/layout/Treemap.js +0 -0
- data/vendor/{src → protovis/src}/mark/Anchor.js +0 -0
- data/vendor/{src → protovis/src}/mark/Area.js +0 -0
- data/vendor/{src → protovis/src}/mark/Bar.js +0 -0
- data/vendor/{src → protovis/src}/mark/Dot.js +0 -0
- data/vendor/{src → protovis/src}/mark/Ease.js +0 -0
- data/vendor/{src → protovis/src}/mark/Image.js +0 -0
- data/vendor/{src → protovis/src}/mark/Label.js +0 -0
- data/vendor/{src → protovis/src}/mark/Line.js +0 -0
- data/vendor/{src → protovis/src}/mark/Mark.js +0 -0
- data/vendor/{src → protovis/src}/mark/Panel.js +0 -0
- data/vendor/{src → protovis/src}/mark/Rule.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transient.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transition.js +0 -0
- data/vendor/{src → protovis/src}/mark/Wedge.js +0 -0
- data/vendor/{src → protovis/src}/physics/BoundConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/ChargeForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/CollisionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Constraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/DragForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/Force.js +0 -0
- data/vendor/{src → protovis/src}/physics/Particle.js +0 -0
- data/vendor/{src → protovis/src}/physics/PositionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Quadtree.js +0 -0
- data/vendor/{src → protovis/src}/physics/Simulation.js +0 -0
- data/vendor/{src → protovis/src}/physics/SpringForce.js +0 -0
- data/vendor/{src → protovis/src}/pv-internals.js +0 -0
- data/vendor/{src → protovis/src}/pv.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgArea.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgBar.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgCurve.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgDot.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgImage.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLabel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLine.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgPanel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgRule.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgScene.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgWedge.js +0 -0
- data/vendor/{src → protovis/src}/text/DateFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/Format.js +0 -0
- data/vendor/{src → protovis/src}/text/NumberFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/TimeFormat.js +0 -0
- metadata +132 -426
- metadata.gz.sig +2 -0
- data/examples/crimea-line.rb +0 -64
- data/vendor/FUTURE +0 -62
- data/vendor/Makefile +0 -138
- data/vendor/TODO +0 -22
- data/vendor/examples/antibiotics/antibiotics-scatter.html +0 -113
- data/vendor/examples/antibiotics/antibiotics.html +0 -140
- data/vendor/examples/antibiotics/antibiotics.js +0 -20
- data/vendor/examples/barley/barley.html +0 -102
- data/vendor/examples/barley/barley.js +0 -122
- data/vendor/examples/cars/cars.html +0 -90
- data/vendor/examples/cars/cars.js +0 -408
- data/vendor/examples/clock/clock.html +0 -91
- data/vendor/examples/crimea/crimea-grouped-bar.html +0 -65
- data/vendor/examples/crimea/crimea-line.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-area.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-bar.html +0 -60
- data/vendor/examples/crimea/crimea.html +0 -100
- data/vendor/examples/crimea/crimea.js +0 -33
- data/vendor/examples/downloadify/LICENSE.txt +0 -22
- data/vendor/examples/downloadify/download.png +0 -0
- data/vendor/examples/downloadify/downloadify.html +0 -57
- data/vendor/examples/downloadify/downloadify.min.js +0 -3
- data/vendor/examples/downloadify/downloadify.swf +0 -0
- data/vendor/examples/downloadify/swfobject.js +0 -4
- data/vendor/examples/ex.css +0 -17
- data/vendor/examples/eyes/eyes.html +0 -53
- data/vendor/examples/eyes/matrix.html +0 -44
- data/vendor/examples/flowers/flowers.html +0 -109
- data/vendor/examples/flowers/flowers.js +0 -154
- data/vendor/examples/group-stack/group-stack.html +0 -79
- data/vendor/examples/group-stack/headcount.js +0 -23
- data/vendor/examples/hotel/hotel.html +0 -76
- data/vendor/examples/hotel/hotel.js +0 -245
- data/vendor/examples/jobs/jobs.html +0 -71
- data/vendor/examples/jobs/jobs.js +0 -1024
- data/vendor/examples/jquery-1.4.2.min.js +0 -154
- data/vendor/examples/nba/nba.html +0 -83
- data/vendor/examples/nba/nba.js +0 -53
- data/vendor/examples/nba/nba2.html +0 -82
- data/vendor/examples/sankey/gdp2009.js +0 -184
- data/vendor/examples/sankey/sankey.html +0 -77
- data/vendor/examples/slider/cell.html +0 -112
- data/vendor/examples/slider/cell.js +0 -31
- data/vendor/examples/slider/horizon.html +0 -85
- data/vendor/examples/slider/jquery-ui-1.8rc3.custom.min.js +0 -71
- data/vendor/examples/slider/slider.html +0 -50
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-icons_222222_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/jquery-ui-1.8rc3.custom.css +0 -302
- data/vendor/examples/tipsy/jquery.tipsy.js +0 -198
- data/vendor/examples/tipsy/tipsy-bar.html +0 -65
- data/vendor/examples/tipsy/tipsy-line.html +0 -67
- data/vendor/examples/tipsy/tipsy.css +0 -12
- data/vendor/examples/tipsy/tipsy.gif +0 -0
- data/vendor/examples/tipsy/tipsy.js +0 -66
- data/vendor/examples/weather/weather.html +0 -86
- data/vendor/examples/weather/weather.js +0 -42
- data/vendor/examples/wheat/wheat.html +0 -130
- data/vendor/examples/wheat/wheat.js +0 -70
- data/vendor/lib/google-compiler/COPYING +0 -202
- data/vendor/lib/google-compiler/README +0 -224
- data/vendor/lib/google-compiler/compiler-20100201.jar +0 -0
- data/vendor/protovis-d3.3.js +0 -15726
- data/vendor/test1.html +0 -30
- data/vendor/tests/behavior/drag-events.html +0 -47
- data/vendor/tests/behavior/drag.html +0 -32
- data/vendor/tests/behavior/drag2.html +0 -33
- data/vendor/tests/behavior/point-area-stacked.html +0 -73
- data/vendor/tests/behavior/point-area-stacked2.html +0 -70
- data/vendor/tests/behavior/point-area.html +0 -67
- data/vendor/tests/behavior/point-bar.html +0 -62
- data/vendor/tests/behavior/point-dot.html +0 -60
- data/vendor/tests/behavior/point-line.html +0 -62
- data/vendor/tests/behavior/point-lines-grid.html +0 -65
- data/vendor/tests/behavior/point-lines.html +0 -61
- data/vendor/tests/behavior/point-wedge.html +0 -43
- data/vendor/tests/behavior/resize.html +0 -69
- data/vendor/tests/behavior/select.html +0 -37
- data/vendor/tests/bzr.js +0 -62
- data/vendor/tests/center.js +0 -13
- data/vendor/tests/data/deviation.html +0 -54
- data/vendor/tests/data/histogram-discrete.html +0 -50
- data/vendor/tests/data/histogram.html +0 -56
- data/vendor/tests/data/log-adjusted.html +0 -48
- data/vendor/tests/data/log-ceil.html +0 -48
- data/vendor/tests/data/log-floor.html +0 -48
- data/vendor/tests/data/log-symmetric.html +0 -48
- data/vendor/tests/data/log.html +0 -48
- data/vendor/tests/data/max-index.html +0 -36
- data/vendor/tests/data/max.html +0 -36
- data/vendor/tests/data/min-index.html +0 -36
- data/vendor/tests/data/min.html +0 -36
- data/vendor/tests/data/ordinal-split-banded.html +0 -45
- data/vendor/tests/data/ordinal-split-banded2.html +0 -45
- data/vendor/tests/data/ordinal-split-flush.html +0 -51
- data/vendor/tests/data/ordinal-split.html +0 -51
- data/vendor/tests/data/range.html +0 -105
- data/vendor/tests/data/scale-date.html +0 -46
- data/vendor/tests/data/scale-date2.html +0 -38
- data/vendor/tests/data/scale-date3.html +0 -38
- data/vendor/tests/data/scale-date4.html +0 -38
- data/vendor/tests/data/scale-degenerate.html +0 -143
- data/vendor/tests/data/scale-linear.html +0 -59
- data/vendor/tests/data/scale-log.html +0 -60
- data/vendor/tests/data/scale-log2.html +0 -60
- data/vendor/tests/data/scale-log3.html +0 -60
- data/vendor/tests/data/scale-log4.html +0 -60
- data/vendor/tests/data/scale-log5.html +0 -60
- data/vendor/tests/data/scale-log6.html +0 -60
- data/vendor/tests/data/scale-quantile.html +0 -47
- data/vendor/tests/data/scale-quantile2.html +0 -50
- data/vendor/tests/data/scale-quantile3.html +0 -48
- data/vendor/tests/data/scale-root.html +0 -60
- data/vendor/tests/data/scale-root2.html +0 -39
- data/vendor/tests/data/scale-tick-format.html +0 -54
- data/vendor/tests/data/scale-ticks.html +0 -45
- data/vendor/tests/data/sum.html +0 -42
- data/vendor/tests/data/variance.html +0 -42
- data/vendor/tests/diamond.js +0 -40
- data/vendor/tests/flare-imports.js +0 -222
- data/vendor/tests/flare.js +0 -284
- data/vendor/tests/geo/countries-hires.js +0 -257
- data/vendor/tests/geo/countries-lores.js +0 -197
- data/vendor/tests/geo/population.js +0 -250
- data/vendor/tests/geo/scale-aitoff.html +0 -58
- data/vendor/tests/geo/scale-gall-peters.html +0 -56
- data/vendor/tests/geo/scale-hammer.html +0 -58
- data/vendor/tests/geo/scale-identity.html +0 -56
- data/vendor/tests/geo/scale-mercator.html +0 -56
- data/vendor/tests/geo/scale-sinusoidal.html +0 -57
- data/vendor/tests/geo/scale-smart-domain.html +0 -58
- data/vendor/tests/geo/scale.html +0 -55
- data/vendor/tests/geo/scale2.html +0 -40
- data/vendor/tests/geo/us-states.js +0 -61
- data/vendor/tests/heatmap.js +0 -63
- data/vendor/tests/lang/globals.html +0 -41
- data/vendor/tests/lang/init.html +0 -31
- data/vendor/tests/layers.js +0 -28
- data/vendor/tests/layout/arc-directed.html +0 -33
- data/vendor/tests/layout/arc-radial.html +0 -36
- data/vendor/tests/layout/arc-undirected.html +0 -32
- data/vendor/tests/layout/arc.html +0 -33
- data/vendor/tests/layout/arc2.html +0 -32
- data/vendor/tests/layout/bullet-multiples.html +0 -60
- data/vendor/tests/layout/bullet.html +0 -45
- data/vendor/tests/layout/bullets.js +0 -37
- data/vendor/tests/layout/cluster-fill-group.html +0 -24
- data/vendor/tests/layout/cluster-fill.html +0 -28
- data/vendor/tests/layout/cluster-partition-radial-fill.html +0 -43
- data/vendor/tests/layout/cluster-radial-fill-radius.html +0 -26
- data/vendor/tests/layout/cluster-radial-fill.html +0 -29
- data/vendor/tests/layout/cluster-radial-group-fill.html +0 -30
- data/vendor/tests/layout/cluster-radial-radius.html +0 -30
- data/vendor/tests/layout/cluster-radial.html +0 -28
- data/vendor/tests/layout/cluster-radial2.html +0 -33
- data/vendor/tests/layout/cluster.html +0 -34
- data/vendor/tests/layout/cluster2.html +0 -32
- data/vendor/tests/layout/force-toggle.html +0 -46
- data/vendor/tests/layout/force.html +0 -45
- data/vendor/tests/layout/force2.html +0 -58
- data/vendor/tests/layout/force3.html +0 -41
- data/vendor/tests/layout/force4.html +0 -45
- data/vendor/tests/layout/force5.html +0 -53
- data/vendor/tests/layout/grid-cols.html +0 -31
- data/vendor/tests/layout/grid-heatmap.html +0 -25
- data/vendor/tests/layout/grid-rows.html +0 -31
- data/vendor/tests/layout/grid.html +0 -34
- data/vendor/tests/layout/horizon-color.html +0 -31
- data/vendor/tests/layout/horizon.html +0 -31
- data/vendor/tests/layout/indent-toggle.html +0 -62
- data/vendor/tests/layout/indent.html +0 -25
- data/vendor/tests/layout/indent2.html +0 -33
- data/vendor/tests/layout/matrix-sort.html +0 -28
- data/vendor/tests/layout/matrix.html +0 -35
- data/vendor/tests/layout/network.html +0 -43
- data/vendor/tests/layout/pack-bubble.html +0 -45
- data/vendor/tests/layout/pack.html +0 -26
- data/vendor/tests/layout/pack2.html +0 -32
- data/vendor/tests/layout/partition-fill.html +0 -27
- data/vendor/tests/layout/partition-fill2.html +0 -22
- data/vendor/tests/layout/partition-fill3.html +0 -27
- data/vendor/tests/layout/partition-radial-fill-radius.html +0 -25
- data/vendor/tests/layout/partition-radial-fill.html +0 -26
- data/vendor/tests/layout/partition-radial-fill2.html +0 -23
- data/vendor/tests/layout/partition-radial-fill3.html +0 -29
- data/vendor/tests/layout/partition-radial-radius.html +0 -29
- data/vendor/tests/layout/partition-radial.html +0 -30
- data/vendor/tests/layout/partition-radial2.html +0 -33
- data/vendor/tests/layout/partition.html +0 -33
- data/vendor/tests/layout/partition2.html +0 -32
- data/vendor/tests/layout/rollup.html +0 -50
- data/vendor/tests/layout/stack-empty.html +0 -27
- data/vendor/tests/layout/stack-expand.html +0 -41
- data/vendor/tests/layout/stack-reverse.html +0 -42
- data/vendor/tests/layout/stack-right.html +0 -42
- data/vendor/tests/layout/stack-rule.html +0 -61
- data/vendor/tests/layout/stack-visible.html +0 -43
- data/vendor/tests/layout/stack.html +0 -53
- data/vendor/tests/layout/tree-radial.html +0 -31
- data/vendor/tests/layout/tree-radial2.html +0 -34
- data/vendor/tests/layout/tree-toggle.html +0 -36
- data/vendor/tests/layout/tree.html +0 -31
- data/vendor/tests/layout/tree2.html +0 -35
- data/vendor/tests/layout/treemap-hierarchy.html +0 -40
- data/vendor/tests/layout/treemap-margin.html +0 -26
- data/vendor/tests/layout/treemap-round.html +0 -40
- data/vendor/tests/layout/treemap-slice.html +0 -34
- data/vendor/tests/layout/treemap.html +0 -37
- data/vendor/tests/life.js +0 -212
- data/vendor/tests/mark/anchor.html +0 -25
- data/vendor/tests/mark/area-anchor-chain.html +0 -42
- data/vendor/tests/mark/area-anchor-line.html +0 -57
- data/vendor/tests/mark/area-anchor-stack.html +0 -35
- data/vendor/tests/mark/area-anchor.html +0 -43
- data/vendor/tests/mark/area-anchor2.html +0 -33
- data/vendor/tests/mark/area-cardinal.html +0 -57
- data/vendor/tests/mark/area-monotone.html +0 -57
- data/vendor/tests/mark/area-segmented-basis.html +0 -30
- data/vendor/tests/mark/area-segmented-cardinal.html +0 -30
- data/vendor/tests/mark/area-segmented-monotone.html +0 -30
- data/vendor/tests/mark/area-segmented-step.html +0 -44
- data/vendor/tests/mark/area-segmented.html +0 -29
- data/vendor/tests/mark/area-stacked-cardinal.html +0 -54
- data/vendor/tests/mark/area-stacked-monotone.html +0 -54
- data/vendor/tests/mark/area-stacked.html +0 -53
- data/vendor/tests/mark/area-step.html +0 -43
- data/vendor/tests/mark/area-zero.html +0 -32
- data/vendor/tests/mark/area.html +0 -57
- data/vendor/tests/mark/bar-anchor-stack.html +0 -51
- data/vendor/tests/mark/bar-anchor.html +0 -44
- data/vendor/tests/mark/bar-column-grouped.html +0 -63
- data/vendor/tests/mark/bar-column-stacked.html +0 -56
- data/vendor/tests/mark/bar-column.html +0 -54
- data/vendor/tests/mark/bar-grouped.html +0 -63
- data/vendor/tests/mark/bar-stacked.html +0 -57
- data/vendor/tests/mark/bar.html +0 -54
- data/vendor/tests/mark/cursor.html +0 -41
- data/vendor/tests/mark/def-type.html +0 -23
- data/vendor/tests/mark/dot-anchor.html +0 -33
- data/vendor/tests/mark/dot-radius.html +0 -22
- data/vendor/tests/mark/dot-stroke.html +0 -43
- data/vendor/tests/mark/dot.html +0 -52
- data/vendor/tests/mark/dot2.html +0 -61
- data/vendor/tests/mark/ease.html +0 -90
- data/vendor/tests/mark/event-dblclick.html +0 -30
- data/vendor/tests/mark/event-prototype.html +0 -45
- data/vendor/tests/mark/event-render.html +0 -45
- data/vendor/tests/mark/event.html +0 -24
- data/vendor/tests/mark/image-color-inherit.html +0 -33
- data/vendor/tests/mark/image-color.html +0 -35
- data/vendor/tests/mark/image-color2.html +0 -35
- data/vendor/tests/mark/image-heatmap.html +0 -29
- data/vendor/tests/mark/image.html +0 -32
- data/vendor/tests/mark/label-break.html +0 -54
- data/vendor/tests/mark/label-decoration.html +0 -22
- data/vendor/tests/mark/label-events.html +0 -32
- data/vendor/tests/mark/line-anchor.html +0 -42
- data/vendor/tests/mark/line-basis.html +0 -54
- data/vendor/tests/mark/line-brownian.html +0 -57
- data/vendor/tests/mark/line-cardinal.html +0 -77
- data/vendor/tests/mark/line-catmull-rom.html +0 -78
- data/vendor/tests/mark/line-curve.html +0 -65
- data/vendor/tests/mark/line-eccentricity.html +0 -39
- data/vendor/tests/mark/line-fill.html +0 -24
- data/vendor/tests/mark/line-join.html +0 -51
- data/vendor/tests/mark/line-monotone-non-monotone.html +0 -53
- data/vendor/tests/mark/line-monotone-two-way.html +0 -61
- data/vendor/tests/mark/line-monotone.html +0 -53
- data/vendor/tests/mark/line-polar.html +0 -36
- data/vendor/tests/mark/line-segmented-basis.html +0 -57
- data/vendor/tests/mark/line-segmented-cardinal.html +0 -80
- data/vendor/tests/mark/line-segmented-join.html +0 -52
- data/vendor/tests/mark/line-segmented-monotone.html +0 -56
- data/vendor/tests/mark/line-segmented-polar.html +0 -30
- data/vendor/tests/mark/line-segmented-step.html +0 -41
- data/vendor/tests/mark/line-segmented-step2.html +0 -32
- data/vendor/tests/mark/line-segmented.html +0 -30
- data/vendor/tests/mark/line-step.html +0 -39
- data/vendor/tests/mark/line-tension.html +0 -59
- data/vendor/tests/mark/line.html +0 -51
- data/vendor/tests/mark/panel-anchor.html +0 -37
- data/vendor/tests/mark/panel-anchor2.html +0 -31
- data/vendor/tests/mark/panel-anchor3.html +0 -22
- data/vendor/tests/mark/panel-anchor4.html +0 -28
- data/vendor/tests/mark/panel-anchor5.html +0 -28
- data/vendor/tests/mark/panel-append.html +0 -29
- data/vendor/tests/mark/panel-canvas.html +0 -107
- data/vendor/tests/mark/panel-fill.html +0 -50
- data/vendor/tests/mark/panel-mouse.html +0 -53
- data/vendor/tests/mark/panel-transform.html +0 -67
- data/vendor/tests/mark/property-cast.html +0 -24
- data/vendor/tests/mark/render-partial.html +0 -42
- data/vendor/tests/mark/rule-anchor.html +0 -29
- data/vendor/tests/mark/title.html +0 -41
- data/vendor/tests/mark/transition-anchor.html +0 -47
- data/vendor/tests/mark/transition-wedge.html +0 -47
- data/vendor/tests/mark/transition.html +0 -106
- data/vendor/tests/mark/wedge-donut.html +0 -35
- data/vendor/tests/mark/wedge-implied.html +0 -42
- data/vendor/tests/mark/wedge-pie.html +0 -37
- data/vendor/tests/mark/wedge-ring.html +0 -27
- data/vendor/tests/miserables.js +0 -348
- data/vendor/tests/physics/dorling.html +0 -70
- data/vendor/tests/physics/simulation.html +0 -56
- data/vendor/tests/social.js +0 -28
- data/vendor/tests/stanford.png +0 -0
- data/vendor/tests/style.css +0 -5
- data/vendor/tests/testify.css +0 -29
- data/vendor/tests/testify.js +0 -16
- data/vendor/tests/text/format-number.html +0 -75
@@ -1,77 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>GDP of the World</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<script type="text/javascript" src="gdp2009.js"></script>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<script type="text/javascript+protovis">
|
9
|
-
var top20 = [];
|
10
|
-
for(var i = 0; i < 20; i++) {
|
11
|
-
top20.push(gdp2009[i]);
|
12
|
-
}
|
13
|
-
|
14
|
-
// define the data
|
15
|
-
var data = top20;
|
16
|
-
var text = function(d) d.name;
|
17
|
-
var value = function(d) d.gdp;
|
18
|
-
|
19
|
-
|
20
|
-
var prev = 0,
|
21
|
-
sum = 0,
|
22
|
-
hdif = [];
|
23
|
-
for(var i = 0; i < data.length; i++) {
|
24
|
-
sum += value(data[i]);
|
25
|
-
hdif.push((sum + prev) / 2);
|
26
|
-
prev = sum;
|
27
|
-
}
|
28
|
-
|
29
|
-
var w = 700,
|
30
|
-
h = 800,
|
31
|
-
lMargin = 50,
|
32
|
-
rMargin = 230,
|
33
|
-
baseWidth = 400,
|
34
|
-
scale = 1.9,
|
35
|
-
steps = [0, 0.2, 0.8, 1],
|
36
|
-
x = pv.Scale.linear(steps).range(lMargin, w-rMargin),
|
37
|
-
ws = pv.Scale.linear(0, sum).range(0, baseWidth),
|
38
|
-
h0 = pv.Scale.linear(0, sum).range(-baseWidth/2, baseWidth/2),
|
39
|
-
h1 = pv.Scale.linear(0, sum).range(-scale*baseWidth/2, scale*baseWidth/2);
|
40
|
-
|
41
|
-
var vis = new pv.Panel()
|
42
|
-
.width(w)
|
43
|
-
.height(h)
|
44
|
-
.strokeStyle("#ccc")
|
45
|
-
.margin(20);
|
46
|
-
|
47
|
-
vis.add(pv.Panel)
|
48
|
-
.data(hdif)
|
49
|
-
.add(pv.Line)
|
50
|
-
.data(steps)
|
51
|
-
.left(x)
|
52
|
-
.bottom(function(step, val) h/2 - ((this.index < 2)?h0(val):h1(val)))
|
53
|
-
.lineWidth(function() ws(value(data[this.parent.index])))
|
54
|
-
.interpolate("monotone");
|
55
|
-
|
56
|
-
vis.add(pv.Label)
|
57
|
-
.left(x(0))
|
58
|
-
.bottom(h/2)
|
59
|
-
.textBaseline("middle")
|
60
|
-
.textAlign("right")
|
61
|
-
.font("18px sans-serif")
|
62
|
-
.text("All");
|
63
|
-
|
64
|
-
vis.add(pv.Label)
|
65
|
-
.data(hdif)
|
66
|
-
.left(x(1))
|
67
|
-
.bottom(function(val) h/2 - h1(val))
|
68
|
-
.textBaseline("middle")
|
69
|
-
.textAlign("left")
|
70
|
-
.font(function() (6*Math.log(ws(value(data[this.index])))).toFixed(0) + "px sans-serif")
|
71
|
-
.text(function() text(data[this.index]));
|
72
|
-
|
73
|
-
vis.render();
|
74
|
-
|
75
|
-
</script>
|
76
|
-
</body>
|
77
|
-
</html>
|
@@ -1,112 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Automaton Explorer</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<script type="text/javascript" src="../jquery-1.4.2.min.js"></script>
|
6
|
-
<script type="text/javascript" src="jquery-ui-1.8rc3.custom.min.js"></script>
|
7
|
-
<script type="text/javascript" src="cell.js"></script>
|
8
|
-
<link type="text/css" href="ui-lightness/jquery-ui-1.8rc3.custom.css" rel="stylesheet"/>
|
9
|
-
<link type="text/css" href="../../tests/style.css" rel="stylesheet"/>
|
10
|
-
<style type="text/css">
|
11
|
-
|
12
|
-
.ui-slider {
|
13
|
-
font-size: 10px;
|
14
|
-
width: 300px;
|
15
|
-
margin-top: 5px;
|
16
|
-
}
|
17
|
-
|
18
|
-
sup, sub {
|
19
|
-
line-height: 0;
|
20
|
-
}
|
21
|
-
|
22
|
-
.ui-state-focus {
|
23
|
-
outline: none;
|
24
|
-
}
|
25
|
-
|
26
|
-
#slider {
|
27
|
-
width: 300px;
|
28
|
-
display: inline-block;
|
29
|
-
margin-left: 10px;
|
30
|
-
margin-right: 10px;
|
31
|
-
}
|
32
|
-
|
33
|
-
</style>
|
34
|
-
</head>
|
35
|
-
<body>
|
36
|
-
<h3>Automaton Explorer</h3>
|
37
|
-
<div style="width:8in;">
|
38
|
-
rule: <span id="slider"></span><span id="rule">30</span>
|
39
|
-
<span style="float:right;">
|
40
|
-
start: <input type="radio" checked id="point" name="start" value="point">
|
41
|
-
<label for="point">point</label>
|
42
|
-
<input type="radio" id="random" name="start" value="random">
|
43
|
-
<label for="random">random</label>
|
44
|
-
</span>
|
45
|
-
</div><p>
|
46
|
-
<script type="text/javascript+protovis">
|
47
|
-
|
48
|
-
var h = 128,
|
49
|
-
w = h << 1,
|
50
|
-
start = "point",
|
51
|
-
rule = 30;
|
52
|
-
|
53
|
-
var vis = new pv.Panel()
|
54
|
-
.width(w * 3)
|
55
|
-
.height(h * 3)
|
56
|
-
.top(40);
|
57
|
-
|
58
|
-
vis.add(pv.Panel)
|
59
|
-
.data(pv.range(8))
|
60
|
-
.right(function(i) (i + .5) * w * 3 / 8)
|
61
|
-
.top(-35)
|
62
|
-
.event("mousedown", function(i)
|
63
|
-
($("#rule").html(rule ^= 1 << i),
|
64
|
-
$(slider).slider('value', rule),
|
65
|
-
vis))
|
66
|
-
.add(pv.Bar)
|
67
|
-
.top(10)
|
68
|
-
.right(-5)
|
69
|
-
.width(10)
|
70
|
-
.height(10)
|
71
|
-
.title(function(j, i) "Toggle bit " + i + ".")
|
72
|
-
.strokeStyle("#bbb")
|
73
|
-
.fillStyle(function(i) rule >> i & 1 ? "#000" : "#fff")
|
74
|
-
.add(pv.Bar)
|
75
|
-
.data(pv.range(3))
|
76
|
-
.top(0)
|
77
|
-
.right(function(i) i * 10 - 15)
|
78
|
-
.fillStyle(function(i, j) j >> i & 1 ? "#000" : "#fff");
|
79
|
-
|
80
|
-
vis.add(pv.Image)
|
81
|
-
.def("cell", cell)
|
82
|
-
.imageWidth(w)
|
83
|
-
.imageHeight(h)
|
84
|
-
.image(pv.colors("#fff", "#000").by(function(x, y) this.cell()[y][x]));
|
85
|
-
|
86
|
-
vis.render();
|
87
|
-
|
88
|
-
$(slider).slider({
|
89
|
-
min: 1, value: 30, max: 255, slide: function(e, ui) {
|
90
|
-
$("#rule").html(rule = ui.value);
|
91
|
-
vis.render();
|
92
|
-
}
|
93
|
-
});
|
94
|
-
|
95
|
-
$([point, random]).change(function() {
|
96
|
-
start = this.value;
|
97
|
-
vis.render();
|
98
|
-
});
|
99
|
-
|
100
|
-
</script>
|
101
|
-
|
102
|
-
<p>From <a href="http://mathworld.wolfram.com/CellularAutomaton.html">MathWorld</a>:
|
103
|
-
"A cellular automaton is a collection of 'colored' cells on a grid of
|
104
|
-
specified shape that evolves through a number of discrete time steps
|
105
|
-
according to a set of rules based on the states of neighboring cells." This
|
106
|
-
example explores binary, nearest-neighbor, one-dimensional automata, of
|
107
|
-
which there are 256 (2<sup>8</sup>) possible rules. The eight possible
|
108
|
-
outcomes for the current rule are shown across the top; click to toggle the
|
109
|
-
selected bit.
|
110
|
-
|
111
|
-
</body>
|
112
|
-
</html>
|
@@ -1,31 +0,0 @@
|
|
1
|
-
/** Depends on globals: rule, w, h, mode. */
|
2
|
-
function cell() {
|
3
|
-
var d = pv.range(h).map(function() {
|
4
|
-
return pv.range(w).map(function() { return 0; });
|
5
|
-
}),
|
6
|
-
r = pv.range(8).map(function(i) {
|
7
|
-
return rule >> i & 1;
|
8
|
-
});
|
9
|
-
if (start == "point") {
|
10
|
-
d[0][w >> 1] = 1;
|
11
|
-
} else {
|
12
|
-
for (var x = 0; x < w; x++) {
|
13
|
-
d[0][x] = cell.random(x);
|
14
|
-
}
|
15
|
-
}
|
16
|
-
for (var y = 1; y < h; y++) {
|
17
|
-
var p = d[y - 1], c = d[y];
|
18
|
-
for (var x = 0; x < w; x++) {
|
19
|
-
c[x] = r[p[x - 1] << 2 | p[x] << 1 | p[x + 1]];
|
20
|
-
}
|
21
|
-
}
|
22
|
-
return d;
|
23
|
-
}
|
24
|
-
|
25
|
-
cell.$random = {};
|
26
|
-
|
27
|
-
/** Caches random output to make exploration deterministic. */
|
28
|
-
cell.random = function(i) {
|
29
|
-
return i in cell.$random ? cell.$random[i]
|
30
|
-
: (cell.$random[i] = Math.random() < .5 ? 0 : 1);
|
31
|
-
};
|
@@ -1,85 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Horizon Explorer</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<script type="text/javascript" src="../jquery-1.4.2.min.js"></script>
|
6
|
-
<script type="text/javascript" src="jquery-ui-1.8rc3.custom.min.js"></script>
|
7
|
-
<link type="text/css" href="ui-lightness/jquery-ui-1.8rc3.custom.css" rel="stylesheet"/>
|
8
|
-
<link type="text/css" href="../../tests/style.css" rel="stylesheet"/>
|
9
|
-
<style type="text/css">
|
10
|
-
|
11
|
-
.ui-slider {
|
12
|
-
font-size: 10px;
|
13
|
-
width: 300px;
|
14
|
-
margin-top: 5px;
|
15
|
-
}
|
16
|
-
|
17
|
-
.ui-state-focus {
|
18
|
-
outline: none;
|
19
|
-
}
|
20
|
-
|
21
|
-
#slider {
|
22
|
-
width: 300px;
|
23
|
-
display: inline-block;
|
24
|
-
margin-left: 10px;
|
25
|
-
margin-right: 10px;
|
26
|
-
}
|
27
|
-
|
28
|
-
#bands {
|
29
|
-
display: inline-block;
|
30
|
-
width: 20px;
|
31
|
-
text-align: right;
|
32
|
-
}
|
33
|
-
|
34
|
-
</style>
|
35
|
-
</head>
|
36
|
-
<body>
|
37
|
-
<h3>Horizon Explorer</h3>
|
38
|
-
<div style="width:600px;">
|
39
|
-
bands: <span id="slider"></span><span id="bands">1</span>
|
40
|
-
<span style="float:right;">
|
41
|
-
mode: <input type="radio" id="mirror" name="mode" value="mirror">
|
42
|
-
<label for="mirror">mirror</label>
|
43
|
-
<input type="radio" checked id="offset" name="mode" value="offset">
|
44
|
-
<label for="offset">offset</label>
|
45
|
-
</span>
|
46
|
-
</div><p>
|
47
|
-
<script type="text/javascript+protovis">
|
48
|
-
|
49
|
-
var w = 600,
|
50
|
-
h = 70,
|
51
|
-
bands = 1,
|
52
|
-
mode = "offset",
|
53
|
-
data = pv.range(101).map(function(d) Math.sin(d / 2) + Math.sin(d / 7)),
|
54
|
-
x = pv.Scale.linear(data, pv.index).range(0, w).by(pv.index),
|
55
|
-
y = pv.Scale.linear(data).range(-h, h);
|
56
|
-
|
57
|
-
var vis = new pv.Panel()
|
58
|
-
.width(w)
|
59
|
-
.height(function() h / bands);
|
60
|
-
|
61
|
-
vis.add(pv.Layout.Horizon)
|
62
|
-
.bands(function() bands)
|
63
|
-
.mode(function() mode)
|
64
|
-
.band.add(pv.Area)
|
65
|
-
.data(data)
|
66
|
-
.left(x)
|
67
|
-
.height(y);
|
68
|
-
|
69
|
-
vis.render();
|
70
|
-
|
71
|
-
$(slider).slider({
|
72
|
-
min: 1, max: 10, slide: function(e, ui) {
|
73
|
-
$("#bands").html(bands = ui.value);
|
74
|
-
vis.render();
|
75
|
-
}
|
76
|
-
});
|
77
|
-
|
78
|
-
$([mirror, offset]).change(function() {
|
79
|
-
mode = this.value;
|
80
|
-
vis.render();
|
81
|
-
});
|
82
|
-
|
83
|
-
</script>
|
84
|
-
</body>
|
85
|
-
</html>
|
@@ -1,71 +0,0 @@
|
|
1
|
-
/*!
|
2
|
-
* jQuery UI 1.8rc3
|
3
|
-
*
|
4
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
5
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
6
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
7
|
-
*
|
8
|
-
* http://docs.jquery.com/UI
|
9
|
-
*/
|
10
|
-
* jQuery UI 1.8rc3
|
11
|
-
*
|
12
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
13
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
14
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
15
|
-
*
|
16
|
-
* http://docs.jquery.com/UI
|
17
|
-
*/
|
18
|
-
jQuery.ui||(function(b){var a=b.browser.mozilla&&(parseFloat(b.browser.version)<1.9);b.ui={version:"1.8rc3",plugin:{add:function(d,e,g){var f=b.ui[d].prototype;for(var c in g){f.plugins[c]=f.plugins[c]||[];f.plugins[c].push([e,g[c]])}},call:function(c,e,d){var g=c.plugins[e];if(!g||!c.element[0].parentNode){return}for(var f=0;f<g.length;f++){if(c.options[g[f][0]]){g[f][1].apply(c.element,d)}}}},contains:function(d,c){return document.compareDocumentPosition?d.compareDocumentPosition(c)&16:d!==c&&d.contains(c)},hasScroll:function(f,d){if(b(f).css("overflow")=="hidden"){return false}var c=(d&&d=="left")?"scrollLeft":"scrollTop",e=false;if(f[c]>0){return true}f[c]=1;e=(f[c]>0);f[c]=0;return e},isOverAxis:function(d,c,e){return(d>c)&&(d<(c+e))},isOver:function(h,d,g,f,c,e){return b.ui.isOverAxis(h,g,c)&&b.ui.isOverAxis(d,f,e)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};b.fn.extend({_focus:b.fn.focus,focus:function(c,d){return typeof c==="number"?this.each(function(){var e=this;setTimeout(function(){b(e).focus();(d&&d.call(e))},c)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var c;if((b.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){c=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(b.curCSS(this,"position",1))&&(/(auto|scroll)/).test(b.curCSS(this,"overflow",1)+b.curCSS(this,"overflow-y",1)+b.curCSS(this,"overflow-x",1))}).eq(0)}else{c=this.parents().filter(function(){return(/(auto|scroll)/).test(b.curCSS(this,"overflow",1)+b.curCSS(this,"overflow-y",1)+b.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!c.length?b(document):c},zIndex:function(f){if(f!==undefined){return this.css("zIndex",f)}if(this.length){var d=b(this[0]),c,e;while(d.length&&d[0]!==document){c=d.css("position");if(c=="absolute"||c=="relative"||c=="fixed"){e=parseInt(d.css("zIndex"));if(!isNaN(e)&&e!=0){return e}}d=d.parent()}}return 0}});b.extend(b.expr[":"],{data:function(e,d,c){return !!b.data(e,c[3])},focusable:function(d){var e=d.nodeName.toLowerCase(),c=b.attr(d,"tabindex");return(/input|select|textarea|button|object/.test(e)?!d.disabled:"a"==e||"area"==e?d.href||!isNaN(c):!isNaN(c))&&!b(d)["area"==e?"parents":"closest"](":hidden").length},tabbable:function(d){var c=b.attr(d,"tabindex");return(isNaN(c)||c>=0)&&b(d).is(":focusable")}})})(jQuery);;/*!
|
19
|
-
* jQuery UI Widget 1.8rc3
|
20
|
-
*
|
21
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
22
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
23
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
24
|
-
*
|
25
|
-
* http://docs.jquery.com/UI/Widget
|
26
|
-
*/
|
27
|
-
* jQuery UI Widget 1.8rc3
|
28
|
-
*
|
29
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
30
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
31
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
32
|
-
*
|
33
|
-
* http://docs.jquery.com/UI/Widget
|
34
|
-
*/
|
35
|
-
(function(b){var a=b.fn.remove;b.fn.remove=function(c,d){return this.each(function(){if(!d){if(!c||b.filter(c,[this]).length){b("*",this).add(this).each(function(){b(this).triggerHandler("remove")})}}return a.call(b(this),c,d)})};b.widget=function(d,f,c){var e=d.split(".")[0],h;d=d.split(".")[1];h=e+"-"+d;if(!c){c=f;f=b.Widget}b.expr[":"][h]=function(i){return !!b.data(i,d)};b[e]=b[e]||{};b[e][d]=function(i,j){if(arguments.length){this._createWidget(i,j)}};var g=new f();g.options=b.extend({},g.options);b[e][d].prototype=b.extend(true,g,{namespace:e,widgetName:d,widgetEventPrefix:b[e][d].prototype.widgetEventPrefix||d,widgetBaseClass:h},c);b.widget.bridge(d,b[e][d])};b.widget.bridge=function(d,c){b.fn[d]=function(g){var e=typeof g==="string",f=Array.prototype.slice.call(arguments,1),h=this;g=!e&&f.length?b.extend.apply(null,[true,g].concat(f)):g;if(e&&g.substring(0,1)==="_"){return h}if(e){this.each(function(){var i=b.data(this,d),j=i&&b.isFunction(i[g])?i[g].apply(i,f):i;if(j!==i&&j!==undefined){h=j;return false}})}else{this.each(function(){var i=b.data(this,d);if(i){if(g){i.option(g)}i._init()}else{b.data(this,d,new c(g,this))}})}return h}};b.Widget=function(c,d){if(arguments.length){this._createWidget(c,d)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(d,e){this.element=b(e).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(e)[this.widgetName],d);var c=this;this.element.bind("remove."+this.widgetName,function(){c.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled")},widget:function(){return this.element},option:function(e,f){var d=e,c=this;if(arguments.length===0){return b.extend({},c.options)}if(typeof e==="string"){if(f===undefined){return this.options[e]}d={};d[e]=f}b.each(d,function(g,h){c._setOption(g,h)});return c},_setOption:function(c,d){this.options[c]=d;if(c==="disabled"){this.widget()[d?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",d)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(d,e,f){var h=this.options[d];e=b.Event(e);e.type=(d===this.widgetEventPrefix?d:this.widgetEventPrefix+d).toLowerCase();f=f||{};if(e.originalEvent){for(var c=b.event.props.length,g;c;){g=b.event.props[--c];e[g]=e.originalEvent[g]}}this.element.trigger(e,f);return !(b.isFunction(h)&&h.call(this.element[0],e,f)===false||e.isDefaultPrevented())}}})(jQuery);;/*!
|
36
|
-
* jQuery UI Mouse 1.8rc3
|
37
|
-
*
|
38
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
39
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
40
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
41
|
-
*
|
42
|
-
* http://docs.jquery.com/UI/Mouse
|
43
|
-
*
|
44
|
-
* Depends:
|
45
|
-
* jquery.ui.widget.js
|
46
|
-
*/
|
47
|
-
* jQuery UI Mouse 1.8rc3
|
48
|
-
*
|
49
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
50
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
51
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
52
|
-
*
|
53
|
-
* http://docs.jquery.com/UI/Mouse
|
54
|
-
*
|
55
|
-
* Depends:
|
56
|
-
* jquery.ui.widget.js
|
57
|
-
*/
|
58
|
-
(function(a){a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(c){return b._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(b._preventClickEvent){b._preventClickEvent=false;c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(d){d.originalEvent=d.originalEvent||{};if(d.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(d));this._mouseDownEvent=d;var c=this,e=(d.which==1),b=(typeof this.options.cancel=="string"?a(d.target).parents().add(d.target).filter(this.options.cancel).length:false);if(!e||b||!this._mouseCapture(d)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(d)!==false);if(!this._mouseStarted){d.preventDefault();return true}}this._mouseMoveDelegate=function(f){return c._mouseMove(f)};this._mouseUpDelegate=function(f){return c._mouseUp(f)};a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(a.browser.safari||d.preventDefault());d.originalEvent.mouseHandled=true;return true},_mouseMove:function(b){if(a.browser.msie&&!b.button){return this._mouseUp(b)}if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,b)!==false);(this._mouseStarted?this._mouseDrag(b):this._mouseUp(b))}return !this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(b.target==this._mouseDownEvent.target);this._mouseStop(b)}return false},_mouseDistanceMet:function(b){return(Math.max(Math.abs(this._mouseDownEvent.pageX-b.pageX),Math.abs(this._mouseDownEvent.pageY-b.pageY))>=this.options.distance)},_mouseDelayMet:function(b){return this.mouseDelayMet},_mouseStart:function(b){},_mouseDrag:function(b){},_mouseStop:function(b){},_mouseCapture:function(b){return true}})})(jQuery);;/*
|
59
|
-
* jQuery UI Slider 1.8rc3
|
60
|
-
*
|
61
|
-
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
62
|
-
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
63
|
-
* and GPL (GPL-LICENSE.txt) licenses.
|
64
|
-
*
|
65
|
-
* http://docs.jquery.com/UI/Slider
|
66
|
-
*
|
67
|
-
* Depends:
|
68
|
-
* jquery.ui.core.js
|
69
|
-
* jquery.ui.mouse.js
|
70
|
-
* jquery.ui.widget.js
|
71
|
-
*/
|
@@ -1,50 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Slider</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<script type="text/javascript" src="../jquery-1.4.2.min.js"></script>
|
6
|
-
<script type="text/javascript" src="jquery-ui-1.8rc3.custom.min.js"></script>
|
7
|
-
<link type="text/css" href="ui-lightness/jquery-ui-1.8rc3.custom.css" rel="stylesheet"/>
|
8
|
-
<style type="text/css">
|
9
|
-
|
10
|
-
.ui-slider {
|
11
|
-
font-size: 10px;
|
12
|
-
width: 300px;
|
13
|
-
margin-top: 5px;
|
14
|
-
}
|
15
|
-
|
16
|
-
.ui-state-focus {
|
17
|
-
outline: none;
|
18
|
-
}
|
19
|
-
|
20
|
-
</style>
|
21
|
-
</head>
|
22
|
-
<body>
|
23
|
-
<script type="text/javascript+protovis">
|
24
|
-
|
25
|
-
var color = pv.color("black");
|
26
|
-
|
27
|
-
var vis = new pv.Panel()
|
28
|
-
.width(300)
|
29
|
-
.height(300)
|
30
|
-
.fillStyle(color);
|
31
|
-
|
32
|
-
vis.anchor("center").add(pv.Label)
|
33
|
-
.text(function() color.color);
|
34
|
-
|
35
|
-
vis.render();
|
36
|
-
|
37
|
-
$([red, green, blue]).slider({
|
38
|
-
min: 0, max: 255, slide: function(e, ui) {
|
39
|
-
vis.fillStyle(color = color[this.id](ui.value)).render();
|
40
|
-
}
|
41
|
-
});
|
42
|
-
|
43
|
-
</script>
|
44
|
-
<div id="red"></div>
|
45
|
-
<div id="green"></div>
|
46
|
-
<div id="blue"></div>
|
47
|
-
</body>
|
48
|
-
</html>
|
49
|
-
|
50
|
-
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|