You are viewing a plain text version of this content. The canonical link for it is here.
Posted to site-cvs@tcl.apache.org by mx...@apache.org on 2013/08/12 18:03:43 UTC

svn commit: r1513180 - in /tcl/rivet/trunk: ChangeLog rivet/packages/form/form.tcl rivet/packages/form/form2.tcl

Author: mxmanghi
Date: Mon Aug 12 16:03:43 2013
New Revision: 1513180

URL: http://svn.apache.org/r1513180
Log:
    * rivet/packages/form/form2.tcl,form.tcl: form packages called Rivet's command
    '::rivet::env' in its unqualified form. Fixed adding the ::rivet namespace
    specification.
    * src/apache-2/rivetCore.c: errata corrige for entry added on 2013-07-19: 
    command 'parse -string' superseded test command parsestr, thus removed from
    rivetCore.c


Modified:
    tcl/rivet/trunk/ChangeLog
    tcl/rivet/trunk/rivet/packages/form/form.tcl
    tcl/rivet/trunk/rivet/packages/form/form2.tcl

Modified: tcl/rivet/trunk/ChangeLog
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/ChangeLog?rev=1513180&r1=1513179&r2=1513180&view=diff
==============================================================================
--- tcl/rivet/trunk/ChangeLog (original)
+++ tcl/rivet/trunk/ChangeLog Mon Aug 12 16:03:43 2013
@@ -1,3 +1,11 @@
+2013-08-12 Massimo Manghi <mx...@apache.org>
+    * rivet/packages/form/form2.tcl,form.tcl: form packages called Rivet's command
+    '::rivet::env' in its unqualified form. Fixed adding the ::rivet namespace
+    specification.
+    * src/apache-2/rivetCore.c: errata corrige for entry added on 2013-07-19: 
+    command 'parse -string' superseded test command parsestr, thus removed from
+    rivetCore.c
+
 2013-08-07 Massimo Manghi <mx...@apache.org>
     * src/apache-2/mod_rivet.c: adding MPM descripting fields to the 'server' array
     * configure.ac: warning message about Tcl version not supporting fork correctly

Modified: tcl/rivet/trunk/rivet/packages/form/form.tcl
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/rivet/packages/form/form.tcl?rev=1513180&r1=1513179&r2=1513180&view=diff
==============================================================================
--- tcl/rivet/trunk/rivet/packages/form/form.tcl (original)
+++ tcl/rivet/trunk/rivet/packages/form/form.tcl Mon Aug 12 16:03:43 2013
@@ -35,7 +35,7 @@ package provide form 1.0
         # set the form method to be a post and the action to be
         # a refetching of the current page
         set arguments(method) post
-        set arguments(action) [env DOCUMENT_URI]
+        set arguments(action) [::rivet::env DOCUMENT_URI]
 
         # use $this for the type for form-global stuff like form arguments
         import_data form $this arguments $args

Modified: tcl/rivet/trunk/rivet/packages/form/form2.tcl
URL: http://svn.apache.org/viewvc/tcl/rivet/trunk/rivet/packages/form/form2.tcl?rev=1513180&r1=1513179&r2=1513180&view=diff
==============================================================================
--- tcl/rivet/trunk/rivet/packages/form/form2.tcl (original)
+++ tcl/rivet/trunk/rivet/packages/form/form2.tcl Mon Aug 12 16:03:43 2013
@@ -27,7 +27,7 @@ package provide form 2.0
         # set the form method to be a post and the action to be
         # a refetching of the current page
         set arguments(method) post
-        set arguments(action) [env DOCUMENT_URI]
+        set arguments(action) [::rivet::env DOCUMENT_URI]
 
         # use $this for the type for form-global stuff like form arguments
         import_data form $this arguments $args



---------------------------------------------------------------------
To unsubscribe, e-mail: site-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: site-cvs-help@tcl.apache.org