r38614 - in /trunk/libconfig-model-itself-perl: ./ data/MasterModel/ debian/ lib/Config/Model/ lib/Config/Model/Itself/ lib/Config/Model/models/Itself/

ddumont-guest at users.alioth.debian.org ddumont-guest at users.alioth.debian.org
Thu Jun 25 16:33:21 UTC 2009


Author: ddumont-guest
Date: Thu Jun 25 16:33:14 2009
New Revision: 38614

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=38614
Log:
ready for release

Modified:
    trunk/libconfig-model-itself-perl/Build.PL
    trunk/libconfig-model-itself-perl/ChangeLog
    trunk/libconfig-model-itself-perl/META.yml
    trunk/libconfig-model-itself-perl/config-model-edit
    trunk/libconfig-model-itself-perl/data/MasterModel/CheckListExamples.pl
    trunk/libconfig-model-itself-perl/data/MasterModel/SshdWithAugeas.pl
    trunk/libconfig-model-itself-perl/debian/changelog
    trunk/libconfig-model-itself-perl/debian/control
    trunk/libconfig-model-itself-perl/lib/Config/Model/Itself.pm
    trunk/libconfig-model-itself-perl/lib/Config/Model/Itself/TkEditUI.pm
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Class.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/CommonElement.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/ComputedValue.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Element.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/MigratedValue.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/NonWarpableElement.pl
    trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/WarpableElement.pl

Modified: trunk/libconfig-model-itself-perl/Build.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/Build.PL?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/Build.PL (original)
+++ trunk/libconfig-model-itself-perl/Build.PL Thu Jun 25 16:33:14 2009
@@ -35,9 +35,9 @@
    dist_author   => "Dominique Dumont (ddumont at cpan dot org)",
    dist_abstract => "Graphical model editor for Config::Model",
    requires      => {
-		     'Config::Model'   => '0.635',
+		     'Config::Model'   => '0.637',
 		     'Log::Log4perl'   => 0 ,
-		     'Config::Model::TkUI' => '1.203',
+		     'Config::Model::TkUI' => '1.210',
 		    },
    script_files  => [ 'config-model-edit' ],
    add_to_cleanup => [qw/wr_test/] ,

Modified: trunk/libconfig-model-itself-perl/ChangeLog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/ChangeLog?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/ChangeLog (original)
+++ trunk/libconfig-model-itself-perl/ChangeLog Thu Jun 25 16:33:14 2009
@@ -1,3 +1,19 @@
+2009-06-24  Dominique Dumont  <domi.dumont at free.fr> v1.211
+
+	* Build.PL: depend on Config::Model 0.637 and C::M::TkUI 1.210
+
+2009-06-23  Dominique Dumont  <dominique.dumont at hp.com>
+
+	* lib/Config/Model/models/Itself/*.pl: Changed built_in parameter
+	to upstream_default and built_in_list to upstream_default_list
+
+2009-05-30  Dominique Dumont  <dominique.dumont at hp.com>
+
+	* config-model-edit: added -save option.
+
+	* lib/Config/Model/models/Itself/Class.pl: Changed config_file
+	parameter to file (Req by Config::Model 0.636)
+
 2009-04-20  Dominique Dumont  <dominique.dumont at hp.com> v1.210
 
 	* config-model-edit: Fixed Log::Log4perl default configuration

Modified: trunk/libconfig-model-itself-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/META.yml?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/META.yml (original)
+++ trunk/libconfig-model-itself-perl/META.yml Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 ---
 name: Config-Model-Itself
-version: 1.210
+version: 1.211
 author:
   - Dominique Dumont (ddumont at cpan dot org)
 abstract: Graphical model editor for Config::Model
@@ -8,17 +8,17 @@
 resources:
   license: http://opensource.org/licenses/lgpl-license.php
 requires:
-  Config::Model: 0.635
-  Config::Model::TkUI: 1.203
+  Config::Model: 0.637
+  Config::Model::TkUI: 1.210
   Log::Log4perl: 0
 provides:
   Config::Model::Itself:
     file: lib/Config/Model/Itself.pm
-    version: 1.210
+    version: 1.211
   Config::Model::Itself::TkEditUI:
     file: lib/Config/Model/Itself/TkEditUI.pm
     version: 1.0615
-generated_by: Module::Build version 0.3
+generated_by: Module::Build version 0.33
 meta-spec:
-  url: http://module-build.sourceforge.net/META-spec-v1.2.html
-  version: 1.2
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4

Modified: trunk/libconfig-model-itself-perl/config-model-edit
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/config-model-edit?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/config-model-edit (original)
+++ trunk/libconfig-model-itself-perl/config-model-edit Thu Jun 25 16:33:14 2009
@@ -34,7 +34,7 @@
 # lame tracing that will be replaced by Log4perl
 use vars qw/$verbose $debug $VERSION/ ;
 
-$VERSION = sprintf "1.%04d", q$Revision: 942 $ =~ /(\d+)/;
+$VERSION = sprintf "1.%04d", q$Revision: 970 $ =~ /(\d+)/;
 
 $verbose = 0;
 $debug = 0;
@@ -150,6 +150,11 @@
 (i.e. C<config_class_name> parameter) is represented by dashed
 lines. The name of the element is attached to the dashed line.
 
+=item -save
+
+Force a save of the model even if no edition was done. This option is
+useful to migrate a model when Config::Model model feature changes.
+
 =back
 
 
@@ -160,6 +165,7 @@
 my $force_load = 0;
 my $model_dir ;
 my $do_dot = 0;
+my $save = 0;
 
 my $result = GetOptions (
 			 "dir=s"            => \$model_dir,
@@ -170,6 +176,7 @@
 			 "man!"             => \$man,
 			 "help!"            => \$help,
 			 "force_load!"      => \$force_load,
+			 "save!"            => \$save,
 			 "dot_diagram!"     => \$do_dot ,
 			);
 
@@ -225,6 +232,11 @@
     my $wr_dir = shift || $wr_model_dir ;
     $rw_obj->write_all(model_dir => $wr_dir);
 } ;
+
+if ($save) {
+    &$write_sub ;
+    exit ;
+}
 
 my $mw = MainWindow-> new ;
 $mw->withdraw ;

Modified: trunk/libconfig-model-itself-perl/data/MasterModel/CheckListExamples.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/data/MasterModel/CheckListExamples.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/data/MasterModel/CheckListExamples.pl (original)
+++ trunk/libconfig-model-itself-perl/data/MasterModel/CheckListExamples.pl Thu Jun 25 16:33:14 2009
@@ -23,10 +23,10 @@
 	    help => { A => 'A help', E => 'E help' } ,
 	  },
 
-       choice_list_with_built_in
+       choice_list_with_upstream_default_list
        => { type          => 'check_list',
 	    choice        => ['A' .. 'Z'],
-	    built_in_list => [ 'A', 'D' ],
+	    upstream_default_list => [ 'A', 'D' ],
 	    help          => { A => 'A help', E => 'E help' } ,
 	  },
 

Modified: trunk/libconfig-model-itself-perl/data/MasterModel/SshdWithAugeas.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/data/MasterModel/SshdWithAugeas.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/data/MasterModel/SshdWithAugeas.pl (original)
+++ trunk/libconfig-model-itself-perl/data/MasterModel/SshdWithAugeas.pl Thu Jun 25 16:33:14 2009
@@ -6,7 +6,7 @@
   => [ 
       { backend => 'augeas', 
 	 config_dir  => '/etc/ssh',
-	 config_file => 'sshd_config',
+	 file => 'sshd_config',
 	 sequential_lens => [qw/HostKey Subsystem Match/],
       },
       { backend => 'perl_file', 

Modified: trunk/libconfig-model-itself-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/debian/changelog?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/debian/changelog (original)
+++ trunk/libconfig-model-itself-perl/debian/changelog Thu Jun 25 16:33:14 2009
@@ -1,8 +1,15 @@
-libconfig-model-itself-perl (1.210-2) UNRELEASED; urgency=low
+libconfig-model-itself-perl (1.211-1) unstable; urgency=low
 
+  [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 
- -- Nathan Handler <nhandler at ubuntu.com>  Sat, 06 Jun 2009 01:33:21 +0000
+  [ Dominique Dumont ]
+  * New upstream release
+  * control: depends on libconfig-model-perl 0.637 and 
+    libconfig-model-tkui-perl 1.210
+  * control: updated to policy 3.8.2
+
+ -- Dominique Dumont <dominique.dumont at hp.com>  Thu, 25 Jun 2009 18:31:57 +0200
 
 libconfig-model-itself-perl (1.210-1) unstable; urgency=low
 

Modified: trunk/libconfig-model-itself-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/debian/control?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/debian/control (original)
+++ trunk/libconfig-model-itself-perl/debian/control Thu Jun 25 16:33:14 2009
@@ -4,23 +4,23 @@
 Build-Depends: debhelper (>= 7), 
                perl-modules (>= 5.10) | libmodule-build-perl
 Build-Depends-Indep: perl (>= 5.8.8-12),
-                     libconfig-model-perl (>= 0.635),
-                     libconfig-model-tkui-perl (>= 1.208),
+                     libconfig-model-perl (>= 0.637),
+                     libconfig-model-tkui-perl (>= 1.210),
                      libtest-pod-perl,
                      liblog-log4perl-perl (>= 1.11)
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Dominique Dumont <dominique.dumont at hp.com>,
            gregor herrmann <gregoa at debian.org>
-Standards-Version: 3.8.1
+Standards-Version: 3.8.2
 Homepage: http://search.cpan.org/dist/Config-Model-Itself/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libconfig-model-itself-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libconfig-model-itself-perl/
 
 Package: libconfig-model-itself-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, liblog-log4perl-perl
-         libconfig-model-perl (>= 0.635),
-         libconfig-model-tkui-perl (>= 1.208),
+Depends: ${perl:Depends}, ${misc:Depends}, 
+         libconfig-model-perl (>= 0.637),
+         libconfig-model-tkui-perl (>= 1.210),
          liblog-log4perl-perl (>= 1.11)
 Description: graphical model editor for Config::Model
  Config::Model::Itself and the command config-model-edit provide

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/Itself.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/Itself.pm?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/Itself.pm (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/Itself.pm Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 # $Author: ddumont $
-# $Date: 2009-04-06 13:57:55 +0200 (Mon, 06 Apr 2009) $
-# $Revision: 919 $
+# $Date: 2009-05-30 17:54:42 +0200 (Sat, 30 May 2009) $
+# $Revision: 970 $
 
 #    Copyright (c) 2007-2009 Dominique Dumont.
 #
@@ -34,7 +34,7 @@
 
 use vars qw($VERSION) ;
 
-$VERSION = '1.210';
+$VERSION = '1.211';
 
 my $logger = Log::Log4perl::get_logger(__PACKAGE__);
 

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/Itself/TkEditUI.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/Itself/TkEditUI.pm?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/Itself/TkEditUI.pm (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/Itself/TkEditUI.pm Thu Jun 25 16:33:14 2009
@@ -51,6 +51,8 @@
     my $model_name   = delete $args->{-model_name} ;
     my $root_dir     = delete $args->{-root_dir} ;
 
+    $args->{'-title'} ||= "config-model-edit $model_name" ;
+
     $cw->SUPER::Populate($args) ;
 
     my $items = [[ qw/command test -command/, sub{ $cw->test_model }],

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Class.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Class.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Class.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Class.pl Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 # $Author: ddumont $
-# $Date: 2009-04-12 19:43:01 +0200 (Sun, 12 Apr 2009) $
-# $Revision: 928 $
+# $Date: 2009-06-23 13:41:22 +0200 (Tue, 23 Jun 2009) $
+# $Revision: 979 $
 
 #    Copyright (c) 2007-2008 Dominique Dumont.
 #
@@ -138,6 +138,9 @@
 	   level => 'normal',
 	   summary =>  'target configuration file name',
 	   description => 'specify the configuration file name. This parameter may not be applicable depending on your application. It may also be hardcoded in a custom backend. If not specified, the instance name will be used as base name for your configuration file.', 
+	   migrate_from => { variables => { old => '- config_file'},
+			     formula  => '$old',
+			   }
 	  },
 
        'class'
@@ -168,14 +171,8 @@
        => {
 	   type => 'leaf',
 	   value_type => 'uniline' ,
-	   level => 'hidden',
-	   warp => { follow => { b => '- backend' },
-		     rules => [ '$b eq "augeas" or $b eq "ini_file"'
-				=> { level => 'normal',
-				     mandatory => 1,
-				   }
-			      ],
-		   },
+	   status => 'deprecated',
+	   level => 'normal',
 	   description => 'Specify the configuration file (without path) that will store configuration information',
 	   },
        'set_in'
@@ -220,7 +217,7 @@
 	   level => 'hidden',
 	   warp => { follow => '- backend',
 		     rules => [ custom => { level => 'normal',
-					    built_in => 'read',
+					    upstream_default => 'read',
 					  }
 			      ],
 		   }
@@ -243,7 +240,7 @@
 	   type => 'leaf',
 	   value_type => 'boolean' ,
 	   level => 'normal',
-	   built_in => 0,
+	   upstream_default => 0,
 	   summary => 'Creates configuration files as needed',
 	   migrate_from => { formula => '$old' ,
 			     variables => { old => '- allow_empty' } ,
@@ -256,7 +253,7 @@
 	   value_type => 'boolean' ,
 	   level => 'normal',
 	   status => 'deprecated',
-	   built_in => 0,
+	   upstream_default => 0,
 	   summary => 'deprecated in favor of auto_create',
 	  },
 
@@ -276,7 +273,7 @@
 	   level => 'hidden',
 	   warp => { follow => '- backend',
 		     rules => [ custom => { level => 'normal',
-					    built_in => 'write',
+					    upstream_default => 'write',
 					  }
 			      ],
 		   }
@@ -299,7 +296,7 @@
 	   type => 'leaf',
 	   value_type => 'boolean' ,
 	   level => 'normal',
-	   built_in => 0,
+	   upstream_default => 0,
 	   summary => 'Creates configuration files as needed',
 	  },
 

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/CommonElement.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/CommonElement.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/CommonElement.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/CommonElement.pl Thu Jun 25 16:33:14 2009
@@ -35,7 +35,7 @@
 	   warp => { follow => '?type',
 		     'rules'
 		     => { 'leaf' => {
-				     built_in   => 0,
+				     upstream_default   => 0,
 				     level => 'normal',
 				    }
 			}
@@ -130,7 +130,7 @@
 		   }
 	 },
 
-      'built_in'
+      'upstream_default'
       => { type => 'leaf',
 	   level => 'hidden',
 	   value_type => 'uniline',
@@ -182,7 +182,7 @@
 		   },
 	 },
 
-      'built_in_list'
+      'upstream_default_list'
       => { type => 'check_list',
 	   level => 'hidden',
 	   refer_to => '- choice',

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/ComputedValue.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/ComputedValue.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/ComputedValue.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/ComputedValue.pl Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 # $Author: ddumont $
-# $Date: 2008-07-25 14:49:17 +0200 (Fri, 25 Jul 2008) $
-# $Revision: 732 $
+# $Date: 2009-06-23 13:41:22 +0200 (Tue, 23 Jun 2009) $
+# $Revision: 979 $
 
 #    Copyright (c) 2007-2008 Dominique Dumont.
 #
@@ -32,7 +32,7 @@
        => { type => 'leaf',
 
 	    value_type => 'boolean',
-	    built_in   => 0,
+	    upstream_default   => 0,
 	    level => 'normal',
 	    description => "Allow user to override computed value (ignored if no computation is used for this variable).",
 	 },

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Element.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Element.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Element.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/Element.pl Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 # $Author: ddumont $
-# $Date: 2009-04-03 17:50:41 +0200 (Fri, 03 Apr 2009) $
-# $Revision: 916 $
+# $Date: 2009-06-23 13:41:22 +0200 (Tue, 23 Jun 2009) $
+# $Revision: 979 $
 
 #    Copyright (c) 2007-2008 Dominique Dumont.
 #
@@ -45,7 +45,7 @@
 	  type => 'leaf',
 	  value_type => 'enum', 
 	  choice => [qw/obsolete deprecated standard/],
-	  built_in => 'standard' ,
+	  upstream_default => 'standard' ,
 	 },
 
        'experience' 
@@ -53,7 +53,7 @@
 	   type => 'leaf',
 	   value_type => 'enum', 
 	   choice => [qw/master advanced beginner/] ,
-	   built_in => 'beginner',
+	   upstream_default => 'beginner',
 	   description => 'Used to categorize configuration elements in several "required skills". Use this feature if you need to hide a parameter to novice users',
 	  },
 
@@ -62,7 +62,7 @@
 	   type => 'leaf',
 	   value_type => 'enum', 
 	   choice => [qw/important normal hidden/] ,
-	   built_in => 'normal',
+	   upstream_default => 'normal',
 	   description => 'Used to highlight important parameter or to hide others. Hidden parameter are mostly used to hide features that are unavailable at start time. They can be made available later using warp mechanism',
 	  },
 

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/MigratedValue.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/MigratedValue.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/MigratedValue.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/MigratedValue.pl Thu Jun 25 16:33:14 2009
@@ -53,7 +53,7 @@
        'use_eval'
        => { type => 'leaf',
 	    value_type => 'boolean',
-	    built_in   => 0,
+	    upstream_default   => 0,
 	    description => 'Set to 1 if you need to perform more complex operations than substition, like extraction with regular expressions. This will force an eval by Perl when computing the formula. The result of the eval will be used as the computed value.'
 	  },
 

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/NonWarpableElement.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/NonWarpableElement.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/NonWarpableElement.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/NonWarpableElement.pl Thu Jun 25 16:33:14 2009
@@ -76,7 +76,7 @@
 	       => { 'warped_node' 
 		    => {
 			level => 'normal',
-			built_in => 0 ,
+			upstream_default => 0 ,
 		       },
 		  }
 	     },

Modified: trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/WarpableElement.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/WarpableElement.pl?rev=38614&op=diff
==============================================================================
--- trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/WarpableElement.pl (original)
+++ trunk/libconfig-model-itself-perl/lib/Config/Model/models/Itself/WarpableElement.pl Thu Jun 25 16:33:14 2009
@@ -1,6 +1,6 @@
 # $Author: ddumont $
-# $Date: 2009-03-12 17:45:52 +0100 (Thu, 12 Mar 2009) $
-# $Revision: 895 $
+# $Date: 2009-06-23 13:41:22 +0200 (Tue, 23 Jun 2009) $
+# $Revision: 979 $
 
 #    Copyright (c) 2007-2008 Dominique Dumont.
 #
@@ -142,7 +142,6 @@
    => [
        value_type => 'specify the type of a leaf element.',
        default => 'Specify default value. This default value will be written in the configuration data',
-       built_in => 'Another way to specify a default value. But this default value is considered as "built_in" the application and is not written in the configuration data (unless modified)',
        follow_keys_from => 'this hash will contain the same keys as the hash pointed by the path string',
        allow_keys_from =>'this hash will allow keys from the keys of the hash pointed by the path string', 
        ordered => 'keep track of the order of the elements of this hash',




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