1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
<?xml version="1.0"?>
<!--
-
- $Id: c_edit.vspx,v 1.2 2006/08/16 00:04:14 source Exp $
-
- This file is part of the OpenLink Software Virtuoso Open-Source (VOS)
- project.
-
- Copyright (C) 1998-2006 OpenLink Software
-
- This project is free software; you can redistribute it and/or modify it
- under the terms of the GNU General Public License as published by the
- Free Software Foundation; only version 2 of the License, dated June 1991.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License along
- with this program; if not, write to the Free Software Foundation, Inc.,
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-->
<html>
<head>
</head>
<body>
<v:page name="c_edit_page" xmlns:v="http://www.openlinksw.com/vspx/" fast-render="1">
<v:variable name="country" type="varchar" default="''" param-name="c" />
<v:variable name="code" type="varchar" default="''" />
<v:on-init>
if (length (self.country) and not e.ve_is_post)
{
select Code into self.code from Demo.demo.Countries where Name = self.country;
}
</v:on-init>
<font color="red">
<b>
<v:error-summary/>
</b>
</font>
<v:form type="simple" method="POST" name="c_form" xhtml_enctype="multipart/form-data">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
Country
</td>
<td>
<v:text name="c_name" value="--self.country" size="100">
</v:text>
</td>
</tr>
<tr>
<td>
ISO Country Code (2 letters)
</td>
<td>
<v:text name="c_code" value="--self.code" size="2"/>
</td>
</tr>
<tr>
<td>
Small Flag Image
</td>
<td>
<v:text name="c_sml_flag" value="" size="100" type="file"/>
</td>
</tr>
<tr>
<td>
Large Flag Image
</td>
<td>
<v:text name="c_flag" value="" size="100" type="file"/>
</td>
</tr>
<tr>
<td>
<v:button name="cancel_bt" value="Cancel" action="simple">
<v:on-post>
self.vc_redirect ('c_data.vspx');
</v:on-post>
</v:button>
<v:button name="save_bt" value="Save" action="simple">
<v:on-post><![CDATA[
declare sm, lg, c_code, c_name varchar;
if (not self.vc_is_valid)
return;
sm := self.c_sml_flag.ufl_value;
lg := self.c_flag.ufl_value;
c_code := lower (self.c_code.ufl_value);
c_name := self.c_name.ufl_value;
if (length (self.country) and length (sm) = 0)
{
select SmallFlag into sm from Demo.demo.Flags where CountryCode = self.code;
}
if (length (self.country) and length (lg) = 0)
{
select LargeFlag into lg from Demo.demo.Flags where CountryCode = self.code;
}
if (length (c_name) = 0)
{
self.vc_is_valid := 0;
self.vc_error_message := 'The country name cannot be empty';
return;
}
if (length (c_code) <> 2)
{
self.vc_is_valid := 0;
self.vc_error_message := 'The ISO country code should be two letters.';
return;
}
if (length (sm) = 0)
{
self.vc_is_valid := 0;
self.vc_error_message := 'The small flag image cannot be empty';
return;
}
if (length (lg) = 0)
{
self.vc_is_valid := 0;
self.vc_error_message := 'The large flag image cannot be empty';
return;
}
if (c_code <> self.code and exists (select 1 from Demo.demo.Countries where Code = c_code))
{
self.vc_is_valid := 0;
self.vc_error_message := 'A country with same ISO code already exists.';
return;
}
if (length (self.country))
{
update Demo.demo.Countries set Name = c_name,
Code = c_code, SmallFlagDAVResourceName = c_code || '-flag.gif',
LargeFlagDAVResourceName = c_code || '-lgflag.gif'
where Name = self.country;
}
else
{
insert into Demo.demo.Countries (Name, Code, SmallFlagDAVResourceName, LargeFlagDAVResourceName)
values (c_name, c_code, c_code || '-flag.gif', c_code || '-lgflag.gif');
}
if (length (sm) and length (lg))
{
if (length (self.country))
delete from Demo.demo.Flags where CountryCode = self.code;
insert replacing Demo.demo.Flags (CountryCode, SmallFlag, LargeFlag)
values (c_code, sm, lg);
}
update Demo..Countries set SmallFlagDAVResourceURI = '/DAV/sample_data/images/flags/'||SmallFlagDAVResourceName,
LargeFlagDAVResourceURI = '/DAV/sample_data/images/flags/' || LargeFlagDAVResourceName
where Name = c_name;
self.vc_redirect ('c_data.vspx');
]]></v:on-post>
</v:button>
</td>
</tr>
</table>
</v:form>
</v:page>
</body>
</html>
|