r75003 - in /branches/upstream/libchart-clicker-perl/current: Changes META.yml lib/Chart/Clicker.pm lib/Chart/Clicker/Decoration/Plot.pm

jotamjr-guest at users.alioth.debian.org jotamjr-guest at users.alioth.debian.org
Thu Jun 2 04:17:02 UTC 2011


Author: jotamjr-guest
Date: Thu Jun  2 04:16:42 2011
New Revision: 75003

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75003
Log:
[svn-upgrade] new version libchart-clicker-perl (2.68)

Modified:
    branches/upstream/libchart-clicker-perl/current/Changes
    branches/upstream/libchart-clicker-perl/current/META.yml
    branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker.pm
    branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker/Decoration/Plot.pm

Modified: branches/upstream/libchart-clicker-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libchart-clicker-perl/current/Changes?rev=75003&op=diff
==============================================================================
--- branches/upstream/libchart-clicker-perl/current/Changes (original)
+++ branches/upstream/libchart-clicker-perl/current/Changes Thu Jun  2 04:16:42 2011
@@ -1,4 +1,11 @@
 Revision history for Perl extension Chart::Clicker.
+
+2.68
+  - Remove add_to_markers stuff in docs, as it's bogus.  That functionality
+    is in the context.
+  _ Remove boolean attribute that determines if a Plot has any markers to be
+    drawn, as it was always true.  Remove check of said attribute since it
+    was always true.
 
 2.67
   - Axis now calls "super" at the end of it's finalize.  This way if there is

Modified: branches/upstream/libchart-clicker-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libchart-clicker-perl/current/META.yml?rev=75003&op=diff
==============================================================================
--- branches/upstream/libchart-clicker-perl/current/META.yml (original)
+++ branches/upstream/libchart-clicker-perl/current/META.yml Thu Jun  2 04:16:42 2011
@@ -39,4 +39,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: http://github.com/gphat/chart-clicker
-version: 2.67
+version: 2.68

Modified: branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker.pm?rev=75003&op=diff
==============================================================================
--- branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker.pm (original)
+++ branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker.pm Thu Jun  2 04:16:42 2011
@@ -24,7 +24,7 @@
 use Carp qw(croak);
 use Scalar::Util qw(refaddr);
 
-our $VERSION = '2.67';
+our $VERSION = '2.68';
 
 has '+background_color' => (
     default => sub {
@@ -326,11 +326,9 @@
         $plot->render_area->add_component($plot->grid, 'c');
     }
 
-    if($plot->markers) {
-        $plot->render_area->add_component(
-            $self->marker_overlay
-        );
-    }
+    $plot->render_area->add_component(
+        $self->marker_overlay
+    );
 
     # Sentinels to control the side that the axes will be drawn on.
     my $dcount = 0;
@@ -500,6 +498,8 @@
 without being tied to specific backend.  You may want to begin with
 L<Chart::Clicker::Tutorial>.
 
+=head1 EXAMPLES
+
 For code examples see the examples repository on GitHub:
 L<http://github.com/gphat/chart-clicker-examples/>
 
@@ -635,10 +635,6 @@
 
 This used to be the only way to add data, but repeated requests to make the
 common case easier resulted in the inclusion of C<add_data>.
-
-=head1 COOKBOOK
-
-Check the cookbook at L<http://www.onemogin.com/clicker/cookbook>
 
 =head1 CONTEXTS
 
@@ -804,10 +800,6 @@
 
 Add the specified dataset (or arrayref of datasets) to the chart.
 
-=head2 add_to_markers
-
-Add the specified marker to the chart.
-
 =head2 add_subgraph
 
 Add a subgraph to this chart.

Modified: branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker/Decoration/Plot.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker/Decoration/Plot.pm?rev=75003&op=diff
==============================================================================
--- branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker/Decoration/Plot.pm (original)
+++ branches/upstream/libchart-clicker-perl/current/lib/Chart/Clicker/Decoration/Plot.pm Thu Jun  2 04:16:42 2011
@@ -25,11 +25,6 @@
 );
 has '+layout_manager' => (
     default => sub { Layout::Manager::Axis->new }
-);
-has 'markers' => (
-    is => 'rw',
-    isa => 'Bool',
-    default => 1
 );
 has 'render_area' => (
     is => 'rw',




More information about the Pkg-perl-cvs-commits mailing list