all create foo pages should now have buttons labeled "create". reformatted create...
authorxzilla <xzilla>
Thu, 5 Jun 2003 20:05:43 +0000 (20:05 +0000)
committerxzilla <xzilla>
Thu, 5 Jun 2003 20:05:43 +0000 (20:05 +0000)
functions.php
indexes.php
rules.php
sequences.php
types.php
views.php

index 697072c2d243366a2f49d257bef10e94a6a5f5d4..046b203325cd2499f2cc56633be9aad1353530c6 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage functions in a database
         *
-        * $Id: functions.php,v 1.17 2003/06/01 11:53:45 chriskl Exp $
+        * $Id: functions.php,v 1.18 2003/06/05 20:05:43 xzilla Exp $
         */
 
        // Include application functions
                echo "</table>\n";
                echo "<input type=\"hidden\" name=\"action\" value=\"save_create\" />\n";
                echo $misc->form;
-               echo "<input type=\"submit\" value=\"{$lang['strsave']}\" />\n";
+               echo "<input type=\"submit\" value=\"{$lang['strcreate']}\" />\n";
                echo "<input type=\"reset\" value=\"{$lang['strreset']}\" />\n";
                echo "</form>\n";
                
index 4b25d6eba5f28a7afd1a22ac0c9a57054f1c4b8f..072678503e08380dfce05cb77b666ee776303a7a 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * List indexes on a table
         *
-        * $Id: indexes.php,v 1.13 2003/05/20 05:49:54 chriskl Exp $
+        * $Id: indexes.php,v 1.14 2003/06/05 20:05:44 xzilla Exp $
         */
 
        // Include application functions
@@ -77,7 +77,7 @@
                echo "<p><input type=\"hidden\" name=\"action\" value=\"save_create_index\" />\n";
                echo $misc->form;
                echo "<input type=\"hidden\" name=\"table\" value=\"", htmlspecialchars($_REQUEST['table']), "\" />\n";
-               echo "<input type=\"submit\" value=\"{$lang['strsave']}\" />\n";
+               echo "<input type=\"submit\" value=\"{$lang['strcreate']}\" />\n";
                echo "<input type=reset value=\"{$lang['strreset']}\" /></p>\n";
                echo "</form>\n";
                
index bbb1e6f03068a5183da77e90fe607eec5b33e89d..a1d742ae844b7cbc9e152813ae09344628821ade 100644 (file)
--- a/rules.php
+++ b/rules.php
@@ -3,7 +3,7 @@
        /**
         * List rules on a table
         *
-        * $Id: rules.php,v 1.11 2003/05/31 07:23:24 chriskl Exp $
+        * $Id: rules.php,v 1.12 2003/06/05 20:05:44 xzilla Exp $
         */
 
        // Include application functions
@@ -60,7 +60,7 @@
                        echo "<input type=\"hidden\" name=\"action\" value=\"save_create_rule\">\n";
                        echo "<input type=\"hidden\" name=\"table\" value=\"", htmlspecialchars($_REQUEST['table']), "\">\n";
                        echo $misc->form;
-                       echo "<p><input type=\"submit\" name=\"ok\" value=\"{$lang['strok']}\"> <input type=\"submit\" name=\"cancel\" value=\"{$lang['strcancel']}\"></p>\n";
+                       echo "<p><input type=\"submit\" name=\"ok\" value=\"{$lang['strcreate']}\"> <input type=\"submit\" name=\"cancel\" value=\"{$lang['strcancel']}\"></p>\n";
                        echo "</form>\n";
 
                }
index 3f0031a528756541e05d877ad1a275f59944fc60..02b89d43031e75b5644360a1fe6b7de5247a405c 100644 (file)
@@ -3,7 +3,7 @@
        /**
         * Manage sequences in a database
         *
-        * $Id: sequences.php,v 1.12 2003/05/28 16:51:36 killroyboy Exp $
+        * $Id: sequences.php,v 1.13 2003/06/05 20:05:44 xzilla Exp $
         */
        
        // Include application functions
                echo "<p><input type=\"hidden\" name=\"action\" value=\"save_create_sequence\" />\n";
                echo $misc->form;
                echo "<input type=\"hidden\" name=\"sequence\" value=\"", htmlspecialchars($_REQUEST['sequence']), "\" />\n";
-               echo "<input type=\"submit\" value=\"{$lang['strsave']}\" />\n";
+               echo "<input type=\"submit\" value=\"{$lang['strcreate']}\" />\n";
                echo "<input type=\"reset\" value=\"{$lang['strreset']}\" /></p>\n";
                echo "</form>\n";
                
index b8e2247e929a6bfd14169897d86d109ea4c20d56..c75cda0c9ff50a4da1ca3c94103beced9b6227fa 100644 (file)
--- a/types.php
+++ b/types.php
@@ -3,7 +3,7 @@
        /**
         * Manage types in a database
         *
-        * $Id: types.php,v 1.7 2003/05/30 08:49:09 chriskl Exp $
+        * $Id: types.php,v 1.8 2003/06/05 20:05:45 xzilla Exp $
         */
 
        // Include application functions
 
                echo "<form action=\"$PHP_SELF\" method=\"post\">\n";
                echo "<table width=\"100%\">\n";
-               echo "<tr><th class=data><b>{$lang['strname']}</b></th></tr>\n";
-               echo "<tr><td class=data1><input name=typname size={$data->_maxNameLen} maxlength={$data->_maxNameLen} value=\"",
+               echo "<tr><th class=data><b>{$lang['strname']}</b></th>\n";
+               echo "<td class=data1><input name=typname size={$data->_maxNameLen} maxlength={$data->_maxNameLen} value=\"",
                        htmlspecialchars($_POST['typname']), "\"></td></tr>\n";
-               echo "<tr><th class=data><b>{$lang['strinputfn']}</b></th></tr>\n";
-               echo "<tr><td class=data1><select name=typin>";
+               echo "<tr><th class=data><b>{$lang['strinputfn']}</b></th>\n";
+               echo "<td class=data1><select name=typin>";
                while (!$funcs->EOF) {
                        $proname = htmlspecialchars($funcs->f[$data->fnFields['fnname']]);
                        echo "<option value=\"{$proname}\"",
                        $funcs->moveNext();
                }
                echo "</select></td></tr>\n";
-               echo "<tr><th class=data><b>{$lang['stroutputfn']}</b></th></tr>\n";
-               echo "<tr><td class=data1><select name=typout>";
+               echo "<tr><th class=data><b>{$lang['stroutputfn']}</b></th>\n";
+               echo "<td class=data1><select name=typout>";
                $funcs->moveFirst();
                while (!$funcs->EOF) {
                        $proname = htmlspecialchars($funcs->f[$data->fnFields['fnname']]);
                        $funcs->moveNext();
                }
                echo "</select></td></tr>\n";
-               echo "<tr><th class=data><b>{$lang['strlength']}</b></th></tr>\n";
-               echo "<tr><td class=data1><input name=typlen size=8 value=\"",
+               echo "<tr><th class=data><b>{$lang['strlength']}</b></th>\n";
+               echo "<td class=data1><input name=typlen size=8 value=\"",
                        htmlspecialchars($_POST['typlen']), "\"></td></tr>";
-               echo "<tr><th class=data>{$lang['strdefault']}</th></tr>\n";
-               echo "<tr><td class=data1><input name=typdef size=8 value=\"",
+               echo "<tr><th class=data>{$lang['strdefault']}</th>\n";
+               echo "<td class=data1><input name=typdef size=8 value=\"",
                        htmlspecialchars($_POST['typdef']), "\"></td></tr>";
-               echo "<tr><th class=data>{$lang['strelement']}</th></tr>\n";
-               echo "<tr><td class=data1><select name=typelem>";
+               echo "<tr><th class=data>{$lang['strelement']}</th>\n";
+               echo "<td class=data1><select name=typelem>";
                echo "<option value=\"\"></option>\n";
                while (!$types->EOF) {
                        $currname = htmlspecialchars($types->f[$data->typFields['typname']]);
                        $types->moveNext();
                }
                echo "</select></td></tr>\n";
-               echo "<tr><th class=data>{$lang['strdelimiter']}</th></tr>\n";
-               echo "<tr><td class=data1><input name=typdelim size=1 maxlength=1 value=\"",
+               echo "<tr><th class=data>{$lang['strdelimiter']}</th>\n";
+               echo "<td class=data1><input name=typdelim size=1 maxlength=1 value=\"",
                        htmlspecialchars($_POST['typdelim']), "\"></td></tr>";
-               echo "<tr><th class=data>{$lang['strpassbyval']}</th></tr>\n";
-               echo "<tr><td class=data1><input type=checkbox name=typbyval", 
+               echo "<tr><th class=data>{$lang['strpassbyval']}</th>\n";
+               echo "<td class=data1><input type=checkbox name=typbyval", 
                        isset($_POST['typbyval']) ? ' checked' : '', "></td></tr>";
-               echo "<tr><th class=data>{$lang['stralignment']}</th></tr>\n";
-               echo "<tr><td class=data1><select name=typalign>";
+               echo "<tr><th class=data>{$lang['stralignment']}</th>\n";
+               echo "<td class=data1><select name=typalign>";
                foreach ($data->typAligns as $v) {
                        echo "<option value=\"{$v}\"",
                                ($v == $_POST['typalign']) ? ' selected' : '', ">{$v}</option>\n";
                }
                echo "</select></td></tr>\n";
-               echo "<tr><th class=data>{$lang['strstorage']}</th></tr>\n";
-               echo "<tr><td class=data1><select name=typstorage>";
+               echo "<tr><th class=data>{$lang['strstorage']}</th>\n";
+               echo "<td class=data1><select name=typstorage>";
                foreach ($data->typStorages as $v) {
                        echo "<option value=\"{$v}\"",
                                ($v == $_POST['typstorage']) ? ' selected' : '', ">{$v}</option>\n";
                echo "</table>\n";
                echo "<input type=hidden name=action value=save_create>\n";
                echo $misc->form;
-               echo "<input type=submit value=\"{$lang['strsave']}\"> <input type=reset value=\"{$lang['strreset']}\">\n";
+               echo "<input type=submit value=\"{$lang['strcreate']}\"> <input type=reset value=\"{$lang['strreset']}\">\n";
                echo "</form>\n";
                
                echo "<p><a class=navlink href=\"$PHP_SELF?{$misc->href}\">{$lang['strshowalltypes']}</a></p>\n";
index d47585cf96de998d897c9d90e0f13e9b4926ccc3..cfa6420559d4f588799302dc472473a52e7223d3 100644 (file)
--- a/views.php
+++ b/views.php
@@ -3,7 +3,7 @@
        /**
         * Manage views in a database
         *
-        * $Id: views.php,v 1.14 2003/05/16 08:55:18 chriskl Exp $
+        * $Id: views.php,v 1.15 2003/06/05 20:05:45 xzilla Exp $
         */
 
        // Include application functions
                echo "</table>\n";
                echo "<input type=\"hidden\" name=\"action\" value=\"save_create\">\n";
                echo $misc->form;
-               echo "<input type=\"submit\" value=\"{$lang['strsave']}\"> <input type=\"reset\" value=\"{$lang['strreset']}\">\n";
+               echo "<input type=\"submit\" value=\"{$lang['strcreate']}\"> <input type=\"reset\" value=\"{$lang['strreset']}\">\n";
                echo "</form>\n";
                
                echo "<p><a class=\"navlink\" href=\"$PHP_SELF?{$misc->href}\">{$lang['strshowallviews']}</a></p>\n";