r75188 - in /branches/upstream/libdata-treedumper-perl/current: META.yml Todo TreeDumper.pm

carnil at users.alioth.debian.org carnil at users.alioth.debian.org
Sun Jun 5 18:29:49 UTC 2011


Author: carnil
Date: Sun Jun  5 18:29:27 2011
New Revision: 75188

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=75188
Log:
[svn-upgrade] new version libdata-treedumper-perl (0.40)

Modified:
    branches/upstream/libdata-treedumper-perl/current/META.yml
    branches/upstream/libdata-treedumper-perl/current/Todo
    branches/upstream/libdata-treedumper-perl/current/TreeDumper.pm

Modified: branches/upstream/libdata-treedumper-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-treedumper-perl/current/META.yml?rev=75188&op=diff
==============================================================================
--- branches/upstream/libdata-treedumper-perl/current/META.yml (original)
+++ branches/upstream/libdata-treedumper-perl/current/META.yml Sun Jun  5 18:29:27 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               Data-TreeDumper
-version:            0.37
+version:            0.40
 abstract:           Improved replacement for Data::Dumper. Powerful filtering capability.
 author:
     - Khemir Nadim ibn Hamouda. <nadim at khemir.net>
@@ -21,7 +21,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.54
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libdata-treedumper-perl/current/Todo
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-treedumper-perl/current/Todo?rev=75188&op=diff
==============================================================================
--- branches/upstream/libdata-treedumper-perl/current/Todo (original)
+++ branches/upstream/libdata-treedumper-perl/current/Todo Sun Jun  5 18:29:27 2011
@@ -1,5 +1,10 @@
 [12:03] <kent\n> nadim: $("ul").click(function(){ $(this).find("li").show() });  # theres a start
 
+options to show addresses and links only when references exist
+	needs two passes
+	could filter the output with a s/// to avoid two passes
+
+DTD::Flare instead for jquery
 
 the filter is called three times, it could be cached
 	search for $filter_sub->
@@ -9,6 +14,8 @@
 DTD::Diff
 	show only diff + some (settable) context
 	DHTML rendered that synchronizes collapse between trees
+
+Add example usind Data::DPath
 
 color by type
 sort by type

Modified: branches/upstream/libdata-treedumper-perl/current/TreeDumper.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdata-treedumper-perl/current/TreeDumper.pm?rev=75188&op=diff
==============================================================================
--- branches/upstream/libdata-treedumper-perl/current/TreeDumper.pm (original)
+++ branches/upstream/libdata-treedumper-perl/current/TreeDumper.pm Sun Jun  5 18:29:27 2011
@@ -14,7 +14,7 @@
 our @EXPORT_OK = ( @{$EXPORT_TAGS{'all'} } ) ;
 our @EXPORT = qw(DumpTree PrintTree DumpTrees CreateChainingFilter);
 
-our $VERSION = '0.37' ;
+our $VERSION = '0.40' ;
 
 my $WIN32_CONSOLE ;
 
@@ -1286,9 +1286,7 @@
 	if($setup->{DISPLAY_OBJECT_TYPE})
 		{
 		my $class = ref($element) ;
-		my $has_autoload ;
-		eval "\$has_autoload = *${class}::AUTOLOAD{CODE} ;" ;
-		$has_autoload = $has_autoload ? '[AL]' : '' ;
+		my $has_autoload = $class->can("AUTOLOAD") ? '[AL]' : '' ;
 		
 		$element_type .= " blessed in '$has_autoload$class'" ;
 		
@@ -2454,6 +2452,7 @@
 to setup the document (ex:: html header).
 
 =over 4
+
 my ($title, $type_address, $element, $size, $perl_address, $setup) = @_ ;
 
 =item 1 $title
@@ -2718,7 +2717,7 @@
 
 Thanks to Ed Avis for showing interest and pushing me to re-write the documentation.
 
-  Copyright (c) 2003-2006 Nadim Ibn Hamouda el Khemir. All rights
+  Copyright (c) 2003-2010 Nadim Ibn Hamouda el Khemir. All rights
   reserved.  This program is free software; you can redis-
   tribute it and/or modify it under the same terms as Perl
   itself.




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