You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(146) |
Jun
(188) |
Jul
(11) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: <sv...@de...> - 2005-06-09 20:10:43
|
Author: pcamacho
Date: 2005-06-09 16:10:43 -0400 (Thu, 09 Jun 2005)
New Revision: 1274
Modified:
humano2/trunk/web/portal/site/report.aspx.cs
humano2/trunk/web/portal/site/search.aspx
humano2/trunk/web/portal/site/search.aspx.cs
humano2/trunk/web/portal/site/topbar.aspx
Log:
FIX: bug #178. Can't be fixed completely as there's a problem in viewtool=
s (see #193). A new ticket for report has=20
been opened (#194).
Modified: humano2/trunk/web/portal/site/report.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/report.aspx.cs 2005-06-08 22:55:51 UTC =
(rev 1273)
+++ humano2/trunk/web/portal/site/report.aspx.cs 2005-06-09 20:10:43 UTC =
(rev 1274)
@@ -12,6 +12,7 @@
=20
using System;
using System.Collections;
+using System.Collections.Specialized;
using System.ComponentModel;
using System.Data;
using System.Drawing;
@@ -64,9 +65,8 @@
/// Construct a xml string that represents a view
/// <param name=3D"idView">used to get the params of the view</=
param>
///</summary>
- private string getXmlFromDatableView(DataTable viewRes, int idVi=
ew) =20
+ private string getXmlFromDatableView(DataTable viewRes, int idRe=
port) =20
{
- //adapter dbAdapter =3D userCred.CoreAdapter;
absCrud crud =3D Factory.Crud();
absComplex complex =3D crud.GetCore().Complex;
string xmlString =3D "";
@@ -79,31 +79,31 @@
=20
foreach(DataColumn col in viewRes.Columns)=20
{
- string colName =3D col.ColumnName;
- =20
- if(colName =3D=3D "instanceUrl") //Skip this col
- {=20
- continue;=20
- }
- =20
- if(colName =3D=3D "id_entity") //Skip this col and u=
pdate the list of group attributes
- {=20
- xmlString +=3D"<attribute><value>id_entity</valu=
e><show>0</show></attribute>"; =20
- continue;=20
- }
- if(colName.StartsWith("id_entity")) //Skip this col
- {=20
- continue;=20
- } =20
- xmlString +=3D"<attribute>"; =20
- =20
- //Get the real user column name that corresponds to =
system column name
- string userColName =3D complex.ConvertSysAttNameToUs=
erAttName(colName);
- =20
- xmlString +=3D "<value>"
- + userColName
- + "</value><show>1</show>"; =
=20
- xmlString +=3D "</attribute>";
+ string colName =3D col.ColumnName;
+ =20
+ if(colName =3D=3D "instanceUrl") //Skip this col
+ {=20
+ continue;=20
+ }
+ =20
+ if(colName =3D=3D "id_entity") //Skip this col and updat=
e the list of group attributes
+ {=20
+ xmlString +=3D"<attribute><value>id_entity</value><s=
how>0</show></attribute>"; =20
+ continue;=20
+ }
+ if(colName.StartsWith("id_entity")) //Skip this col
+ {=20
+ continue;=20
+ } =20
+ xmlString +=3D"<attribute>"; =20
+ =20
+ //Get the real user column name that corresponds to syst=
em column name
+ string userColName =3D complex.ConvertSysAttNameToUserAt=
tName(colName);
+ =20
+ xmlString +=3D "<value>"
+ + userColName
+ + "</value><show>1</show>"; =
=20
+ xmlString +=3D "</attribute>";
}
xmlString +=3D "</attributes>";
=20
@@ -167,11 +167,11 @@
}
=20
//If the value corresponds to an attribute o=
f group then add it to the list of values of group
- string valueToCompare;
- =20
- =20
- if(isInArray( Convert.ToString(complex.Con=
vertSysAttNameToIdAttName(auxcolname)),
- getGroupAttributes(idView)))
+ string valueToCompare =3D Convert.ToString(c=
omplex.ConvertSysAttNameToIdAttName(auxcolname));
+ string fullValue;
+ if(isInArray( valueToCompare,
+ getGroupAttributes(idReport)=
,
+ out fullValue)) //Careful: d=
on't use fullValue as many target can have the same fullValue=3D> use the=
NameValueCollection
{
groupValues +=3D row[col] + separator;
}
@@ -182,10 +182,10 @@
//Now add the details for every agrupacion
//DataTable viewParamsTable =3D getViewTableRes(idEntity=
Report, out iniClass);
xmlString +=3D"<details>";
- xmlString +=3D "<attsIdToCompare>" + getXmlGroupAttri=
butes(idView,separator) + "</attsIdToCompare>";
+ xmlString +=3D "<attsIdToCompare>" + getXmlGroupAttri=
butes(idReport,separator) + "</attsIdToCompare>";
xmlString +=3D "<valuesToCompare>" + groupValues + "<=
/valuesToCompare>";
xmlString +=3D "<iniClass>" + Convert.ToString(iniCla=
ss) + "</iniClass>";
- xmlString +=3D "<operators>" + getOperatorsList(idVie=
w,separator) + "</operators>";
+ xmlString +=3D "<operators>" + getOperatorsList(idRep=
ort,separator) + "</operators>";
xmlString +=3D "</details>";
=20
xmlString +=3D "</instance>";
@@ -207,10 +207,10 @@
return columnsTab;
}
=20
- private string getOperatorsList(int viewId, string separator)
+ private string getOperatorsList(int reportId, string separator)
{
string operators =3D "";
- string columns =3D getGroupByParam(viewId);
+ string columns =3D getGroupByParam(reportId);
Logger.Log("getGroupOperatorsList: columns =3D " +columns , =
LogLevel.Trace);
string [] columnsTab =3D columns.Split(new char [] {','}); /=
/Get every single
=20
@@ -218,13 +218,12 @@
{
operators +=3D "4" + separator; //Always the same op
}
- =20
return operators;
}
=20
- private string getXmlGroupAttributes(int viewId, string separato=
r)
+ private string getXmlGroupAttributes(int reportId, string separa=
tor)
{
- string [] listAttGroup =3D getGroupAttributes(viewId);
+ string [] listAttGroup =3D getGroupAttributes(reportId);
string listAttGroupStr =3D "";
=20
for(int i=3D0;i<listAttGroup.Length;i++)
@@ -242,22 +241,49 @@
return res;
}
=20
- private bool isInArray(string value, string [] tab)
+ ///<summary>
+ ///Does two things. First says if a value is in a tab, getting o=
ut the source att for a pertinence. Example
+ /// Tab value | value
+ /// ------------------------- =20
+ /// 10001 | 10001 =3D> TRUE
+ /// 10002 | 10001 =3D> FALSE
+ ///10001^10016 | 10016 =3D> TRUE
+ ///The second thing is that if the search is succesfull then ful=
lValue receives the tabValue that
+ /// performed the search
+ ///<param name=3D"value">Value to search in the tab</param>
+ ///<param name=3D"tab">The tab</param>
+ ///<param name=3D"fullValue">the value updated if search is succ=
essful</param>
+ ///</summary>
+ private bool isInArray(string value, string [] tab, out string f=
ullValue)
{ =20
Logger.Log("isInArray:",LogLevel.Trace);
Logger.Log("value=3D " + value,LogLevel.Trace);
+ =20
for(int i=3D0;i<tab.Length;i++)
{
Logger.Log("tab[" + i + "]=3D " + tab[i],LogLevel.Trace)=
;
=20
- if(tab[i] =3D=3D value)
+ string valueToCompare; =20
+ string [] splitValue =3D tab[i].Split("^".ToCharArray())=
;
+ if(splitValue.Length > 1) //This is a pertinence attribu=
te, ie of the=20
{
+ valueToCompare =3D splitValue[1]; //Take only the ta=
rget of pertinence to do the comparation
+ }
+ else
+ {
+ valueToCompare =3D tab[i]; =20
+ }
+ =20
+ if(valueToCompare =3D=3D value)
+ {
Logger.Log("true",LogLevel.Trace);
- return true; =20
+ fullValue =3D tab[i];
+ return true; //Returns the full id
}
}
Logger.Log("false",LogLevel.Trace);
- return false;
+ fullValue =3D null;
+ return false; //no value founded
}
=20
//FIXME this function exists also (identically) in search.aspx.c=
s
@@ -309,9 +335,46 @@
return viewRes;
}
=20
+ =20
+ ///<summary>
+ ///Here is the problem: when building the xml in getXmlFromDatab=
leView, for the attributes we only get
+ ///the sysAttName that can be converted in a id. But if an attri=
bute is a pertinence, we need to add attFrom^attTo=20
+ ///where attTo is the id of attribute. The only of knowing it (f=
or me yet), is to build an association table using the view of
+ ///report and the list of group columns for the report itself at=
the same time...=20
+ ///[[[ Supposing of course that the order of the columns in the =
report is the same as the order of columns ]]]
+ ///[[[ in the datatable resulting from the view =
]]].
+ ///</summary>
+ ///<param name=3D"viewDt">The datatable resulting from the execu=
tion of the view</param>
+ ///<param name=3D"groupColumns">the list of group columns of the=
report</columns>
+ ///<param name=3D"idReport">The id of current report</param>
+ ///<returns>A NameValueCollection with the needed full ids of at=
tributes</returns>
+ private NameValueCollection getAttributesFullId(DataTable viewDt=
, string groupColumns, int idReport)
+ {
+ absCrud crud =3D Factory.Crud();
+ absComplex complex =3D crud.GetCore().Complex;
+ NameValueCollection res =3D new NameValueCollection();
+ DataRow dr =3D viewDt.Rows[0]; //Only take the first line be=
cause, only the columns matter
+ int index =3D 0;
+ string [] groupAttribs =3D getGroupAttributes(idReport);
+ foreach(DataColumn col in dr.Table.Columns)
+ {
+ string attId =3D Convert.ToString(complex.ConvertSysAttN=
ameToIdAttName(col.ColumnName));
+ string fullId;
+ if(isInArray(attId ,groupAttribs,out fullId)) //fullId i=
s updated
+ {
+ res.Add(Convert.ToString(index),fullId);
+ }
+ else
+ {
+ res.Add(Convert.ToString(index),attId); =20
+ }
+ index++;
+ }
+ return res;
+ }
+ =20
private string [] getReportParams(int reportId)
{
- //adapter dbAdapter =3D userCred.CoreAdapter;
absCrud crud =3D Factory.Crud();
absComplex complex =3D crud.GetCore().Complex;
=20
@@ -342,4 +405,5 @@
#endregion
=20
}
+ =20
}
Modified: humano2/trunk/web/portal/site/search.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/search.aspx 2005-06-08 22:55:51 UTC (re=
v 1273)
+++ humano2/trunk/web/portal/site/search.aspx 2005-06-09 20:10:43 UTC (re=
v 1274)
@@ -1,5 +1,6 @@
<%@ Page language=3D"c#" Codebehind=3D"search.aspx.cs" AutoEventWireup=3D=
"false" Inherits=3D"Portal.site.search" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
+<!-- $Id$ -->
<HTML>
<HEAD>
<title>viewrelations</title>
Property changes on: humano2/trunk/web/portal/site/search.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/search.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/search.aspx.cs 2005-06-08 22:55:51 UTC =
(rev 1273)
+++ humano2/trunk/web/portal/site/search.aspx.cs 2005-06-09 20:10:43 UTC =
(rev 1274)
@@ -7,7 +7,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-// $Id: viewpertinencelist.aspx.cs 641 2005-04-14 05:32:13Z marijn $
+// $Id$
//
=20
using System;
Modified: humano2/trunk/web/portal/site/topbar.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/topbar.aspx 2005-06-08 22:55:51 UTC (re=
v 1273)
+++ humano2/trunk/web/portal/site/topbar.aspx 2005-06-09 20:10:43 UTC (re=
v 1274)
@@ -1,4 +1,5 @@
<%@ Page language=3D"c#" Codebehind=3D"topbar.aspx.cs" AutoEventWireup=3D=
"false" Inherits=3D"Portal.site.topbar" %>
+<!-- $Id$ -->
<html>
<head>
<title>topbar</title>
Property changes on: humano2/trunk/web/portal/site/topbar.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
|
|
From: <sv...@de...> - 2005-06-08 22:55:49
|
Author: pcamacho
Date: 2005-06-08 18:55:51 -0400 (Wed, 08 Jun 2005)
New Revision: 1273
Modified:
humano2/trunk/web/builder/site/xsl/createreport.xsl
humano2/trunk/web/builder/site/xsl/functionindex.xsl
humano2/trunk/web/portal/site/leftbar.aspx.cs
humano2/trunk/web/portal/site/report.aspx.cs
humano2/trunk/web/portal/site/search.aspx.cs
humano2/trunk/web/portal/site/xsl/leftbar.xsl
humano2/trunk/web/portal/site/xsl/report.xsl
Log:
CHANGE: rehabilitation of reports. They still don't work when there is a =
group by a pertinence attribute (does not=20
show details)
Modified: humano2/trunk/web/builder/site/xsl/createreport.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 20:27:=
54 UTC (rev 1272)
+++ humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 22:55:=
51 UTC (rev 1273)
@@ -309,7 +309,7 @@
=20
<!--######################### Havings ##=
########################################## -->
<!-- Commented for now due to a problem =
in showview see bug # -->
- <!--
+ =20
<tr>
<td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
@@ -343,7 +343,7 @@
</script>
</td>
</tr>
- -->
+ =20
<!--######################### END: Havin=
gs ####################################### -->
=20
<!-- ######################## Group colu=
mns ############################## -->
Modified: humano2/trunk/web/builder/site/xsl/functionindex.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-08 20:27=
:54 UTC (rev 1272)
+++ humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-08 22:55=
:51 UTC (rev 1273)
@@ -92,7 +92,7 @@
var child_<xsl:value-of select=3D"id" /> =3D new=
WebFXTreeItem('<xsl:value-of select=3D"name" />',
=
'createreport.aspx?reportId=3D<xsl:value-of select=3D"id" />',
=
'',
- =
'img/webfxtree/report.jpeg');
+ =
'img/webfxtree/reporte.jpeg');
reportBranch.add(child_<xsl:value-of select=3D"i=
d"/>);
</xsl:if> =09
</xsl:for-each>=09
Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 20:27:54 UTC=
(rev 1272)
+++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 22:55:51 UTC=
(rev 1273)
@@ -237,7 +237,6 @@
xmlString +=3D"</views>";
=20
//Get the forms
- =20
xmlString +=3D "<forms>";
string formFilter =3D "1203|4|'" + classId + "'|0|0";
DataTable DTForms =3D dbAdapter.GenerateViewTools(1200,"=
0,1202",formFilter,"","","",0);
@@ -256,6 +255,25 @@
}
xmlString +=3D"</forms>";
=20
+ //Get the reports
+ xmlString +=3D "<reports>";
+ string reportFilter =3D "1306|4|'" + classId + "'|0|0";
+ DataTable DTReports =3D dbAdapter.GenerateViewTools(1300=
,"0,1307",reportFilter,"","","",0);
+ foreach(DataRow reportDr in DTReports.Rows)
+ {
+ int reportId =3D Convert.ToInt32(reportDr["id_entity=
"]);
+ string reportName =3D Convert.ToString(reportDr["rep=
ortName"]);
+ xmlString +=3D "<report>";
+ xmlString +=3D "<link>";
+ xmlString +=3D "report.aspx?id_entity=3D" + r=
eportId+ "&classId=3D" + classId;
+ xmlString +=3D "</link>";
+ xmlString +=3D "<text>";
+ xmlString +=3D reportName; =20
+ xmlString +=3D "</text>";
+ xmlString +=3D "</report>"; =20
+ }
+ xmlString +=3D"</reports>";
+ =20
xmlString +=3D"</class>";
}
xmlString +=3D "</classes>";
Modified: humano2/trunk/web/portal/site/report.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/report.aspx.cs 2005-06-08 20:27:54 UTC =
(rev 1272)
+++ humano2/trunk/web/portal/site/report.aspx.cs 2005-06-08 22:55:51 UTC =
(rev 1273)
@@ -7,7 +7,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-// $Id: showView.aspx.cs 898 2005-05-09 15:19:36Z marijn $
+// $Id$
//
=20
using System;
@@ -50,24 +50,10 @@
{
string xmlString =3D""; //the result string
=20
- //adapter dbAdapter =3D userCred.CoreAdapter;
- //absCrud crud =3D Factory.Crud();
- //absComplex complex =3D crud.GetCore().Complex;
- =20
- //Mandamos el id de la instancia "vista"
- =20
- //string orderArr;
- //int page;
iniClass =3D 0;
idEntityReport =3D Convert.ToInt32(Request.QueryString["id_e=
ntity"]);
- //orderArr =3D Convert.ToString(Request.QueryString["order"]=
);
- //page =3D Convert.ToInt32(Request.QueryString["page"]);
=20
DataTable viewRes =3D getViewTableRes(idEntityReport, out in=
iClass); //For a report
- //DataTable viewTable =3D dbAdapter.GetViewDataTableFromId(i=
dEntityReport, out iniClass); //For a view
- // If there are multiple "order" arguments, they should be s=
eperated by ",";
- // The framework already puts a "," between multiple "order =
arguments.
- //DataTable viewRes =3D dbAdapter.ExecViewFromDataTable(iniC=
lass, viewTable, idEntityReport, "", 0,0);
=20
xmlString =3D getXmlFromDatableView(viewRes,idEntityReport);=
=20
Logger.Log("report: xml: " + xmlString ,LogLevel.Trace);
@@ -78,14 +64,13 @@
/// Construct a xml string that represents a view
/// <param name=3D"idView">used to get the params of the view</=
param>
///</summary>
- =20
private string getXmlFromDatableView(DataTable viewRes, int idVi=
ew) =20
{
//adapter dbAdapter =3D userCred.CoreAdapter;
absCrud crud =3D Factory.Crud();
absComplex complex =3D crud.GetCore().Complex;
string xmlString =3D "";
- string separator =3D "^";
+ string separator =3D ";";
=20
xmlString =3D "<instances>";
=20
@@ -182,7 +167,11 @@
}
=20
//If the value corresponds to an attribute o=
f group then add it to the list of values of group
- if(isInArray(complex.ConvertSysAttNameToIdAt=
tName(auxcolname),getGroupAttributes(idView)))
+ string valueToCompare;
+ =20
+ =20
+ if(isInArray( Convert.ToString(complex.Con=
vertSysAttNameToIdAttName(auxcolname)),
+ getGroupAttributes(idView)))
{
groupValues +=3D row[col] + separator;
}
@@ -192,7 +181,6 @@
=20
//Now add the details for every agrupacion
//DataTable viewParamsTable =3D getViewTableRes(idEntity=
Report, out iniClass);
- =20
xmlString +=3D"<details>";
xmlString +=3D "<attsIdToCompare>" + getXmlGroupAttri=
butes(idView,separator) + "</attsIdToCompare>";
xmlString +=3D "<valuesToCompare>" + groupValues + "<=
/valuesToCompare>";
@@ -208,30 +196,22 @@
return xmlString;
}
=20
- private int [] getGroupAttributes(int reportId)
+ private string [] getGroupAttributes(int reportId)
{
- =20
string columns =3D getGroupByParam(reportId);
Logger.Log("getGroupAttributes: columns =3D " +columns , Log=
Level.Trace);
string [] columnsTab =3D columns.Split(new char [] {','}); /=
/Get every single
=20
Logger.Log("getGroupAttributes: columnsTab.Length =3D " + co=
lumnsTab.Length , LogLevel.Trace);
=20
- int [] listAttGroup =3D new int [columnsTab.Length];
- Logger.Log("getGroupAttributes: listAttGroup.Length =3D " + =
listAttGroup.Length , LogLevel.Trace);
- for(int i=3D0;i<listAttGroup.Length; i++)
- {
- listAttGroup[i] =3D Convert.ToInt32(columnsTab[i]); //Re=
move the left part of column 10024|1 -> 10024
- }
- =20
- return listAttGroup;
+ return columnsTab;
}
=20
private string getOperatorsList(int viewId, string separator)
{
string operators =3D "";
string columns =3D getGroupByParam(viewId);
- Logger.Log("getGroupAttributes: columns =3D " +columns , Log=
Level.Trace);
+ Logger.Log("getGroupOperatorsList: columns =3D " +columns , =
LogLevel.Trace);
string [] columnsTab =3D columns.Split(new char [] {','}); /=
/Get every single
=20
for(int i=3D0;i<columnsTab.Length; i++)
@@ -244,37 +224,39 @@
=20
private string getXmlGroupAttributes(int viewId, string separato=
r)
{
- int [] listAttGroup =3D getGroupAttributes(viewId);
+ string [] listAttGroup =3D getGroupAttributes(viewId);
string listAttGroupStr =3D "";
=20
for(int i=3D0;i<listAttGroup.Length;i++)
{
- listAttGroupStr +=3D Convert.ToString(listAttGroup[i]) +=
separator;
+ listAttGroupStr +=3D listAttGroup[i] + separator;
}
- =20
return listAttGroupStr;
}
=20
private string getGroupByParam(int reportId)
{
- //adapter dbAdapter =3D userCred.CoreAdapter;
absCrud crud =3D Factory.Crud();
absComplex complex =3D crud.GetCore().Complex;
- =20
string res =3D complex.GetParamsReport(reportId)[3];
- =20
return res;
}
=20
- private bool isInArray(int value, int [] tab)
+ private bool isInArray(string value, string [] tab)
{ =20
+ Logger.Log("isInArray:",LogLevel.Trace);
+ Logger.Log("value=3D " + value,LogLevel.Trace);
for(int i=3D0;i<tab.Length;i++)
{
+ Logger.Log("tab[" + i + "]=3D " + tab[i],LogLevel.Trace)=
;
+ =20
if(tab[i] =3D=3D value)
{
+ Logger.Log("true",LogLevel.Trace);
return true; =20
}
}
+ Logger.Log("false",LogLevel.Trace);
return false;
}
=20
Property changes on: humano2/trunk/web/portal/site/report.aspx.cs
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/search.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/search.aspx.cs 2005-06-08 20:27:54 UTC =
(rev 1272)
+++ humano2/trunk/web/portal/site/search.aspx.cs 2005-06-08 22:55:51 UTC =
(rev 1273)
@@ -95,7 +95,7 @@
Logger.Log("search: list of attributes =3D " + dr["columna"]=
,LogLevel.Trace);
=20
//Explicacion de los filtros...
- char separator =3D '^';
+ char separator =3D ';';
dr["filtros"] =3D getFilters(idAttributes,idOperators,values=
ToSearch,separator);
Logger.Log("search: filtros =3D " + dr["filtros"],LogLevel.T=
race);
=20
Modified: humano2/trunk/web/portal/site/xsl/leftbar.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-08 20:27:54 UTC=
(rev 1272)
+++ humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-08 22:55:51 UTC=
(rev 1273)
@@ -47,44 +47,50 @@
var title =3D '<xsl:value-of sel=
ect=3D"text"/>';
<xsl:value-of select=3D"$classVa=
rName" />.add(new WebFXTreeItem(title,content,'','img/webfxtree/crearinst=
ance.jpeg'));
</xsl:for-each>
+ <!--List all reports for class -->
+ <xsl:for-each select=3D"reports/repo=
rt">
+ var content =3D '<xsl:value-of s=
elect=3D"link"/>';
+ var title =3D '<xsl:value-of sel=
ect=3D"text"/>';
+ <xsl:value-of select=3D"$classVa=
rName" />.add(new WebFXTreeItem(title,content,'','img/webfxtree/reporte.j=
peg'));
+ </xsl:for-each>
</xsl:if>
</xsl:for-each>
</xsl:if>
=20
<xsl:if test=3D"folders"><!--Para Folders-->
- <xsl:for-each select=3D"/folders/folder">
- <xsl:variable name=3D"idFolder" select=3D"id"/>
- var tree_<xsl:value-of select=3D"$idFolder" /> =3D new WebFXTre=
eItem('<xsl:value-of select=3D"name" />','');
+ <xsl:for-each select=3D"/folders/folder">
+ <xsl:variable name=3D"idFolder" select=3D=
"id"/>
+ var tree_<xsl:value-of select=3D"$idFold=
er" /> =3D new WebFXTreeItem('<xsl:value-of select=3D"name" />','');
=20
- <xsl:if test=3D"parent=3D''">
- tree.add(tree_<xsl:value-of select=3D"$idFolder"/>);
- </xsl:if> =09
+ <xsl:if test=3D"parent=3D''">
+ tree.add(tree_<xsl:value-of select=3D"$i=
dFolder"/>);
+ </xsl:if> =09
=20
- <xsl:if test=3D"parent!=3D''">
- tree_<xsl:value-of select=3D"parent"/>.add(tree_<xsl:value-of s=
elect=3D"$idFolder"/>);
- </xsl:if> =09
- =09
- <xsl:for-each select=3D"form">
- <xsl:if test=3D"id!=3D''">
- <xsl:if test=3D"type!=3D''">
- var child_<xsl:value-of select=3D"id" /> =3D new WebFXTreeIte=
m('<xsl:value-of select=3D"name" />','Data_structured.aspx?action=3Dcreat=
e&display=3DreadXslt.aspx&id_entity=3D<xsl:value-of select=3D"cla=
ssId" />&formsId=3D<xsl:value-of select=3D"id" />','','img/webfxtree/=
crearinstance.jpeg');
- </xsl:if> =09
- <xsl:if test=3D"type=3D''">
- var child_<xsl:value-of select=3D"id" /> =3D new WebFXTreeIte=
m('<xsl:value-of select=3D"name" />','Data_structured.aspx?id_entity=3D<x=
sl:value-of select=3D"id" />&classId=3D<xsl:value-of select=3D"classI=
d" />','','img/webfxtree/view.jpeg');
- </xsl:if> =09
- tree_<xsl:value-of select=3D"$idFolder"/>.add(child_<xsl:value=
-of select=3D"id"/>);
- </xsl:if> =09
- </xsl:for-each>=09
+ <xsl:if test=3D"parent!=3D''">
+ tree_<xsl:value-of select=3D"parent"/>.a=
dd(tree_<xsl:value-of select=3D"$idFolder"/>);
+ </xsl:if> =09
+ =20
+ <xsl:for-each select=3D"form">
+ <xsl:if test=3D"id!=3D''">
+ <xsl:if test=3D"type!=3D''">
+ var child_<xsl:value-of select=3D=
"id" /> =3D new WebFXTreeItem('<xsl:value-of select=3D"name" />','Data_st=
ructured.aspx?action=3Dcreate&display=3DreadXslt.aspx&id_entity=3D=
<xsl:value-of select=3D"classId" />&formsId=3D<xsl:value-of select=3D=
"id" />','','img/webfxtree/crearinstance.jpeg');
+ </xsl:if> =09
+ <xsl:if test=3D"type=3D''">
+ var child_<xsl:value-of select=3D=
"id" /> =3D new WebFXTreeItem('<xsl:value-of select=3D"name" />','Data_st=
ructured.aspx?id_entity=3D<xsl:value-of select=3D"id" />&classId=3D<x=
sl:value-of select=3D"classId" />','','img/webfxtree/view.jpeg');
+ </xsl:if> =09
+ tree_<xsl:value-of select=3D"$idFold=
er"/>.add(child_<xsl:value-of select=3D"id"/>);
+ </xsl:if> =09
+ </xsl:for-each>=09
<!--SVERA Inicio seccion Report --> =09
- <xsl:for-each select=3D"report">
- <xsl:if test=3D"id!=3D''">
- var child_<xsl:value-of select=3D"id" /> =3D new WebFXTreeIte=
m('<xsl:value-of select=3D"name" />','report.aspx?id_entity=3D<xsl:value-=
of select=3D"id" />&classId=3D<xsl:value-of select=3D"classId" />',''=
,'img/webfxtree/reporte.jpeg');
- <!-- </xsl:if> --> =09
- tree_<xsl:value-of select=3D"$idFolder"/>.add(child_<xsl:value=
-of select=3D"id"/>);
- </xsl:if> =09
- </xsl:for-each>
+ <xsl:for-each select=3D"report">
+ <xsl:if test=3D"id!=3D''">
+ var child_<xsl:value-of select=3D=
"id" /> =3D new WebFXTreeItem('<xsl:value-of select=3D"name" />','report.=
aspx?id_entity=3D<xsl:value-of select=3D"id" />&classId=3D<xsl:value-=
of select=3D"classId" />','','img/webfxtree/reporte.jpeg');
+ <!-- </xsl:if> --> =09
+ tree_<xsl:value-of select=3D"$idFold=
er"/>.add(child_<xsl:value-of select=3D"id"/>);
+ </xsl:if> =09
+ </xsl:for-each>
<!-- Fin seccion Report --> =09
- </xsl:for-each><!--Para Folders-->
+ </xsl:for-each><!--Para Folders-->
</xsl:if>
=20
document.write(tree);
Modified: humano2/trunk/web/portal/site/xsl/report.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/xsl/report.xsl 2005-06-08 20:27:54 UTC =
(rev 1272)
+++ humano2/trunk/web/portal/site/xsl/report.xsl 2005-06-08 22:55:51 UTC =
(rev 1273)
@@ -1,4 +1,5 @@
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!-- $Id$ -->
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
<xsl:output method=3D"html" />
<xsl:template match=3D"/">
@@ -36,14 +37,14 @@
</td>
<xsl:for-each select=3D"/instances/attributes/at=
tribute">
<xsl:if test=3D"$FieldCount+1 >=3D position()=
">
- <xsl:if test=3D"show =3D'1'">
- <td width=3D"10%" class=3D"topcenter=
-tables2">
- <a href=3D"javascript:PageOrder(=
'{/instances/infoView/id_entity}','{/instances/infoView/classId}','{idCol=
umn}','{/instances/infoView/order}')" class=3D"links-bold" target=3D"_se=
lf">
- <xsl:value-of disable-output-=
escaping=3D"yes" select=3D"value"/>
- </a>
- </td>
+ <xsl:if test=3D"show =3D'1'">
+ <td width=3D"10%" class=3D"topcenter-tab=
les2">
+ <a href=3D"javascript:PageOrder('{/i=
nstances/infoView/id_entity}','{/instances/infoView/classId}','{idColumn}=
','{/instances/infoView/order}')" class=3D"links-bold" target=3D"_self">
+ <xsl:value-of disable-output-esca=
ping=3D"yes" select=3D"value"/>
+ </a>
+ </td>
+ </xsl:if>
</xsl:if>
- </xsl:if>
</xsl:for-each>
</tr>
=20
@@ -119,8 +120,6 @@
</xsl:if>
</xsl:for-each>
=20
- =20
- =20
</tr>
<!-- iframe tr -->
<xsl:variable name=3D"tdIframeVarJs" select=3D"c=
oncat('tdIframe',position())" />
Property changes on: humano2/trunk/web/portal/site/xsl/report.xsl
___________________________________________________________________
Name: svn:keywords
+ Id
|
|
From: <sv...@de...> - 2005-06-08 20:27:53
|
Author: pcamacho
Date: 2005-06-08 16:27:54 -0400 (Wed, 08 Jun 2005)
New Revision: 1272
Added:
humano2/trunk/core/schema/pgsql/pgsql-9-HelpDeskSMB.sql
Removed:
humano2/trunk/core/schema/pgsql/pgsql-9-HelpDesk SMB.sql
Modified:
humano2/trunk/web/builder/site/functionoperationbar.aspx
humano2/trunk/web/builder/site/xsl/createreport.xsl
humano2/trunk/web/builder/site/xsl/functionindex.xsl
Log:
CHANGE: name of files should not have space.
Deleted: humano2/trunk/core/schema/pgsql/pgsql-9-HelpDesk SMB.sql
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/schema/pgsql/pgsql-9-HelpDesk SMB.sql 2005-06-08 2=
0:09:26 UTC (rev 1271)
+++ humano2/trunk/core/schema/pgsql/pgsql-9-HelpDesk SMB.sql 2005-06-08 2=
0:27:54 UTC (rev 1272)
@@ -1,234 +0,0 @@
-
-CREATE TABLE "d10160cAsset" (
- id_entity integer NOT NULL,
- "c10165Name" character varying(20),
- "c10165Serial Nr." character varying(20),
- "c10165Details" pg_catalog.text,
- "c10165User" integer,
- "c10165Purchase Data" timestamp without time zone,
- "c10165User1" integer
-);
-
-CREATE TABLE "d10160cAsset Type" (
- id_entity integer NOT NULL,
- "c10213Type Name" character varying(20)
-);
-
-
-CREATE TABLE "d10160cProblem Type" (
- id_entity integer NOT NULL,
- "c10189Problem Type" character varying(20)
-);
-
-
-CREATE TABLE "d10160cTicket" (
- id_entity integer NOT NULL,
- "c10162Title" character varying(20),
- "c10162Detail" pg_catalog.text,
- "c10162Request by" integer,
- "c10162Assigned to" integer,
- "c10162Assigned to1" integer,
- "c10162Status" integer,
- "c10162Solution Detail" pg_catalog.text,
- "c10162Problem Type" integer,
- "c10162Attachment" character varying(255),
- "c10162Date" timestamp without time zone,
- "c10162Resolution Date" timestamp without time zone,
- "c10162Request by1" integer,
- "c10162Assigned to2" integer,
- "c10162Assigned to3" integer
-);
-
-CREATE TABLE "d10160cTicket Status" (
- id_entity integer NOT NULL,
- "c10163Status Name" character varying(20)
-);
-
-INSERT INTO "domain" (id_entity, "domainName", "statusDomain") VALUES (1=
0160, 'HelpDesk SMB', NULL);
-
-INSERT INTO user_domain (id_entity, "userTable", "domainTable") VALUES (=
10161, 110, 10160);
-
-
-INSERT INTO "class" (id_entity, "classType", "sysName", name, "parentId"=
, "isAbstract", "isHidden", "descClass") VALUES (10162, 29, 'd10160cTicke=
t', 'Ticket', 3, false, false, NULL);
-INSERT INTO "class" (id_entity, "classType", "sysName", name, "parentId"=
, "isAbstract", "isHidden", "descClass") VALUES (10163, 29, 'd10160cTicke=
t Status', 'Ticket Status', 3, false, false, NULL);
-INSERT INTO "class" (id_entity, "classType", "sysName", name, "parentId"=
, "isAbstract", "isHidden", "descClass") VALUES (10165, 29, 'd10160cAsset=
', 'Asset', 3, false, false, NULL);
-INSERT INTO "class" (id_entity, "classType", "sysName", name, "parentId"=
, "isAbstract", "isHidden", "descClass") VALUES (10189, 29, 'd10160cProbl=
em Type', 'Problem Type', 3, false, false, NULL);
-INSERT INTO "class" (id_entity, "classType", "sysName", name, "parentId"=
, "isAbstract", "isHidden", "descClass") VALUES (10213, 29, 'd10160cAsset=
Type', 'Asset Type', 3, false, false, NULL);
-
-
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10160, 10, 6, '2005-06-03 13:42:40.382654=
', '2005-06-03 13:42:40.382654', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10161, 10, 26, '2005-06-03 13:42:40.38265=
4', '2005-06-03 13:42:40.382654', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10183, 10160, 13, '2005-06-03 13:49:23.35=
705', '2005-06-03 13:50:51.900709', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10188, 10160, 13, '2005-06-03 13:51:06.95=
1818', '2005-06-03 13:51:06.951818', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10191, 10160, 1011, '2005-06-03 13:52:08.=
746904', '2005-06-03 14:00:51.690467', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10180, 10160, 1011, '2005-06-03 13:49:03.=
157439', '2005-06-03 14:01:03.294255', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10213, 10160, 2, '2005-06-03 14:01:25.703=
696', '2005-06-03 14:01:25.703696', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10217, 10160, 8, '2005-06-03 14:02:01.815=
791', '2005-06-03 14:02:01.815791', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10211, 10160, 1400, '2005-06-03 14:00:13.=
606343', '2005-06-03 14:09:25.558326', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10169, 10160, 13, '2005-06-03 13:45:57.32=
3388', '2005-06-03 14:22:30.991451', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10168, 10160, 8, '2005-06-03 13:45:43.336=
775', '2005-06-03 14:25:37.287955', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10208, 10160, 12, '2005-06-03 13:58:04.81=
2695', '2005-06-03 14:26:15.834796', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10192, 10160, 81, '2005-06-03 13:52:32.32=
6281', '2005-06-03 14:28:15.268152', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10229, 10160, 81, '2005-06-03 14:39:34.53=
7608', '2005-06-03 14:40:29.939294', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10231, 10160, 81, '2005-06-03 14:42:01.61=
6166', '2005-06-03 14:42:19.932286', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10182, 10160, 1011, '2005-06-03 13:49:16.=
240216', '2005-06-03 14:46:42.304934', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10228, 10160, 1300, '2005-06-03 14:19:33.=
34587', '2005-06-03 14:53:13.709408', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10234, 10160, 81, '2005-06-03 14:54:09.56=
251', '2005-06-03 14:54:09.56251', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10167, 10160, 1011, '2005-06-03 13:45:32.=
65888', '2005-06-03 14:55:26.309087', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10187, 10160, 81, '2005-06-03 13:50:34.47=
0391', '2005-06-03 14:56:52.144244', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10162, 10160, 2, '2005-06-03 13:43:27.916=
665', '2005-06-03 13:43:27.916665', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10163, 10160, 2, '2005-06-03 13:43:46.308=
109', '2005-06-03 13:43:46.308109', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10165, 10160, 2, '2005-06-03 13:45:18.909=
72', '2005-06-03 13:45:18.90972', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10166, 10160, 8, '2005-06-03 13:45:32.568=
103', '2005-06-03 13:45:32.568103', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10179, 10160, 8, '2005-06-03 13:49:03.037=
233', '2005-06-03 13:49:03.037233', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10189, 10160, 2, '2005-06-03 13:51:55.936=
952', '2005-06-03 13:51:55.936952', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10190, 10160, 8, '2005-06-03 13:52:08.663=
398', '2005-06-03 13:52:08.663398', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10171, 10160, 1011, '2005-06-03 13:46:14.=
711256', '2005-06-03 14:11:48.27411', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10218, 10160, 1011, '2005-06-03 14:02:01.=
896462', '2005-06-03 14:12:17.918998', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10216, 10160, 1011, '2005-06-03 14:01:49.=
2393', '2005-06-03 14:12:32.141613', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10207, 10160, 12, '2005-06-03 13:57:45.49=
2882', '2005-06-03 14:22:45.989972', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10181, 10160, 8, '2005-06-03 13:49:16.159=
46', '2005-06-03 14:26:07.052118', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10209, 10160, 12, '2005-06-03 13:58:16.05=
7463', '2005-06-03 14:28:37.025827', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10212, 10160, 1400, '2005-06-03 14:00:21.=
580172', '2005-06-03 14:41:01.392034', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10227, 10160, 1011, '2005-06-03 14:14:50.=
273608', '2005-06-03 14:46:50.975127', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10226, 10160, 1011, '2005-06-03 14:14:03.=
451426', '2005-06-03 14:46:59.017467', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10210, 10160, 1400, '2005-06-03 14:00:06.=
409507', '2005-06-03 14:53:42.120173', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10193, 10160, 39, '2005-06-03 13:52:55.97=
5696', '2005-06-03 14:56:44.293002', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10194, 10160, 10163, '2005-06-03 13:53:51=
.821092', '2005-06-03 13:53:51.821092', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10195, 10160, 10163, '2005-06-03 13:53:59=
.706222', '2005-06-03 13:53:59.706222', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10196, 10160, 10189, '2005-06-03 13:54:17=
.310243', '2005-06-03 13:54:17.310243', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10197, 10160, 10189, '2005-06-03 13:54:46=
.136202', '2005-06-03 13:54:46.136202', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10198, 10160, 10189, '2005-06-03 13:54:53=
.731381', '2005-06-03 13:54:53.731381', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10199, 10160, 10189, '2005-06-03 13:55:04=
.593734', '2005-06-03 13:55:04.593734', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10200, 10160, 10189, '2005-06-03 13:55:17=
.971074', '2005-06-03 13:55:17.971074', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10201, 10160, 10189, '2005-06-03 13:55:41=
.042234', '2005-06-03 13:55:41.042234', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10202, 10160, 10189, '2005-06-03 13:55:49=
.192745', '2005-06-03 13:55:49.192745', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10203, 10160, 10189, '2005-06-03 13:56:15=
.128508', '2005-06-03 13:56:15.128508', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10204, 10160, 10189, '2005-06-03 13:56:25=
.237106', '2005-06-03 13:56:25.237106', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10205, 10160, 10189, '2005-06-03 13:56:36=
.198424', '2005-06-03 13:56:36.198424', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10206, 10160, 10189, '2005-06-03 13:56:46=
.303592', '2005-06-03 13:56:46.303592', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10221, 10160, 10213, '2005-06-03 14:03:01=
.731759', '2005-06-03 14:03:01.731759', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10222, 10160, 10213, '2005-06-03 14:03:11=
.262688', '2005-06-03 14:03:11.262688', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10223, 10160, 10213, '2005-06-03 14:03:19=
.212243', '2005-06-03 14:03:19.212243', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10224, 10160, 10213, '2005-06-03 14:03:27=
.729589', '2005-06-03 14:03:27.729589', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10225, 10160, 10213, '2005-06-03 14:03:34=
.714994', '2005-06-03 14:03:34.714994', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10233, 10160, 10162, '2005-06-03 14:48:54=
.39211', '2005-06-03 14:48:54.809633', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10235, 10160, 10165, '2005-06-03 14:54:50=
.088007', '2005-06-03 14:55:44.129858', NULL, NULL);
-INSERT INTO entity (id_entity, "domainId", "class", "createDate", "modDa=
te", "delDate", status) VALUES (10232, 10160, 10162, '2005-06-03 14:43:15=
.241259', '2005-06-03 14:57:13.749824', NULL, NULL);
-
-
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10183, 10162, 'c10162Detail', 'Problem Detail', 0.00, false,=
true, false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10188, 10162, 'c10162Solution Detail', 'Solution Detail', 0.=
00, false, true, false, true, false, false, false, false, NULL, false, NU=
LL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10217, 10213, 'c10213Type Name', 'Type Name', 0.00, false, t=
rue, false, true, false, true, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10169, 10165, 'c10165Details', 'Details', 10.00, false, true=
, false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10168, 10165, 'c10165Serial Nr.', 'Serial Nr.', 4.00, false,=
true, false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10208, 10162, 'c10162Date', 'Date', -9.00, false, true, fals=
e, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10192, 10162, 'c10162Problem Type', 'Problem Type', -4.00, f=
alse, true, false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10229, 10162, 'c10162Request by1', 'Request by', -5.00, fals=
e, true, true, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10231, 10162, 'c10162Assigned to3', 'Assigned to', 0.00, fal=
se, true, true, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10234, 10165, 'c10165User1', 'User', 0.00, false, true, true=
, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10187, 10162, 'c10162Status', 'Status', 15.00, false, true, =
false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10166, 10165, 'c10165Name', 'Name', 0.00, false, true, false=
, true, false, true, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10179, 10163, 'c10163Status Name', 'Status Name', 0.00, fals=
e, true, false, true, false, true, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10190, 10189, 'c10189Problem Type', 'Problem Type', 0.00, fa=
lse, true, false, true, false, true, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10207, 10165, 'c10165Purchase Data', 'Purchase Date', 5.00, =
false, true, false, true, false, false, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10181, 10162, 'c10162Title', 'Title', -10.00, false, true, f=
alse, true, false, true, false, false, NULL, false, NULL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10209, 10162, 'c10162Resolution Date', 'Resolution Date', 8.=
00, false, true, false, true, false, false, false, false, NULL, false, NU=
LL);
-INSERT INTO attribute (id_entity, "classId", "sysAttName", "attName", "o=
rder", "isObligatory", "isActive", "isSearchable", "isEditable", "isSelfL=
ookup", "isPrimary", "isUnique", "isVirtual", "descAtt", protection, disp=
lay) VALUES (10193, 10162, 'c10162Attachment', 'Attachment', 20.00, false=
, true, false, true, false, false, false, false, NULL, false, NULL);
-
-
-INSERT INTO "dateTime" (id_entity, format, "dispHours", custom) VALUES (=
10207, NULL, NULL, NULL);
-INSERT INTO "dateTime" (id_entity, format, "dispHours", custom) VALUES (=
10208, NULL, NULL, NULL);
-INSERT INTO "dateTime" (id_entity, format, "dispHours", custom) VALUES (=
10209, NULL, NULL, NULL);
-
-
-INSERT INTO file (id_entity, maxsize, path, extensions, link) VALUES (10=
193, 100000, NULL, NULL, true);
-
-
-INSERT INTO folder (id_entity, "folderName", "folderParent", "folderForm=
s") VALUES (10211, 'Assets', 0, '10167');
-INSERT INTO folder (id_entity, "folderName", "folderParent", "folderForm=
s") VALUES (10212, 'Users and Setup', 0, '10191,10180,10218');
-INSERT INTO folder (id_entity, "folderName", "folderParent", "folderForm=
s") VALUES (10210, 'Tickets', 0, '10227,10226');
-
-
-INSERT INTO pertinence (id_entity, "owner", "to", ratio, "parentPertinen=
ce", "visualAttrib", "filterView") VALUES (10192, 10192, 10189, 'n:1', NU=
LL, NULL, NULL);
-INSERT INTO pertinence (id_entity, "owner", "to", ratio, "parentPertinen=
ce", "visualAttrib", "filterView") VALUES (10229, 10229, 7, 'n:1', NULL, =
NULL, NULL);
-INSERT INTO pertinence (id_entity, "owner", "to", ratio, "parentPertinen=
ce", "visualAttrib", "filterView") VALUES (10231, 10231, 7, 'n:1', NULL, =
NULL, NULL);
-INSERT INTO pertinence (id_entity, "owner", "to", ratio, "parentPertinen=
ce", "visualAttrib", "filterView") VALUES (10234, 10234, 7, 'n:1', NULL, =
NULL, NULL);
-INSERT INTO pertinence (id_entity, "owner", "to", ratio, "parentPertinen=
ce", "visualAttrib", "filterView") VALUES (10187, 10187, 10163, 'n:1', NU=
LL, NULL, NULL);
-
-
-INSERT INTO report (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassReport", "reportName") VALUES (10228, '10181|1,10187^10179',=
NULL, '10187^10179', NULL, NULL, 10162, 'Tickets by Assignment');
-
-
-INSERT INTO text (id_entity, "rows", cols, "isHtml") VALUES (10183, 7, 3=
0, false);
-INSERT INTO text (id_entity, "rows", cols, "isHtml") VALUES (10188, 7, 3=
0, false);
-INSERT INTO text (id_entity, "rows", cols, "isHtml") VALUES (10169, 7, 3=
0, false);
-
-
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10166, 20, NULL, NULL, NULL);
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10179, 20, NULL, NULL, NULL);
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10190, 20, NULL, NULL, NULL);
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10217, 20, NULL, NULL, NULL);
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10168, 20, NULL, NULL, NULL);
-INSERT INTO textline (id_entity, "maxLength", "minLength", "defaultText"=
, "dispSize") VALUES (10181, 20, NULL, NULL, NULL);
-
-
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10218, '0,10217', NULL, NULL, NUL=
L, NULL, 10213, 'Asset Type Pick List');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10227, '0,10181,10208,10231^18,10=
209', '10187^10179|7|''closed''|0|0', NULL, NULL, NULL, 10162, 'Closed Ti=
ckets');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10226, '0,10181,10208,10231^18,10=
187^10179', '10187^10179|7|''open''|0|0', NULL, NULL, NULL, 10162, 'Open =
Tickets');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10191, '0,10190', NULL, NULL, NUL=
L, NULL, 10189, 'Problem Type Pick List');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10180, '0,10179', NULL, NULL, NUL=
L, NULL, 10163, 'Ticket Status Pick List');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10182, '0,10181,10208,10231^18,10=
187^10179', NULL, NULL, NULL, NULL, 10162, 'All Tickets');
-INSERT INTO "view" (id_entity, columns, "where", groupby, "having", "ord=
er", "idClassView", "viewName") VALUES (10167, '0,10166,10168,10207,10169=
', NULL, NULL, NULL, NULL, 10165, 'All Assets');
-
-
-INSERT INTO "d10160cAsset" (id_entity, "c10165Name", "c10165Serial Nr.",=
"c10165Details", "c10165User", "c10165Purchase Data", "c10165User1") VAL=
UES (10235, 'PC Work Station', '453345345', 'Dell Work Station with Monit=
or VisewSonic 14F', NULL, '2005-06-14 00:00:00', 110);
-
-INSERT INTO "d10160cAsset Type" (id_entity, "c10213Type Name") VALUES (1=
0221, 'PC Work Station');
-INSERT INTO "d10160cAsset Type" (id_entity, "c10213Type Name") VALUES (1=
0222, 'PC Notebook');
-INSERT INTO "d10160cAsset Type" (id_entity, "c10213Type Name") VALUES (1=
0223, 'Monitor');
-INSERT INTO "d10160cAsset Type" (id_entity, "c10213Type Name") VALUES (1=
0224, 'Printer');
-INSERT INTO "d10160cAsset Type" (id_entity, "c10213Type Name") VALUES (1=
0225, 'Other');
-
-
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10196, 'Conectivity');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10197, 'Bug');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10198, 'Crash');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10199, 'Priniting');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10200, 'System Start-up');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10201, 'Audio Visual');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10202, 'Virus');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10203, 'eMail');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10204, 'Software - Windows');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10205, 'Software - Office');
-INSERT INTO "d10160cProblem Type" (id_entity, "c10189Problem Type") VALU=
ES (10206, 'Software - Outlook');
-
-
-INSERT INTO "d10160cTicket" (id_entity, "c10162Title", "c10162Detail", "=
c10162Request by", "c10162Assigned to", "c10162Assigned to1", "c10162Stat=
us", "c10162Solution Detail", "c10162Problem Type", "c10162Attachment", "=
c10162Date", "c10162Resolution Date", "c10162Request by1", "c10162Assigne=
d to2", "c10162Assigned to3") VALUES (10233, 'Internet Down', 'User can n=
ot connect to the Internet', NULL, NULL, NULL, 10194, NULL, 10196, NULL, =
'2005-06-03 00:00:00', '2005-06-03 00:00:00', 110, NULL, 110);
-INSERT INTO "d10160cTicket" (id_entity, "c10162Title", "c10162Detail", "=
c10162Request by", "c10162Assigned to", "c10162Assigned to1", "c10162Stat=
us", "c10162Solution Detail", "c10162Problem Type", "c10162Attachment", "=
c10162Date", "c10162Resolution Date", "c10162Request by1", "c10162Assigne=
d to2", "c10162Assigned to3") VALUES (10232, 'PC does not startup', 'PC d=
oes not startup', NULL, NULL, NULL, 10195, 'PC was not plugged in. I plug=
ged in the PC. Now the PC works fine. User happy.', 10200, NULL, '2005-06=
-03 00:00:00', '2005-06-03 00:00:00', 110, NULL, 110);
-
-
-INSERT INTO "d10160cTicket Status" (id_entity, "c10163Status Name") VALU=
ES (10194, 'open');
-INSERT INTO "d10160cTicket Status" (id_entity, "c10163Status Name") VALU=
ES (10195, 'closed');
-
-
-ALTER TABLE ONLY "d10160cAsset Type"
- ADD CONSTRAINT "d10160cAsset Type_pkey" PRIMARY KEY (id_entity);
-
-ALTER TABLE ONLY "d10160cAsset"
- ADD CONSTRAINT "d10160cAsset_pkey" PRIMARY KEY (id_entity);
-
-
-
-ALTER TABLE ONLY "d10160cProblem Type"
- ADD CONSTRAINT "d10160cProblem Type_pkey" PRIMARY KEY (id_entity);
-
-
-ALTER TABLE ONLY "d10160cTicket Status"
- ADD CONSTRAINT "d10160cTicket Status_pkey" PRIMARY KEY (id_entity);
-
-
-ALTER TABLE ONLY "d10160cTicket"
- ADD CONSTRAINT "d10160cTicket_pkey" PRIMARY KEY (id_entity);
-
-
Copied: humano2/trunk/core/schema/pgsql/pgsql-9-HelpDeskSMB.sql (from rev=
1270, humano2/trunk/core/schema/pgsql/pgsql-9-HelpDesk SMB.sql)
Modified: humano2/trunk/web/builder/site/functionoperationbar.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/functionoperationbar.aspx 2005-06-08 2=
0:09:26 UTC (rev 1271)
+++ humano2/trunk/web/builder/site/functionoperationbar.aspx 2005-06-08 2=
0:27:54 UTC (rev 1272)
@@ -49,7 +49,7 @@
<!--div id=3D"CreateRule"><a href=3D"#" onClick=3D"CreateRule()">Crea=
te Rule</a></div-->
<div id=3D"CreateForm"><a href=3D"#" onClick=3D"CreateForm()">Create =
Form</a></div>
<div id=3D"CreateFolder"><a href=3D"#" onClick=3D"CreateFolder()">Cre=
ate Folder</a></div>
- <!-- <div id=3D"CreateReport"><a href=3D"#" onClick=3D"Creat=
eReport()">Create Report</a></div> -->
+ <div id=3D"CreateReport"><a href=3D"#" onClick=3D"CreateRepo=
rt()">Create Report</a></div>
</div>
<form id=3D"Form1" method=3D"post" runat=3D"server">
<input id=3D"classId2" name=3D"classId2" type=3D"hidden">=20
Modified: humano2/trunk/web/builder/site/xsl/createreport.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 20:09:=
26 UTC (rev 1271)
+++ humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 20:27:=
54 UTC (rev 1272)
@@ -22,172 +22,171 @@
<!-- Load this script before the next one -->
<script language=3D"Javascript" src=3D"js/formreport.js" typ=
e=3D"text/javascript"></script>=20
<script language=3D"Javascript" src=3D"js/createreport.js" t=
ype=3D"text/javascript"></script>=20
- <link href=3D"styles/css/general_styles_verde.css" rel=3D"st=
ylesheet" type=3D"text/css"></link>
+ <link href=3D"css/general_styles_verde.css" rel=3D"styleshee=
t" type=3D"text/css"></link>
<link href=3D"css/createreport.css" rel=3D"stylesheet" type=3D=
"text/css"></link>
- </head>
- =09
- <!-- Here we create an array and use it as parameter for Form cl=
ass constructor -->
- <script language=3D"Javascript">
- =20
- //////////////////////
- //The report params
- =20
- //Columns
- var reportColumnsArray =3D new Array();
- var i=3D0;
- <xsl:for-each select=3D"/report/reportDatas/reportParams/col=
umns/column">
- reportColumnsArray[i++] =3D "<xsl:value-of select=3D"." =
/>";
- </xsl:for-each>
- //alert(reportColumnsArray.length);
- var ReportParams =3D new ReportParams(reportColumnsArray,nul=
l,null);
- =20
- ////////////////////////
- //The form
- var formArray =3D new Array();
- var i; //Counter
- =20
- <xsl:for-each select=3D"/report/classes/class[count(attribut=
es)>0]">
- <xsl:variable name=3D"classId">
- <xsl:value-of select=3D"id" />
- </xsl:variable>
- formArray[<xsl:value-of select=3D"$classId"/>] =3D new A=
rray();
- i=3D0;
- <xsl:for-each select=3D"attributes/attribute">
- formArray[<xsl:value-of select=3D"$classId"/>][i] =3D=
new Array();
- formArray[<xsl:value-of select=3D"$classId"/>][i]["v=
alue"] =3D "<xsl:value-of select=3D"id"/>";
- formArray[<xsl:value-of select=3D"$classId"/>][i]["n=
ame"] =3D "<xsl:value-of select=3D"name" />";
+ =09
+ <!-- Here we create an array and use it as parameter for For=
m class constructor -->
+ <script language=3D"Javascript">
+ =20
+ //////////////////////
+ //The report params
+ =20
+ //Columns
+ var reportColumnsArray =3D new Array();
+ var i=3D0;
+ <xsl:for-each select=3D"/report/reportDatas/reportParams=
/columns/column">
+ reportColumnsArray[i++] =3D "<xsl:value-of select=3D=
"." />";
+ </xsl:for-each>
+ //alert(reportColumnsArray.length);
+ var ReportParams =3D new ReportParams(reportColumnsArray=
,null,null);
+ =20
+ ////////////////////////
+ //The form
+ var formArray =3D new Array();
+ var i; //Counter
+ =20
+ <xsl:for-each select=3D"/report/classes/class[count(attr=
ibutes)>0]">
+ <xsl:variable name=3D"classId">
+ <xsl:value-of select=3D"id" />
+ </xsl:variable>
+ formArray[<xsl:value-of select=3D"$classId"/>] =3D n=
ew Array();
+ i=3D0;
+ <xsl:for-each select=3D"attributes/attribute">
+ formArray[<xsl:value-of select=3D"$classId"/>][i=
] =3D new Array();
+ formArray[<xsl:value-of select=3D"$classId"/>][i=
]["value"] =3D "<xsl:value-of select=3D"id"/>";
+ formArray[<xsl:value-of select=3D"$classId"/>][i=
]["name"] =3D "<xsl:value-of select=3D"name" />";
+ i++;
+ </xsl:for-each>
+ </xsl:for-each>
+ =20
+ <xsl:if test=3D"/report/reportDatas/classId!=3D''">
+ var Form =3D new Form(formArray,<xsl:value-of select=3D"=
/report/reportDatas/classId" />,ReportParams);
+ </xsl:if>
+ //alert(Form.GetOptionString(0));
+ =20
+ //Filters =20
+ var selectOption0ArrayFilter =3D new Array();
+ var selectOption1ArrayFilter =3D new Array();
+ var inputTagValuesArrayFilter =3D new Array();
+ =20
+ var i=3D0;
+ <xsl:for-each select=3D"/report/reportDatas/reportParams=
/conditions/condition">
+ selectOption0ArrayFilter[i] =3D <xsl:value-of selec=
t=3D"idAtt" />;
+ selectOption1ArrayFilter[i] =3D <xsl:value-of selec=
t=3D"operator" />;
+ inputTagValuesArrayFilter[i] =3D <xsl:value-of sele=
ct=3D"value" />;
i++;
</xsl:for-each>
- </xsl:for-each>
- =20
- <xsl:if test=3D"/report/reportDatas/classId!=3D''">
- var Form =3D new Form(formArray,<xsl:value-of select=3D"/rep=
ort/reportDatas/classId" />,ReportParams);
- </xsl:if>
- //alert(Form.GetOptionString(0));
- =20
- //Filters =20
- var selectOption0ArrayFilter =3D new Array();
- var selectOption1ArrayFilter =3D new Array();
- var inputTagValuesArrayFilter =3D new Array();
- =20
- var i=3D0;
- <xsl:for-each select=3D"/report/reportDatas/reportParams/con=
ditions/condition">
- selectOption0ArrayFilter[i] =3D <xsl:value-of select=3D=
"idAtt" />;
- selectOption1ArrayFilter[i] =3D <xsl:value-of select=3D=
"operator" />;
- inputTagValuesArrayFilter[i] =3D <xsl:value-of select=3D=
"value" />;
- i++;
- </xsl:for-each>
- =20
- <xsl:if test=3D"/report/reportDatas/classId!=3D''">
- var InputLineParamsFilters =3D
- {
- type: 'TWOSELECTANDINPUT',
- select0: AttribsGetSelectArray(formArray,<xsl:value-=
of select=3D"/report/reportDatas/classId" />),
- select1: OperatorsGetSelectArray(),
- lineTitle: 'Filter',
- input0: '',
- PreselectedInput0: inputTagValuesArrayFilter,
- PreselectedSelect0: selectOption0ArrayFilter,
- PreselectedSelect1: selectOption1ArrayFilter,
- refName: 'expandFormFilter'
- }
- var InputLineFilters =3D new InputLine(InputLineParamsFi=
lters);
- </xsl:if>
- =20
- =20
- //Order
- var selectOption0ArrayOrder =3D new Array();
- var selectOption1ArrayOrder =3D new Array();
- var i=3D0;
- <xsl:for-each select=3D"/report/reportDatas/reportParams/ord=
ers/order">
- selectOption0ArrayOrder[i] =3D <xsl:value-of select=3D"=
idAtt" />;
- selectOption1ArrayOrder[i] =3D <xsl:value-of select=3D"=
ascOrDesc" />;
- i++;
- </xsl:for-each>
- =20
- <xsl:if test=3D"/report/reportDatas/classId!=3D''">
- var InputLineParamsOrders =3D
- {
- type: 'TWOSELECT',
- select0: AttribsGetSelectArray(formArray,<xsl:value-=
of select=3D"/report/reportDatas/classId" />),
- select1: OrderGetSelectArray(),
- lineTitle: 'Order',
- input0: '',
- PreselectedInput0: null,
- PreselectedSelect0: selectOption0ArrayOrder,
- PreselectedSelect1: selectOption1ArrayOrder,
- refName: 'expandFormSort'
- }
- var InputLineOrders =3D new InputLine(InputLineParamsOrd=
ers);
- </xsl:if>
- =20
- =20
- //Personalized columns
- var selectOption0ArrayPersoColumns =3D new Array();
- var selectOption1ArrayPersoColumns =3D new Array();
- var i=3D0;
- <xsl:for-each select=3D"/report/reportDatas/reportParams/per=
soColumns/persoColumn">
- selectOption0ArrayPersoColumns[i] =3D <xsl:value-of sel=
ect=3D"idAtt" />;
- selectOption1ArrayPersoColumns[i] =3D <xsl:value-of sel=
ect=3D"op" />;
- i++;
- </xsl:for-each>
- =20
- <xsl:if test=3D"/report/reportDatas/classId!=3D''">
- var InputLineParamsPersoColumns =3D
- {
- type: 'TWOSELECT', //For the moment
- select0: AttribsGetSelectArray(formArray,<xsl:value-=
of select=3D"/report/reportDatas/classId" />),
- select1: FunctionsGetSelectArray(),
- lineTitle: 'PersoCol',
- input0: '',
- PreselectedInput0: null,
- PreselectedSelect0: selectOption0ArrayPersoColumns, =
//For the moment
- PreselectedSelect1: selectOption1ArrayPersoColumns, =
//For the moment
- refName: 'expandFormPersoColumns'
- }
- var InputLinePersoColumns =3D new InputLine(InputLinePar=
amsPersoColumns);
- </xsl:if>
- =20
- //Having
- var selectIdAttArrayHaving =3D new Array();
- var selectOpArrayHaving =3D new Array();
- var selectFuncArrayHaving =3D new Array();
- var inputTagValuesArrayHaving =3D new Array();
- =20
- var i=3D0;
- <xsl:for-each select=3D"/report/reportDatas/reportParams/hav=
ings/having">
- selectFuncArrayHaving[i] =3D <xsl:value-of select=3D"fu=
nc" />;
- selectIdAttArrayHaving[i] =3D <xsl:value-of select=3D"i=
dAtt" />;
- selectOpArrayHaving[i] =3D <xsl:value-of select=3D"oper=
ator" />;
- inputTagValuesArrayHaving[i] =3D <xsl:value-of select=3D=
"value" />;
- i++;
- </xsl:for-each>
- =20
- <xsl:if test=3D"/report/reportDatas/classId!=3D''">
- var InputLineParamsHavings =3D
- {
- type: 'THREESELECTANDINPUT',
- select0: AttribsGetSelectArray(formArray,<xsl:value-=
of select=3D"/report/reportDatas/classId" />),
- select1: FunctionsGetSelectArray(),
- select2: OperatorsGetSelectArray(),
- lineTitle: 'GroupFilter',
- input0: '',
- PreselectedInput0: inputTagValuesArrayHaving,
- PreselectedSelect0: selectIdAttArrayHaving,
- PreselectedSelect1: selectFuncArrayHaving,
- PreselectedSelect2: selectOpArrayHaving,
- refName: 'expandFormHaving'
- }
- var InputLineHavings =3D new InputLine(InputLineParamsHa=
vings);
- </xsl:if>
- =20
- </script>
- =20
- <body >
+ =20
+ <xsl:if test=3D"/report/reportDatas/classId!=3D''">
+ var InputLineParamsFilters =3D
+ {
+ type: 'TWOSELECTANDINPUT',
+ select0: AttribsGetSelectArray(formArray,<xsl:va=
lue-of select=3D"/report/reportDatas/classId" />),
+ select1: OperatorsGetSelectArray(),
+ lineTitle: 'Filter',
+ input0: '',
+ PreselectedInput0: inputTagValuesArrayFilter,
+ PreselectedSelect0: selectOption0ArrayFilter,
+ PreselectedSelect1: selectOption1ArrayFilter,
+ refName: 'expandFormFilter'
+ }
+ var InputLineFilters =3D new InputLine(InputLinePara=
msFilters);
+ </xsl:if>
+ =20
+ =20
+ //Order
+ var selectOption0ArrayOrder =3D new Array();
+ var selectOption1ArrayOrder =3D new Array();
+ var i=3D0;
+ <xsl:for-each select=3D"/report/reportDatas/reportParams=
/orders/order">
+ selectOption0ArrayOrder[i] =3D <xsl:value-of select=
=3D"idAtt" />;
+ selectOption1ArrayOrder[i] =3D <xsl:value-of select=
=3D"ascOrDesc" />;
+ i++;
+ </xsl:for-each>
+ =20
+ <xsl:if test=3D"/report/reportDatas/classId!=3D''">
+ var InputLineParamsOrders =3D
+ {
+ type: 'TWOSELECT',
+ select0: AttribsGetSelectArray(formArray,<xsl:va=
lue-of select=3D"/report/reportDatas/classId" />),
+ select1: OrderGetSelectArray(),
+ lineTitle: 'Order',
+ input0: '',
+ PreselectedInput0: null,
+ PreselectedSelect0: selectOption0ArrayOrder,
+ PreselectedSelect1: selectOption1ArrayOrder,
+ refName: 'expandFormSort'
+ }
+ var InputLineOrders =3D new InputLine(InputLineParam=
sOrders);
+ </xsl:if>
+ =20
+ =20
+ //Personalized columns
+ var selectOption0ArrayPersoColumns =3D new Array();
+ var selectOption1ArrayPersoColumns =3D new Array();
+ var i=3D0;
+ <xsl:for-each select=3D"/report/reportDatas/reportParams=
/persoColumns/persoColumn">
+ selectOption0ArrayPersoColumns[i] =3D <xsl:value-of=
select=3D"idAtt" />;
+ selectOption1ArrayPersoColumns[i] =3D <xsl:value-of=
select=3D"op" />;
+ i++;
+ </xsl:for-each>
+ =20
+ <xsl:if test=3D"/report/reportDatas/classId!=3D''">
+ var InputLineParamsPersoColumns =3D
+ {
+ type: 'TWOSELECT', //For the moment
+ select0: AttribsGetSelectArray(formArray,<xsl:va=
lue-of select=3D"/report/reportDatas/classId" />),
+ select1: FunctionsGetSelectArray(),
+ lineTitle: 'PersoCol',
+ input0: '',
+ PreselectedInput0: null,
+ PreselectedSelect0: selectOption0ArrayPersoColum=
ns, //For the moment
+ PreselectedSelect1: selectOption1ArrayPersoColum=
ns, //For the moment
+ refName: 'expandFormPersoColumns'
+ }
+ var InputLinePersoColumns =3D new InputLine(InputLin=
eParamsPersoColumns);
+ </xsl:if>
+ =20
+ //Having
+ var selectIdAttArrayHaving =3D new Array();
+ var selectOpArrayHaving =3D new Array();
+ var selectFuncArrayHaving =3D new Array();
+ var inputTagValuesArrayHaving =3D new Array();
+ =20
+ var i=3D0;
+ <xsl:for-each select=3D"/report/reportDatas/reportParams=
/havings/having">
+ selectFuncArrayHaving[i] =3D <xsl:value-of select=3D=
"func" />;
+ selectIdAttArrayHaving[i] =3D <xsl:value-of select=3D=
"idAtt" />;
+ selectOpArrayHaving[i] =3D <xsl:value-of select=3D"=
operator" />;
+ inputTagValuesArrayHaving[i] =3D <xsl:value-of sele=
ct=3D"value" />;
+ i++;
+ </xsl:for-each>
+ =20
+ <xsl:if test=3D"/report/reportDatas/classId!=3D''">
+ var InputLineParamsHavings =3D
+ {
+ type: 'THREESELECTANDINPUT',
+ select0: AttribsGetSelectArray(formArray,<xsl:va=
lue-of select=3D"/report/reportDatas/classId" />),
+ select1: FunctionsGetSelectArray(),
+ select2: OperatorsGetSelectArray(),
+ lineTitle: 'GroupFilter',
+ input0: '',
+ PreselectedInput0: inputTagValuesArrayHaving,
+ PreselectedSelect0: selectIdAttArrayHaving,
+ PreselectedSelect1: selectFuncArrayHaving,
+ PreselectedSelect2: selectOpArrayHaving,
+ refName: 'expandFormHaving'
+ }
+ var InputLineHavings =3D new InputLine(InputLinePara=
msHavings);
+ </xsl:if>
+ =20
+ </script>
+ </head>
+ <body>
<form id=3D"formulario" name=3D"formulario" method=3D"post">
- <table width=3D"100%" border=3D"0" cellspacing=3D"0" cellpad=
ding=3D"0" class=3D"conttablecenter2">
- <tr>
- <td valign=3D"center" class=3D"smallgraytextnolink" =
>
+ <table width=3D"100%" border=3D"0" cellspacing=3D"0" cel=
lpadding=3D"0" class=3D"conttablecenter2">
+ <tr>
+ <td valign=3D"center" class=3D"smallgraytextnoli=
nk" >
<table width=3D"100%" cellspacing=3D"1" bord=
er=3D"0" class=3D"smallgraytextnolink" >
<tr>
<td class=3D"smallgraytextnolink" >
@@ -210,7 +209,7 @@
<!-- Only show classes for select wh=
en creating -->
<xsl:if test=3D"/report/reportDatas/=
saveName=3D'Create'" >=20
<td>
- <select class=3D"drpdwn2" id=3D"cla=
ssList" onchange=3D"Reload();">
+ <select class=3D"drpdwn2" id=3D"=
classList" onchange=3D"Reload();">
<xsl:for-each select=3D"repo=
rt/classes/class">
<option>
<xsl:attribute name=3D=
"name">
@@ -235,20 +234,20 @@
<xsl:if test=3D"count(/report/classes/cl=
ass/attributes)!=3D0">
<!-- ######################## Filters #=
####################################### -->
<tr>
- <td colspan=3D"2">
- <table width=3D"100%" border=3D"0" cellSpacing=3D"0" cellPadding=
=3D"0">
- <tr>
- <td width=3D"100%" colspan=3D"2">
- <div class=3D"lev1divider"><IMG height=3D"9" src=3D"clear2x2.=
gif" width=3D"100%"/></div>
- </td>
- </tr>
- <tr>
- <td class=3D"lev1head" valign=3D"top"><font size=3D"2">Filtros=
...</font></td>
- </tr>
- </table>
- </td>
- </tr>
-
+ <td colspan=3D"2">
+ <table width=3D"100%" border=3D"0" cellS=
pacing=3D"0" cellPadding=3D"0">
+ <tr>
+ <td width=3D"100%" colspan=3D"2"=
>
+ <div class=3D"lev1divider"><=
IMG height=3D"9" src=3D"clear2x2.gif" width=3D"100%"/></div>
+ </td>
+ </tr>
+ <tr>
+ <td class=3D"lev1head" valign=3D=
"top"><font size=3D"2">Filtros...</font></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ =20
<tr>
<td class=3D"smallgraytextnolink" co=
lspan=3D"2">
<table width=3D"100%">
@@ -272,7 +271,7 @@
=20
<!--######################### Perso Colu=
mns ################################## -->
<tr>
- <td colspan=3D"2">
+ <td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
<tr>
<td width=3D"100%" colspan=3D=
"2" class=3D"lev1divider">
@@ -283,9 +282,9 @@
<td class=3D"lev1head" valig=
n=3D"top"><font size=3D"2">Personalized columns...</font></td>
</tr>
</table>
- </td>
- </tr>
-
+ </td>
+ </tr>
+ =20
<tr>
<td class=3D"smallgraytextnolink" co=
lspan=3D"2">
<table>
@@ -308,10 +307,11 @@
=20
<!--######################### END: Perso=
Columns ################################## -->
=20
- =20
<!--######################### Havings ##=
########################################## -->
+ <!-- Commented for now due to a problem =
in showview see bug # -->
+ <!--
<tr>
- <td colspan=3D"2">
+ <td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
<tr>
<td width=3D"100%" colspan=3D=
"2" class=3D"lev1divider">
@@ -322,9 +322,8 @@
<td class=3D"lev1head" valig=
n=3D"top"><font size=3D"2">Group filters...</font></td>
</tr>
</table>
- </td>
- </tr>
-
+ </td>
+ </tr>
<tr>
<td class=3D"smallgraytextnolink" co=
lspan=3D"2">
<table>
@@ -344,12 +343,12 @@
</script>
</td>
</tr>
- =20
+ -->
<!--######################### END: Havin=
gs ####################################### -->
=20
<!-- ######################## Group colu=
mns ############################## -->
<tr>
- <td colspan=3D"2">
+ <td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
<tr>
<td width=3D"100%" colspan=3D=
"2">
@@ -360,9 +359,9 @@
<td class=3D"lev1head" valig=
n=3D"top"><font size=3D"2">Group columns...</font></td>
</tr>
</table>
- </td>
- </tr>
-
+ </td>
+ </tr>
+ =20
<tr>
<td class=3D"smallgraytextnolink" c=
olspan=3D"2">
<table>
@@ -430,7 +429,7 @@
=20
<!--######################### Sort #####=
######################################### -->
<tr>
- <td colspan=3D"2">
+ <td colspan=3D"2">
<table width=3D"100%" border=3D"=
0" cellSpacing=3D"0" cellPadding=3D"0">
<tr>
<td width=3D"100%" colspan=3D=
"2" class=3D"lev1divider">
@@ -441,9 +440,9 @@
<td class=3D"lev1head" valig=
n=3D"top"><font size=3D"2">Orden...</font></td>
</tr>
</table>
- </td>
- </tr>
-
+ </td>
+ </tr>
+ =20
<tr>
<td class=3D"smallgraytextnolink" co=
lspan=3D"2">
<table>
@@ -468,16 +467,16 @@
=20
<!--######################### Buttons ##=
######################################## -->
<tr>
- <td colspan=3D"2">
- <table width=3D"100%" border=3D"0" cellSpacing=3D"0" cellPadding=
=3D"0">
- <tr>
- <td width=3D"100%" colspan=3D"2">
- <div class=3D"lev1divider"><img height=3D"9" src=3D"clear2x2.=
gif" width=3D"100%"/></div>
- </td>
- </tr>
- </table>
- </td>
- </tr>
+ <td colspan=3D"2">
+ <table width=3D"100%" border=3D"0" cellS=
pacing=3D"0" cellPadding=3D"0">
+ <tr>
+ <td width=3D"100%" colspan=3D"2"=
>
+ <div class=3D"lev1divider"><=
img height=3D"9" src=3D"clear2x2.gif" width=3D"100%"/></div>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
<tr>
<td class=3D"ContentAlt">
<div id=3D"CrudButtons1">
@@ -510,18 +509,18 @@
<!--######################### End:Button=
s ########################################## -->
</xsl:if>
</table>
- </td>
- </tr>
- </table>
- <!-- This tag is used to create the inputs hidden to send al=
l the data in one pass -->
- <div id=3D"SubmitAll">
- <!-- Always submits the report id -->
- <input type=3D"hidden" id=3D"reportId">
- <xsl:attribute name=3D"value">
- <xsl:value-of select=3D"/report/reportDatas/id" />
- </xsl:attribute>
- </input>=20
- </div>
+ </td>
+ </tr>
+ </table>
+ <!-- This tag is used to create the inputs hidden to sen=
d all the data in one pass -->
+ <div id=3D"SubmitAll">
+ <!-- Always submits the report id -->
+ <input type=3D"hidden" id=3D"reportId">
+ <xsl:attribute name=3D"value">
+ <xsl:value-of select=3D"/report/reportDatas/id" =
/>
+ </xsl:attribute>
+ </input>=20
+ </div>
</form>
</body>
</html>
Modified: humano2/trunk/web/builder/site/xsl/functionindex.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-08 20:09=
:26 UTC (rev 1271)
+++ humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-08 20:27=
:54 UTC (rev 1272)
@@ -78,14 +78,13 @@
var child_<xsl:value-of select=3D"id" /> =3D new=
WebFXTreeItem('<xsl:value-of select=3D"name" />',
=
'formmanagement.aspx?modformid=3D<xsl:value-of select=3D"id" =
/>&modclassId=3D<xsl:value-of select=3D"classId" />',
...
[truncated message content] |
|
From: <sv...@de...> - 2005-06-08 20:10:13
|
Author: pcamacho
Date: 2005-06-08 16:09:26 -0400 (Wed, 08 Jun 2005)
New Revision: 1271
Modified:
humano2/trunk/web/builder/site/userindex.aspx
humano2/trunk/web/builder/site/useroperationbar.aspx
humano2/trunk/web/builder/site/xBarFrame.aspx
humano2/trunk/web/portal/site/js/webfxtree.js
Log:
CHANGE: add a few svn:keywords to a few files
Modified: humano2/trunk/web/builder/site/userindex.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/userindex.aspx 2005-06-08 19:24:48 UTC=
(rev 1270)
+++ humano2/trunk/web/builder/site/userindex.aspx 2005-06-08 20:09:26 UTC=
(rev 1271)
@@ -1,5 +1,6 @@
<%@ Page language=3D"c#" Codebehind=3D"datamodeling.aspx.cs" AutoEventWi=
reup=3D"false" Inherits=3D"Builder.site.UserIndex" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
+<!-- $Id -->
<HTML>
<HEAD>
<title>User administration</title>
@@ -8,4 +9,4 @@
<frame src=3D"useroperationbar.aspx" name=3D"topdata" scrolling=3D"NO"=
noresize>
<frame src=3D"usermain.aspx" name=3D"maindata">
</frameset>
-</HTML>
\ No newline at end of file
+</HTML>
Property changes on: humano2/trunk/web/builder/site/userindex.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/builder/site/useroperationbar.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/useroperationbar.aspx 2005-06-08 19:24=
:48 UTC (rev 1270)
+++ humano2/trunk/web/builder/site/useroperationbar.aspx 2005-06-08 20:09=
:26 UTC (rev 1271)
@@ -1,5 +1,6 @@
<%@ Page language=3D"c#" Codebehind=3D"useroperationbar.aspx.cs" AutoEve=
ntWireup=3D"false" Inherits=3D"Builder.site.UserOperationBar" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
+<!-- $Id -->
<HTML>
<HEAD>
<title>dataoperationbar</title>
Property changes on: humano2/trunk/web/builder/site/useroperationbar.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/builder/site/xBarFrame.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xBarFrame.aspx 2005-06-08 19:24:48 UTC=
(rev 1270)
+++ humano2/trunk/web/builder/site/xBarFrame.aspx 2005-06-08 20:09:26 UTC=
(rev 1271)
@@ -1,6 +1,6 @@
<%@ Page language=3D"c#" Codebehind=3D"xBarFrame.aspx.cs" AutoEventWireu=
p=3D"false" Inherits=3D"Builder.site.xBarFrame" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >=20
-
+<!-- $Id -->
<html>
<head>
<script language=3D"javascript">
Property changes on: humano2/trunk/web/builder/site/xBarFrame.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/webfxtree.js 2005-06-08 19:24:48 UTC=
(rev 1270)
+++ humano2/trunk/web/portal/site/js/webfxtree.js 2005-06-08 20:09:26 UTC=
(rev 1271)
@@ -22,22 +22,22 @@
* tree.setJSLoading('Loading...');
*
*/
-
-
+=20
+var imgFolder =3D 'img/webfxtree';
var webFXTreeConfig =3D {
- rootIcon : 'img/webfxtree/foldericon.png',
- openRootIcon : 'img/webfxtree/1x1.gif',
- folderIcon : 'img/webfxtree/foldericon.png',
- openFolderIcon : 'img/webfxtree/openfoldericon.png',
- fileIcon : 'img/webfxtree/file.png',
- iIcon : 'img/webfxtree/i.png',
- lIcon : 'img/webfxtree/l.png',
- lMinusIcon : 'img/webfxtree/lminus.png',
- lPlusIcon : 'img/webfxtree/lplus.png',
- tIcon : 'img/webfxtree/t.png',
- tMinusIcon : 'img/webfxtree/tminus.png',
- tPlusIcon : 'img/webfxtree/tplus.png',
- blankIcon : 'img/webfxtree/blank.png',
+ rootIcon : imgFolder + '/foldericon.png',
+ openRootIcon : imgFolder + '/1x1.gif',
+ folderIcon : imgFolder + '/foldericon.png',
+ openFolderIcon : imgFolder + '/openfoldericon.png',
+ fileIcon : imgFolder + '/file.png',
+ iIcon : imgFolder + '/i.png',
+ lIcon : imgFolder + '/l.png',
+ lMinusIcon : imgFolder + '/lminus.png',
+ lPlusIcon : imgFolder + '/lplus.png',
+ tIcon : imgFolder + '/t.png',
+ tMinusIcon : imgFolder + '/tminus.png',
+ tPlusIcon : imgFolder + '/tplus.png',
+ blankIcon : imgFolder + '/blank.png',
defaultText : '',
defaultAction : 'javascript:alert("hola");',=20
defaultBehavior : 'classic',
|
|
From: <sv...@de...> - 2005-06-08 19:24:48
|
Author: pcamacho
Date: 2005-06-08 15:24:48 -0400 (Wed, 08 Jun 2005)
New Revision: 1270
Added:
humano2/trunk/web/builder/site/img/
Removed:
humano2/trunk/web/builder/site/gfx/
Modified:
humano2/trunk/web/builder/site/buildattribute.aspx.cs
humano2/trunk/web/builder/site/css/dataclasses.css
humano2/trunk/web/builder/site/css/general_styles_verde.css
humano2/trunk/web/builder/site/dataclasses.aspx.cs
humano2/trunk/web/builder/site/datamain.aspx.cs
humano2/trunk/web/builder/site/dataoperationbar.aspx
humano2/trunk/web/builder/site/foldermanagement.aspx
humano2/trunk/web/builder/site/formmanagement.aspx
humano2/trunk/web/builder/site/functionclasses.aspx.cs
humano2/trunk/web/builder/site/js/viewmain/functions.js
humano2/trunk/web/builder/site/leftbar.aspx
humano2/trunk/web/builder/site/xsl/createreport.xsl
humano2/trunk/web/builder/site/xsl/createrule.xsl
humano2/trunk/web/builder/site/xsl/createview.xsl
humano2/trunk/web/builder/site/xsl/functionindex.xsl
Log:
FIX: #192.
Modified: humano2/trunk/web/builder/site/buildattribute.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/buildattribute.aspx.cs 2005-06-08 18:5=
3:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/buildattribute.aspx.cs 2005-06-08 19:2=
4:48 UTC (rev 1270)
@@ -573,12 +573,12 @@
res.Append("<td>");
res.Append(@"<table cellSpacing=3D""0"" cellPadding=3D""0"" width=3D=
""100%"" align=3D""center"" border=3D""0"">");
res.Append("<tr>");
- res.Append(@"<td align=3D""left"" background=3D""gfx/borders/tab_top=
_background_runner.gif"">");
+ res.Append(@"<td align=3D""left"" background=3D""img/borders/tab_top=
_background_runner.gif"">");
res.Append(@"<table cellSpacing=3D""0"" cellPadding=3D""0"" align=3D=
""left"" border=3D""0"">");
res.Append("<tr>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_on_lef=
t.gif"" width=3D""16""></td>");
- res.Append(@"<td background=3D""gfx/borders/tab_on_middle.gif"">" + =
name + "</td>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_on_rig=
ht.gif"" width=3D""16""></td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_on_lef=
t.gif"" width=3D""16""></td>");
+ res.Append(@"<td background=3D""img/borders/tab_on_middle.gif"">" + =
name + "</td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_on_rig=
ht.gif"" width=3D""16""></td>");
res.Append("</tr>\n");
res.Append("</table>");
}
@@ -586,9 +586,9 @@
{
res.Append(@"<table cellSpacing=3D""0"" cellPadding=3D""0"" align=3D=
""left"" border=3D""0"">");
res.Append("<tr>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_on_lef=
t.gif"" width=3D""16""></td>");
- res.Append(@"<td background=3D""gfx/borders/tab_on_middle.gif"">" + =
name + "</td>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_on_rig=
ht.gif"" width=3D""16""></td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_on_lef=
t.gif"" width=3D""16""></td>");
+ res.Append(@"<td background=3D""img/borders/tab_on_middle.gif"">" + =
name + "</td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_on_rig=
ht.gif"" width=3D""16""></td>");
res.Append("</tr>\n");
res.Append("</table>");
}
@@ -616,7 +616,7 @@
res.Append("<td>");
res.Append(@"<table cellSpacing=3D""0"" cellPadding=3D""0"" width=3D=
""100%"" align=3D""center"" border=3D""0"">");
res.Append("<tr>");
- res.Append(@"<td align=3D""left"" background=3D""gfx/borders/tab_top=
_background_runner.gif"">");
+ res.Append(@"<td align=3D""left"" background=3D""img/borders/tab_top=
_background_runner.gif"">");
}
if(isInternal =3D=3D false)
{
@@ -639,9 +639,9 @@
res.Append(@"style=3D""filter: alpha(opacity=3D100); cursor: hand;""=
border=3D""0"" cellspacing=3D""0"" cellpadding=3D""0"" align=3D""left"">=
");
}
res.Ap=
pend("<tr>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_off_le=
ft.gif"" width=3D""16""></td>");
- res.Append(@"<td background=3D""gfx/borders/tab_off_middle.gif"">" +=
nombre + "</td>");
- res.Append(@"<td><IMG height=3D""24"" src=3D""gfx/borders/tab_off_ri=
ght.gif"" width=3D""16""></td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_off_le=
ft.gif"" width=3D""16""></td>");
+ res.Append(@"<td background=3D""img/borders/tab_off_middle.gif"">" +=
nombre + "</td>");
+ res.Append(@"<td><IMG height=3D""24"" src=3D""img/borders/tab_off_ri=
ght.gif"" width=3D""16""></td>");
res.Append("</tr>\n");
res.Append("</table>");
=20
@@ -657,7 +657,7 @@
res.Append("</table>");
res.Append(@"<table class=3D""tabrunner"" cellSpacing=3D""0"" cellPad=
ding=3D""0"" width=3D""100%"" align=3D""center"" border=3D""0"">");
res.Append("<tr>");
- res.Append(@"<td background=3D""gfx/borders/tabrunner.gif"" colSpan=3D=
""3"" height=3D""7""></td>");
+ res.Append(@"<td background=3D""img/borders/tabrunner.gif"" colSpan=3D=
""3"" height=3D""7""></td>");
res.Append("</tr>\n");
res.Append("</table>");
=20
@@ -1200,4 +1200,4 @@
}
=20
}
-}
\ No newline at end of file
+}
Modified: humano2/trunk/web/builder/site/css/dataclasses.css
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/css/dataclasses.css 2005-06-08 18:53:2=
6 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/css/dataclasses.css 2005-06-08 19:24:4=
8 UTC (rev 1270)
@@ -15,7 +15,7 @@
}
=20
#dataClassesList {
- list-style-image: url("../gfx/icons/button_classes.gif");
+ list-style-image: url("../img/icons/button_classes.gif");
font-size:10px;
padding:0.5em;
}
@@ -30,4 +30,4 @@
=20
.isPrimary {=20
font-weight: bold;
-}
\ No newline at end of file
+}
Modified: humano2/trunk/web/builder/site/css/general_styles_verde.css
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/css/general_styles_verde.css 2005-06-0=
8 18:53:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/css/general_styles_verde.css 2005-06-0=
8 19:24:48 UTC (rev 1270)
@@ -174,9 +174,9 @@
.PPRSbmtBtn {
BACKGROUND: #dbeaf5; BORDER-BOTTOM: #104a7b 1px solid; BORDER-LEFT: #af=
c4d5 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px =
solid; COLOR: #000066; CURSOR: hand; FONT-FAMILY: Tahoma, san-serif; FONT=
-SIZE: 13px; FONT-WEIGHT: normal; TEXT-DECORATION: none
}
-mytd { background-image: url(/gfx/logo_campa%96as.gif)
+mytd { background-image: url(/img/logo_campa%96as.gif)
}
-.celbackglogo { background-image: url(/gfx/logo_tareas.gif); background=
-repeat: no-repeat; height: 47px; width: 160px
+.celbackglogo { background-image: url(/img/logo_tareas.gif); background=
-repeat: no-repeat; height: 47px; width: 160px
}
.dropdown { BACKGROUND-COLOR: #C9CDD4; COLOR: #2D324A; FONT-FAMILY: taho=
ma, san-serif; FONT-SIZE: 11px=20
}
@@ -184,21 +184,21 @@
}
.btnbordebajo { BACKGROUND: #d6e7ef; BORDER-BOTTOM: #104a7b 3px solid; B=
ORDER-LEFT: #104a7b 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TO=
P: #afc4d5 1px solid; COLOR: #006699; CURSOR: hand; FONT-FAMILY: tahoma, =
sans-serif; FONT-SIZE: 10px; TEXT-DECORATION: none ; font-weight: bold
}
-.celbackgrtoptable { background-image: url(/gfx/backgrd_line.gif); back=
ground-repeat: repeat-x; height: 46px; width: 100%
+.celbackgrtoptable { background-image: url(/img/backgrd_line.gif); back=
ground-repeat: repeat-x; height: 46px; width: 100%
}
-.celbgrdrighttop { background-image: url(/gfx/end_table.gif); height: 4=
7px; width: 10px; margin-right: 10px; background-repeat: no-repeat; backg=
round-position: right top
+.celbgrdrighttop { background-image: url(/img/end_table.gif); height: 4=
7px; width: 10px; margin-right: 10px; background-repeat: no-repeat; backg=
round-position: right top
}
-.celbgrdundertabs { background-image: url(/gfx/backgrd_under_tabs.gif);=
background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RIGHT: #0=
00000 1px solid
+.celbgrdundertabs { background-image: url(/img/backgrd_under_tabs.gif);=
background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RIGHT: #0=
00000 1px solid
}
-.celbgrdlefttop { background-image: url(/gfx/end_left2.gif); background=
-repeat: no-repeat; width: 20px; height: 22px; background-position: left =
top
+.celbgrdlefttop { background-image: url(/img/end_left2.gif); background=
-repeat: no-repeat; width: 20px; height: 22px; background-position: left =
top
}
.tabletopbar { width: 98%
}
-.conttabletopleft { background-image: url(/gfx/backgrd_left2.gif); back=
ground-repeat: no-repeat; height: 10px; width: 10px
+.conttabletopleft { background-image: url(/img/backgrd_left2.gif); back=
ground-repeat: no-repeat; height: 10px; width: 10px
}
-.conttabletopcenter { background-image: url(/gfx/backgrd_top2.gif); bac=
kground-repeat: repeat-x; height: 10px
+.conttabletopcenter { background-image: url(/img/backgrd_top2.gif); bac=
kground-repeat: repeat-x; height: 10px
}
-.conttabletopright { background-image: url(/gfx/backgrd_right2.gif); wi=
dth: 16px
+.conttabletopright { background-image: url(/img/backgrd_right2.gif); wi=
dth: 16px
}
.conttablecenter {
background-color: #EEEEEE;
@@ -279,28 +279,28 @@
=20
.divideroscuro { background-color: #3399CC; border-style: solid; border-=
top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border=
-left-width: 0px; clip: rect( )}
.bottableleft {=20
- background-image: url(../gfx/backgrd_left3.gif); background-repeat: no-=
repeat; height: 10px; width: 50px; border-color: black black #000000; bor=
der-style: solid; border-top-width: 0px; border-right-width: 0px; border-=
bottom-width: 1px; border-left-width: 0px}
+ background-image: url(../img/backgrd_left3.gif); background-repeat: no-=
repeat; height: 10px; width: 50px; border-color: black black #000000; bor=
der-style: solid; border-top-width: 0px; border-right-width: 0px; border-=
bottom-width: 1px; border-left-width: 0px}
.bottablecenter=20
{=20
- background-image: url(/gfx/backgrd_bottom.gif); background-repeat: repe=
at-x; height: 22px; border-color: black black #000000; border-style: soli=
d; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1=
px; border-left-width: 0px}
+ background-image: url(/img/backgrd_bottom.gif); background-repeat: repe=
at-x; height: 22px; border-color: black black #000000; border-style: soli=
d; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1=
px; border-left-width: 0px}
.bottableright=20
- { background-image: url(/gfx/backgrd_right3.gif); width: 50px; border-c=
olor: black black #000000; border-style: solid; border-top-width: 0px; bo=
rder-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px}
+ { background-image: url(/img/backgrd_right3.gif); width: 50px; border-c=
olor: black black #000000; border-style: solid; border-top-width: 0px; bo=
rder-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px}
.celtituloslistsvert { background-color: #C9CDD4; height: 20px; padding-=
top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; fon=
t-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-we=
ight: bold; text-align: right}
-.celbackgrtoptableblue1 { background-image: url(/gfx/blue1_backgrd_line.=
gif); background-repeat: repeat-x; height: 46px; width: 100% }
-.celbgrdrighttopblue1 { background-image: url(/gfx/blue1_end_table.gif);=
height: 47px; width: 10px; margin-right: 10px; background-repeat: no-rep=
eat; background-position: right top }
-.celbgrdlefttopblue1 { background-image: url(/gfxs/blue1_end_left2.gif);=
background-repeat: no-repeat; width: 20px; height: 22px; background-posi=
tion: left top }
-.celbgrdundertabsblue1 { background-image: url(/gfx/blue1_backgrd_un_tab=
s.gif); background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RI=
GHT: #000000 1px solid ; vertical-align: middle}
-.bottableleftblue1 { background-image: url(/gfx/blue1_backgrd_left3.gif)=
; background-repeat: no-repeat; height: 10px; width: 116px; border-color:=
black black #000000; border-style: solid; border-top-width: 0px; border-=
right-width: 0px; border-bottom-width: 1px; border-left-width: 0px }
-.bottablecenterblue1 { background-image: url(/gfx/blue1_backgrd_bottom.g=
if); background-repeat: repeat-x; height: 10px; border-color: black black=
#000000; border-style: solid; border-top-width: 0px; border-right-width:=
0px; border-bottom-width: 1px; border-left-width: 0px }
-.bottablerightblue1 { background-image: url(/gfx/blue1_backgrd_right3.gi=
f); width: 101px; border-color: black black #000000; border-style: solid;=
border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px=
; border-left-width: 0px }
+.celbackgrtoptableblue1 { background-image: url(/img/blue1_backgrd_line.=
gif); background-repeat: repeat-x; height: 46px; width: 100% }
+.celbgrdrighttopblue1 { background-image: url(/img/blue1_end_table.gif);=
height: 47px; width: 10px; margin-right: 10px; background-repeat: no-rep=
eat; background-position: right top }
+.celbgrdlefttopblue1 { background-image: url(/imgs/blue1_end_left2.gif);=
background-repeat: no-repeat; width: 20px; height: 22px; background-posi=
tion: left top }
+.celbgrdundertabsblue1 { background-image: url(/img/blue1_backgrd_un_tab=
s.gif); background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RI=
GHT: #000000 1px solid ; vertical-align: middle}
+.bottableleftblue1 { background-image: url(/img/blue1_backgrd_left3.gif)=
; background-repeat: no-repeat; height: 10px; width: 116px; border-color:=
black black #000000; border-style: solid; border-top-width: 0px; border-=
right-width: 0px; border-bottom-width: 1px; border-left-width: 0px }
+.bottablecenterblue1 { background-image: url(/img/blue1_backgrd_bottom.g=
if); background-repeat: repeat-x; height: 10px; border-color: black black=
#000000; border-style: solid; border-top-width: 0px; border-right-width:=
0px; border-bottom-width: 1px; border-left-width: 0px }
+.bottablerightblue1 { background-image: url(/img/blue1_backgrd_right3.gi=
f); width: 101px; border-color: black black #000000; border-style: solid;=
border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px=
; border-left-width: 0px }
.contcel2columns { width: 80%}
-.blue0divider { background-image: url(/gfx/divider_blue0.gif); backgrou=
nd-repeat: no-repeat; width: 100%; clip: rect( )}
+.blue0divider { background-image: url(/img/divider_blue0.gif); backgrou=
nd-repeat: no-repeat; width: 100%; clip: rect( )}
.celtituloshome { font-family: Arial, Helvetica, sans-serif; font-size:=
15px; font-weight: bold; vertical-align: top; padding-left: 5px; text-al=
ign: left}
.conttablecenteritems { background-color: #FFFFFF; text-align: center }
.roundbluetable { background-color: #8fbae4}
.celcont { background-color: #FFFFFF; padding-top: 3px; padding-right: =
3px; padding-bottom: 3px; padding-left: 3px}
.asteriscorojo { font-family: Verdana, Arial, Helvetica, sans-serif; fo=
nt-size: 10px; font-weight: bold; color: #FF0000}
-.listas { list-style-image: url(/gfx/blue_bullet.gif); margin-right: 4p=
x; margin-left: 4px; padding-right: 4px; padding-left: 4px; clip: rect(=
); list-style-type: circle; background-position: center}
+.listas { list-style-image: url(/img/blue_bullet.gif); margin-right: 4p=
x; margin-left: 4px; padding-right: 4px; padding-left: 4px; clip: rect(=
); list-style-type: circle; background-position: center}
.fecha { padding-right: 10px; font-size: 9px; font-weight: bold; color:=
#FFFFFF}
.counters { font-weight: bold}
.helproundbluetable { background-color: #C7DFF5}
@@ -316,35 +316,35 @@
.celtituloslists3 { background-color: #5A9ACF; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left }
.celtituloslists4 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left }
.celtituloslists5 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left ; border-style: none; border-top-width: 0px; border-right-width: 0=
px; border-bottom-width: 0px; border-left-width: 0px}
-.dividersmall4 { background-image: url(/gfx/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
+.dividersmall4 { background-image: url(/img/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
.linksoverblue5 { font-family: tahoma, sans-serif; font-size: 11px; font=
-weight: bold; color: #0000FF; text-decoration: underline; margin-right: =
3px; margin-left: 3px; margin-top: 0px; margin-bottom: 0px ; padding-righ=
t: 3px; padding-left: 3px}
.linksoverblue6 { font-family: tahoma, sans-serif; font-size: 11px; font=
-weight: bold; color: #003366; text-decoration: none; margin-right: 3px; =
margin-left: 3px; margin-top: 0px; margin-bottom: 0px ; padding-right: 3p=
x; padding-left: 3px }
-.dividersmall3 { padding-top: 2px; padding-bottom: 2px; background-image=
: url(/gfx/divider_blue4.gif); background-repeat: no-repeat; background-p=
osition: center center}
-.email_logo { background-image: url(/gfx/logo_email2.gif); background-r=
epeat: no-repeat; height: 68px; width: 163px; padding-top: 50px; padding-=
left: 7px; font-family: tahoma, sans-serif; font-size: 11px; font-weight:=
bold; color: #003300}
-.email_tab_on_backgrd { background-image: url(../gfx/tab_on_backgrd_ema=
il.gif); background-repeat: repeat-x; padding-top: 20px; font-family: tah=
oma, sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padd=
ing-left: 5px}
-.email_tab_off_backgrd { background-image: url(/gfx/tab_off_backgrd_emai=
l.gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; fo=
nt-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; padd=
ing-left: 3px; white-space: nowrap; background-position: center}
-.email_endtable { background-image: url(/gfx/tabs_tableend_email.gif); =
background-repeat: no-repeat; height: 68px; width: 18px}
-.dividersmall4 { background-image: url(/gfx/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
+.dividersmall3 { padding-top: 2px; padding-bottom: 2px; background-image=
: url(/img/divider_blue4.gif); background-repeat: no-repeat; background-p=
osition: center center}
+.email_logo { background-image: url(/img/logo_email2.gif); background-r=
epeat: no-repeat; height: 68px; width: 163px; padding-top: 50px; padding-=
left: 7px; font-family: tahoma, sans-serif; font-size: 11px; font-weight:=
bold; color: #003300}
+.email_tab_on_backgrd { background-image: url(../img/tab_on_backgrd_ema=
il.gif); background-repeat: repeat-x; padding-top: 20px; font-family: tah=
oma, sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padd=
ing-left: 5px}
+.email_tab_off_backgrd { background-image: url(/img/tab_off_backgrd_emai=
l.gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; fo=
nt-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; padd=
ing-left: 3px; white-space: nowrap; background-position: center}
+.email_endtable { background-image: url(/img/tabs_tableend_email.gif); =
background-repeat: no-repeat; height: 68px; width: 18px}
+.dividersmall4 { background-image: url(/img/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
.linksovergreen1 { font-family: tahoma, sans-serif; font-size: 11px; fon=
t-weight: bold; color: #FFFFFF; text-decoration: none; margin-right: 3px;=
margin-left: 3px; margin-top: 0px; margin-bottom: 0px }
.conttablecenter_email { background-color: #E4EFFA; border-color: black =
#000000; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-l=
eft: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; pad=
ding-left: 0px; text-align: center ; border-style: solid; border-top-widt=
h: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-wi=
dth: 1px}
.celtituloslistsalignmiddle { background-color: #8FBAE4; height: 20px; p=
adding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5=
px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; =
font-weight: bold; text-align: center}
-.conttablecenter_attachment { border-left:1px solid #000000; border-righ=
t:1px solid #000000; border-top:0px solid black; border-bottom:0px solid =
black; margin:0px 0px; padding:20px 20px 20px 110px; background-color: #E=
4EFFA; text-align: left; background-image: url(/gfx/backgrd_attachment.gi=
f); background-repeat: no-repeat; vertical-align: top ; border-style: non=
e; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0=
px; border-left-width: 0px}
+.conttablecenter_attachment { border-left:1px solid #000000; border-righ=
t:1px solid #000000; border-top:0px solid black; border-bottom:0px solid =
black; margin:0px 0px; padding:20px 20px 20px 110px; background-color: #E=
4EFFA; text-align: left; background-image: url(/img/backgrd_attachment.gi=
f); background-repeat: no-repeat; vertical-align: top ; border-style: non=
e; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0=
px; border-left-width: 0px}
.celtituloslists6 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 7px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 12px; font-weight: bold; text-align=
: left ; border-style: none; border-top-width: 0px; border-right-width: 0=
px; border-bottom-width: 0px; border-left-width: 0px ; color: #FFFFFF}
.celcontlists2 { background-color: #ffffff; padding-top: 3px; padding-ri=
ght: 3px; padding-bottom: 3px; padding-left: 3px; border-color: #FFFFFF b=
lack #92ABC4; text-indent: 3px; border-style: none; border-top-width: 0px=
; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0=
px}
-.topleft_greenbar { background-image: url(/gfx/topleft_generico_verde.g=
if); background-repeat: no-repeat; width: 10px}
-.top_right_generico_verde { background-image: url(/gfx/topright_generico=
_verde.gif); background-repeat: no-repeat; height: 30px; width: 14px; bac=
kground-position: right top }
-.bottomleft_generico_verde { background-image: url(/gfx/bottomleft_gene=
rico_verde.gif); background-repeat: no-repeat; background-position: left =
bottom; height: 16px; width: 16px; border-color: #000000 black black; bor=
der-style: solid; border-top-width: 1px; border-right-width: 0px; border-=
bottom-width: 0px; border-left-width: 0px}
-.bottomright_generico_verdeCopy { background-image: url(/gfx/bottomright=
_generico_verde.gif); background-repeat: no-repeat; background-position: =
right bottom; height: 16px; width: 16px ; border-color: #000000 black bla=
ck; border-style: solid; border-top-width: 1px; border-right-width: 0px; =
border-bottom-width: 0px; border-left-width: 0px}
-.bottomcenter_generico_verde { background-image: url(/gfx/bottomcenter_g=
enerico_verde.gif); background-repeat: repeat-x; background-position: rig=
ht bottom; border-color: #000000 black black; border-style: solid; border=
-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; borde=
r-left-width: 0px; padding-top: 3px; padding-bottom: 3px; text-align: cen=
ter; vertical-align: middle}
+.topleft_greenbar { background-image: url(/img/topleft_generico_verde.g=
if); background-repeat: no-repeat; width: 10px}
+.top_right_generico_verde { background-image: url(/img/topright_generico=
_verde.gif); background-repeat: no-repeat; height: 30px; width: 14px; bac=
kground-position: right top }
+.bottomleft_generico_verde { background-image: url(/img/bottomleft_gene=
rico_verde.gif); background-repeat: no-repeat; background-position: left =
bottom; height: 16px; width: 16px; border-color: #000000 black black; bor=
der-style: solid; border-top-width: 1px; border-right-width: 0px; border-=
bottom-width: 0px; border-left-width: 0px}
+.bottomright_generico_verdeCopy { background-image: url(/img/bottomright=
_generico_verde.gif); background-repeat: no-repeat; background-position: =
right bottom; height: 16px; width: 16px ; border-color: #000000 black bla=
ck; border-style: solid; border-top-width: 1px; border-right-width: 0px; =
border-bottom-width: 0px; border-left-width: 0px}
+.bottomcenter_generico_verde { background-image: url(/img/bottomcenter_g=
enerico_verde.gif); background-repeat: repeat-x; background-position: rig=
ht bottom; border-color: #000000 black black; border-style: solid; border=
-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; borde=
r-left-width: 0px; padding-top: 3px; padding-bottom: 3px; text-align: cen=
ter; vertical-align: middle}
.titulos_secciones { font-family: Arial, Helvetica, sans-serif; font-si=
ze: 19px; font-weight: bold; text-align: left; vertical-align: middle}
.celtituloslists7 { background-color: #FFFFFF; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 7px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: normal; text-ali=
gn: left ; border-style: none; border-top-width: 0px; border-right-width:=
0px; border-bottom-width: 0px; border-left-width: 0px ; color: #000000}
-.dividersmall { padding-top: 3px; padding-bottom: 3px; background-image:=
url(/gfx/divider_blue0.gif); background-repeat: no-repeat; background-po=
sition: left center }
-.tab_on_backgrd_azul { background-image: url(/gfx/tab_on_backgrd_azul.gi=
f); background-repeat: repeat-x; padding-top: 20px; font-family: tahoma, =
sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padding-l=
eft: 5px }
-.tab_endtable_azul { background-image: url(/gfx/tabs_tableend_azul.gif);=
background-repeat: no-repeat; height: 68px; width: 14px; background-posi=
tion: right top }
-.tab_off_backgrd_azul { background-image: url(/gfx/tab_off_backgrd_azul.=
gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; font=
-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; paddin=
g-left: 3px; white-space: nowrap}
+.dividersmall { padding-top: 3px; padding-bottom: 3px; background-image:=
url(/img/divider_blue0.gif); background-repeat: no-repeat; background-po=
sition: left center }
+.tab_on_backgrd_azul { background-image: url(/img/tab_on_backgrd_azul.gi=
f); background-repeat: repeat-x; padding-top: 20px; font-family: tahoma, =
sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padding-l=
eft: 5px }
+.tab_endtable_azul { background-image: url(/img/tabs_tableend_azul.gif);=
background-repeat: no-repeat; height: 68px; width: 14px; background-posi=
tion: right top }
+.tab_off_backgrd_azul { background-image: url(/img/tab_off_backgrd_azul.=
gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; font=
-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; paddin=
g-left: 3px; white-space: nowrap}
.celtitulosasoccont2 { font-family: Arial, Helvetica, sans-serif; font-s=
ize: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ;=
background-color: #8FBAE4; background-color: #8FBAE4; height: 20px; padd=
ing-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;=
font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight:=
bold; text-align: right}
.celtituloslistsalignright { background-color: #8FBAE4; height: 20px; pa=
dding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5p=
x; font-family: tahoma, sans-serif; font-size: 11px; font-weight: bold; t=
ext-align: right}
-.celtitulosasoccont3 { font-family: Arial, Helvetica, sans-serif; font-s=
ize: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ;=
background-color: #8FBAE4; background-color: #8FBAE4; height: 20px; padd=
ing-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;=
font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight:=
bold; text-align: left ; background-position: left top; background-image=
: url(/gfx/backgrd_titulos_secciones.jpg); background-repeat: repeat-y}
+.celtitulosasoccont3 { font-family: Arial, Helvetica, sans-serif; font-s=
ize: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ;=
background-color: #8FBAE4; background-color: #8FBAE4; height: 20px; padd=
ing-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;=
font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight:=
bold; text-align: left ; background-position: left top; background-image=
: url(/img/backgrd_titulos_secciones.jpg); background-repeat: repeat-y}
=20
.pbttn2 {
background-color:#FFFFFF;
Modified: humano2/trunk/web/builder/site/dataclasses.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/dataclasses.aspx.cs 2005-06-08 18:53:2=
6 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/dataclasses.aspx.cs 2005-06-08 19:24:4=
8 UTC (rev 1270)
@@ -47,7 +47,7 @@
{
//Logger.Log("dataClassesList: adding className: "+className, LogLev=
el.Trace);
int classId =3D classIds[count];
- res +=3D String.Format("<tr><td class=3D\"dataClass\" id=3D\"{0}\" v=
align=3D\"top\"><img src=3D\"gfx/icons/button_classes.gif\"></td>",classI=
d);
+ res +=3D String.Format("<tr><td class=3D\"dataClass\" id=3D\"{0}\" v=
align=3D\"top\"><img src=3D\"img/icons/button_classes.gif\"></td>",classI=
d);
res +=3D String.Format("<td class=3D\"dataClass\" id=3D\"{0}\" valig=
n=3D\"top\"><nobr><a href=3D\"#\" onClick=3D\"ViewClass({0})\">{1}</a></n=
obr></td></tr>\n",
classId, className);
=09
Modified: humano2/trunk/web/builder/site/datamain.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/datamain.aspx.cs 2005-06-08 18:53:26 U=
TC (rev 1269)
+++ humano2/trunk/web/builder/site/datamain.aspx.cs 2005-06-08 19:24:48 U=
TC (rev 1270)
@@ -94,13 +94,13 @@
cellList.Append( createCheckBg(isEditable,bg) );
=09
string btnEditar, btnBorrar, btnFormula;
- btnEditar =3D @"<a href=3D""javascript:void(EditAttribute(" + currAt=
t["id_entity"].ToString() + "," + classId +@"))""><img src=3D""gfx/icons/=
button_edit.gif"" border=3D0 alt=3D""editar""></a>";
- btnBorrar =3D @"<a href=3D""javascript:void(DeleteAttribute(" + curr=
Att["id_entity"].ToString() + "," + classId +@"))""><img src=3D""gfx/icon=
s/button_delete.gif"" border=3D0 alt=3D""borrar""></a>";
+ btnEditar =3D @"<a href=3D""javascript:void(EditAttribute(" + currAt=
t["id_entity"].ToString() + "," + classId +@"))""><img src=3D""img/icons/=
button_edit.gif"" border=3D0 alt=3D""editar""></a>";
+ btnBorrar =3D @"<a href=3D""javascript:void(DeleteAttribute(" + curr=
Att["id_entity"].ToString() + "," + classId +@"))""><img src=3D""img/icon=
s/button_delete.gif"" border=3D0 alt=3D""borrar""></a>";
=20
=20
dtform =3D myform.GetFormulas(domainId,Convert.ToInt32(currAtt["id_e=
ntity"].ToString()));
if(dtform.Rows.Count>0)
- btnFormula =3D @"<a href=3D""javascript:void(FormulaAttribute(" + c=
urrAtt["id_entity"].ToString() + "," + classId +@"))""><img src=3D""gfx/i=
cons/btn_calculate.gif"" border=3D0 alt=3D""Ejecutar""></a>";
+ btnFormula =3D @"<a href=3D""javascript:void(FormulaAttribute(" + c=
urrAtt["id_entity"].ToString() + "," + classId +@"))""><img src=3D""img/i=
cons/btn_calculate.gif"" border=3D0 alt=3D""Ejecutar""></a>";
else
btnFormula =3D @" ";
=09
@@ -144,10 +144,10 @@
//cellList.Append( createCellBgcolor(Convert.ToString(dr["nameRule"]=
),bg) );
cellList.Append( createCellBgcolor(linkRule,bg) );
=20
- btnBorrar =3D @"<a href=3D""javascript:void(DeleteRule(" + dr["id_en=
tity"].ToString() + "," + classId +@"))""><img src=3D""gfx/icons/button_d=
elete.gif"" border=3D0 alt=3D""Borrar""></a>";
+ btnBorrar =3D @"<a href=3D""javascript:void(DeleteRule(" + dr["id_en=
tity"].ToString() + "," + classId +@"))""><img src=3D""img/icons/button_d=
elete.gif"" border=3D0 alt=3D""Borrar""></a>";
cellList.Append( createCellBgcolor(btnBorrar,bg) );
=20
- btnRule =3D @"<a href=3D""javascript:void(ExecuteRule(" + dr["id_ent=
ity"].ToString()+@"))""><img src=3D""gfx/icons/btn_calculate.gif"" border=
=3D0 alt=3D""Ejecutar""></a>";
+ btnRule =3D @"<a href=3D""javascript:void(ExecuteRule(" + dr["id_ent=
ity"].ToString()+@"))""><img src=3D""img/icons/btn_calculate.gif"" border=
=3D0 alt=3D""Ejecutar""></a>";
cellList.Append( createCellBgcolor(btnRule,bg) );
=20
cellList.Append( endRow() );=20
@@ -168,7 +168,7 @@
private string createCheck(bool res)=20
{
if(res) {
- return createCell("<img src=3D\"gfx/check.gif\" border=3D\"0\">");
+ return createCell("<img src=3D\"img/check.gif\" border=3D\"0\">");
} else {
return createCell("");
}
@@ -178,7 +178,7 @@
{
if(res)=20
{
- return createCellBgcolor("<img src=3D\"gfx/check.gif\" border=3D\"0\=
">",bg);
+ return createCellBgcolor("<img src=3D\"img/check.gif\" border=3D\"0\=
">",bg);
}=20
else=20
{
Modified: humano2/trunk/web/builder/site/dataoperationbar.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/dataoperationbar.aspx 2005-06-08 18:53=
:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/dataoperationbar.aspx 2005-06-08 19:24=
:48 UTC (rev 1270)
@@ -98,14 +98,14 @@
<body onload=3D"SetModelState('Reset');">
<form id=3D"Form1" method=3D"post" runat=3D"server" name=3D"Form1">
<div class=3D"btnList">
- <div id=3D"reload"><a href=3D"#" onClick=3D"Reload()"><img src=3D"gf=
x/icons/button_refresh.gif" align=3D"absMiddle"></a></div>
- <div id=3D"cancel"><a href=3D"#" onClick=3D"Cancel()"><img src=3D"gf=
x/icons/button_cancel.gif" align=3D"absMiddle">Cancel</a></div>
- <div id=3D"properties"><a href=3D"#" onClick=3D"Properties()"><img s=
rc=3D"gfx/icons/button_preferences.gif" align=3D"absMiddle">Properties</a=
></div>
- <div id=3D"delClass"><a href=3D"#" onClick=3D"DeleteClass()"><img sr=
c=3D"gfx/icons/button_delete.gif" align=3D"absMiddle">Delete=20
+ <div id=3D"reload"><a href=3D"#" onClick=3D"Reload()"><img src=3D"im=
g/icons/button_refresh.gif" align=3D"absMiddle"></a></div>
+ <div id=3D"cancel"><a href=3D"#" onClick=3D"Cancel()"><img src=3D"im=
g/icons/button_cancel.gif" align=3D"absMiddle">Cancel</a></div>
+ <div id=3D"properties"><a href=3D"#" onClick=3D"Properties()"><img s=
rc=3D"img/icons/button_preferences.gif" align=3D"absMiddle">Properties</a=
></div>
+ <div id=3D"delClass"><a href=3D"#" onClick=3D"DeleteClass()"><img sr=
c=3D"img/icons/button_delete.gif" align=3D"absMiddle">Delete=20
Class</a></div>
<div id=3D"createAttrib"><asp:DropDownList id=3D"attributeList" runa=
t=3D"server" /></A></div>
<div id=3D"createRule"><asp:DropDownList id=3D"ruleList" runat=3D"se=
rver" /></A></div>
- <div id=3D"newClass"><a href=3D"#" onClick=3D"CreateClass()"><img sr=
c=3D"gfx/icons/button_createclass.gif" align=3D"absMiddle">Create=20
+ <div id=3D"newClass"><a href=3D"#" onClick=3D"CreateClass()"><img sr=
c=3D"img/icons/button_createclass.gif" align=3D"absMiddle">Create=20
Class</a></div>
</div>
<input id=3D"classId2" name=3D"classId2" type=3D"hidden"> <input id=3D=
"state2" name=3D"state2" type=3D"hidden">
Modified: humano2/trunk/web/builder/site/foldermanagement.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/foldermanagement.aspx 2005-06-08 18:53=
:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/foldermanagement.aspx 2005-06-08 19:24=
:48 UTC (rev 1270)
@@ -85,16 +85,16 @@
<td rowspan=3D"4">
<div id=3D"ColumnsToShowRight"></div>
</td>
- <td rowspan=3D"4"><a onclick=3D"rightColumn.Top(rightCo=
lumn.GetSelectedIndex())" href=3D"#"><img src=3D"gfx/upuparrow.gif">
+ <td rowspan=3D"4"><a onclick=3D"rightColumn.Top(rightCo=
lumn.GetSelectedIndex())" href=3D"#"><img src=3D"img/upuparrow.gif">
</a>
<br>
- <a onclick=3D"rightColumn.Up(rightColumn.GetSelectedIn=
dex())" href=3D"#"><img src=3D"gfx/uparrow.gif">
+ <a onclick=3D"rightColumn.Up(rightColumn.GetSelectedIn=
dex())" href=3D"#"><img src=3D"img/uparrow.gif">
</a>
<br>
- <a onclick=3D"rightColumn.Down(rightColumn.GetSelected=
Index())" href=3D"#"><img src=3D"gfx/downarrow.gif">
+ <a onclick=3D"rightColumn.Down(rightColumn.GetSelected=
Index())" href=3D"#"><img src=3D"img/downarrow.gif">
</a>
<br>
- <a onclick=3D"rightColumn.Bottom(rightColumn.GetSelect=
edIndex())" href=3D"#"><img src=3D"gfx/downdownarrow.gif">
+ <a onclick=3D"rightColumn.Bottom(rightColumn.GetSelect=
edIndex())" href=3D"#"><img src=3D"img/downdownarrow.gif">
</a>
</td>
<td rowspan=3D"4">
@@ -154,4 +154,4 @@
</table>
</form>
</body>
-</HTML>
\ No newline at end of file
+</HTML>
Modified: humano2/trunk/web/builder/site/formmanagement.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/formmanagement.aspx 2005-06-08 18:53:2=
6 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/formmanagement.aspx 2005-06-08 19:24:4=
8 UTC (rev 1270)
@@ -81,16 +81,16 @@
<td rowspan=3D"4">
<div id=3D"ColumnsToShowRight"></div>
</td>
- <td rowspan=3D"4"><A onclick=3D"rightColumn.Top(rightCo=
lumn.GetSelectedIndex())" href=3D"#"><IMG src=3D"gfx/upuparrow.gif">
+ <td rowspan=3D"4"><A onclick=3D"rightColumn.Top(rightCo=
lumn.GetSelectedIndex())" href=3D"#"><IMG src=3D"img/upuparrow.gif">
</A>
<br>
- <A onclick=3D"rightColumn.Up(rightColumn.GetSelectedIn=
dex())" href=3D"#"><IMG src=3D"gfx/uparrow.gif">
+ <A onclick=3D"rightColumn.Up(rightColumn.GetSelectedIn=
dex())" href=3D"#"><IMG src=3D"img/uparrow.gif">
</A>
<br>
- <A onclick=3D"rightColumn.Down(rightColumn.GetSelected=
Index())" href=3D"#"><IMG src=3D"gfx/downarrow.gif">
+ <A onclick=3D"rightColumn.Down(rightColumn.GetSelected=
Index())" href=3D"#"><IMG src=3D"img/downarrow.gif">
</A>
<br>
- <A onclick=3D"rightColumn.Bottom(rightColumn.GetSelect=
edIndex())" href=3D"#"><IMG src=3D"gfx/downdownarrow.gif">
+ <A onclick=3D"rightColumn.Bottom(rightColumn.GetSelect=
edIndex())" href=3D"#"><IMG src=3D"img/downdownarrow.gif">
</A>
</td>
<td rowspan=3D"4"><input onclick=3D"Form.SetToDefault(l=
eftColumn,rightColumn)" type=3D"button" value=3D"SetToDefault">
Modified: humano2/trunk/web/builder/site/functionclasses.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/functionclasses.aspx.cs 2005-06-08 18:=
53:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/functionclasses.aspx.cs 2005-06-08 19:=
24:48 UTC (rev 1270)
@@ -49,7 +49,7 @@
//Logger.Log("dataClassesList: adding className: "+className, LogLev=
el.Trace);
//res +=3D String.Format("<li class=3D\"viewClass\" id=3D\"{0}\"><a =
href=3D\"#\" onClick=3D\"ViewView({0})\">{1}</a></li>\n",
// row["id_entity"], row["viewName"]);
- res +=3D String.Format("<tr><td class=3D\"viewClass\" id=3D\"{0}\" v=
align=3D\"top\"><img src=3D\"gfx/icons/button_classes.gif\"></td>",row["i=
d_entity"]);
+ res +=3D String.Format("<tr><td class=3D\"viewClass\" id=3D\"{0}\" v=
align=3D\"top\"><img src=3D\"img/icons/button_classes.gif\"></td>",row["i=
d_entity"]);
res +=3D String.Format("<td class=3D\"viewClass\" id=3D\"{0}\" valig=
n=3D\"top\"><nobr><a href=3D\"#\" onClick=3D\"ViewView({0})\">{1}</a></no=
br></td></tr>\n",
row["id_entity"].ToString(), row["viewName"].ToString());
}
Copied: humano2/trunk/web/builder/site/img (from rev 1269, humano2/trunk/=
web/builder/site/gfx)
Modified: humano2/trunk/web/builder/site/js/viewmain/functions.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/viewmain/functions.js 2005-06-08 18=
:53:26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/js/viewmain/functions.js 2005-06-08 19=
:24:48 UTC (rev 1270)
@@ -215,7 +215,7 @@
}
else
{
- var strMessage=3D"Debe escoger un atributo y un criterio de b=FAsqued=
a para poder ver las opciones disponibles.";
+ var strMessage=3D"Debe escoger un atributo y un criterio de b?squeda =
para poder ver las opciones disponibles.";
alert(strMessage);
}
}
@@ -566,7 +566,7 @@
=09
if (matchArray=3D=3Dnull) {
=09
- alert("Direcci=F3n Email est=E1 incorrecta. Verifique que este bien e=
scrita.")
+ alert("Direcci?n Email est? incorrecta. Verifique que este bien escri=
ta.")
obj.value=3D'';
obj.focus();
return false;
@@ -585,7 +585,7 @@
if (IPArray!=3Dnull) {
for (var i=3D1;i<=3D4;i++) {
if (IPArray[i]>255) {
- alert("Direcci=F3n IP no Valida!")
+ alert("Direcci?n IP no Valida!")
obj.value=3D'';
obj.focus();
return false;
@@ -606,13 +606,13 @@
if (domArr[domArr.length-1].length<2 ||=20
domArr[domArr.length-1].length>3) {
=09
- alert("La direcci=F3n debe finalizar con 3 letras (ej: com, net, or=
g, gov, mil) o 2 letras (ej: cl, de, br, ar)")
+ alert("La direcci?n debe finalizar con 3 letras (ej: com, net, org,=
gov, mil) o 2 letras (ej: cl, de, br, ar)")
obj.value =3D '';
obj.focus();
return false
}
if (len<2) {
- var errStr=3D"Direcci=F3n incompleta"
+ var errStr=3D"Direcci?n incompleta"
alert(errStr)
obj.value =3D '';
obj.focus();
@@ -1422,7 +1422,7 @@
else
strsearch =3D eval('document.formulario.'+obj+'.value');
=20
- //Chequea si es un lookup de m=FAltiples tipo de entidades
+ //Chequea si es un lookup de m?ltiples tipo de entidades
var strCaracter=3D/,/gi;
var posic =3D att6.search(strCaracter)
if (posic !=3D -1)
@@ -1458,7 +1458,7 @@
else
strsearch =3D eval('document.formulario.'+obj+'.value');
=09
- //Chequea si es un lookup de m=FAltiples tipo de entidades
+ //Chequea si es un lookup de m?ltiples tipo de entidades
var strCaracter=3D/,/gi;
var posic =3D att6.search(strCaracter)
if (posic !=3D -1)
@@ -1591,7 +1591,7 @@
var nameLayer =3D 'DivFile'+nameatt
change_content(nameLayer,' ')
AddAttribModif(nameatt)
- var ObjImgatt =3D 'document.formulario.'+nameatt+'_img.src=3D"../../g=
fx/1x1.gif"'
+ var ObjImgatt =3D 'document.formulario.'+nameatt+'_img.src=3D"../../i=
mg/1x1.gif"'
eval(ObjImgatt)
}
}
@@ -1606,7 +1606,7 @@
var ObjImgatt =3D 'document.formulario.'+nameatt+'_img'
ObjImgatt =3D eval(ObjImgatt)
if(ObjImgatt)
- ObjImgatt.src=3D"../../gfx/1x1.gif"
+ ObjImgatt.src=3D"../../img/1x1.gif"
=09
}
}
@@ -1820,7 +1820,7 @@
{=20
if ( texto.charAt(i) !=3D"0" && texto.charAt(i) !=3D "1" && texto.c=
harAt(i) !=3D"2" && texto.charAt(i) !=3D "3" && texto.charAt(i) !=3D "4" =
&& texto.charAt(i) !=3D"5" && texto.charAt(i) !=3D "6" && texto.charAt(i)=
!=3D "7" && texto.charAt(i) !=3D"8" && texto.charAt(i) !=3D "9" && texto=
.charAt(i) !=3D"k" && texto.charAt(i) !=3D "K" )=20
{
- alert("El valor ingresado no corresponde a un RUT v=E1lido.");
+ alert("El valor ingresado no corresponde a un RUT v?lido.");
return false;
}
}
@@ -2149,12 +2149,12 @@
=20
//var sfile =3D nameatt.value
sfile =3D sfile.replace("\/","\\")
- sfile =3D sfile.replace("=C3=A1","=E1")
- sfile =3D sfile.replace("=C3=A9","=E9")
- sfile =3D sfile.replace("=C3=AD","=ED")
- sfile =3D sfile.replace("=C3=B3","=F3")
- sfile =3D sfile.replace("=C3=BA","=FA")
- sfile =3D sfile.replace("=C3=B1","=F1")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
sfile =3D sfile.replace("\/","\\")
=20
//alert('../../h2_sales/asp/download_files.asp?strFileName=3D=
'+ sfile +'&Strtype=3Ds_file')
@@ -2175,12 +2175,12 @@
location.href =3D '../../h2_sales/asp/download_files.asp?strFile=
Name=3D'+ sfile +'&Strtype=3Ds_file&nameatt=3D'+nameatt+'&typ=
e_entity=3D'+type_entity=20
}
}else{
- sfile =3D sfile.replace("=C3=A1","=E1")
- sfile =3D sfile.replace("=C3=A9","=E9")
- sfile =3D sfile.replace("=C3=AD","=ED")
- sfile =3D sfile.replace("=C3=B3","=F3")
- sfile =3D sfile.replace("=C3=BA","=FA")
- sfile =3D sfile.replace("=C3=B1","=F1")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
sfile =3D sfile.replace("\/","\\")
if(Framecount=3D=3D4)
parent.frames('f00').location.href =3D '../../h2_sales/asp/downloa=
d_files.asp?strFileName=3D'+ sfile +'&Strtype=3Ds_file&nameatt=3D=
'+nameatt+'&type_entity=3D'+document.formulario.tipoentidad.value
@@ -2211,7 +2211,7 @@
=09
if (matchArray=3D=3Dnull) {
=09
- alert("La direcci=F3n E-mail ingresada es incorrecta. Verifique que e=
st=E9 correctamente escrita (por ejemplo: web...@pr...).")
+ alert("La direcci?n E-mail ingresada es incorrecta. Verifique que est=
? correctamente escrita (por ejemplo: web...@pr...).")
=09
obj.value=3D'';
obj.focus();
@@ -2231,7 +2231,7 @@
if (IPArray!=3Dnull) {
for (var i=3D1;i<=3D4;i++) {
if (IPArray[i]>255) {
- alert("Direcci=F3n IP no Valida!")
+ alert("Direcci?n IP no Valida!")
obj.value=3D'';
obj.focus();
return false;
@@ -2253,13 +2253,13 @@
domArr[domArr.length-1].length>3) {
=09
=20
- alert("La direcci=F3n debe finalizar con 3 letras (ej: com, net, or=
g, gov, mil) o 2 letras (ej: cl, de, br, ar)")
+ alert("La direcci?n debe finalizar con 3 letras (ej: com, net, org,=
gov, mil) o 2 letras (ej: cl, de, br, ar)")
obj.value =3D '';
obj.focus();
return false
}
if (len<2) {
- var errStr=3D"Direcci=F3n incompleta"
+ var errStr=3D"Direcci?n incompleta"
alert(errStr)
obj.value =3D '';
obj.focus();
@@ -2270,12 +2270,12 @@
}
=20
function redir3(nameatt,sfile){
- /*sfile =3D sfile.replace("=C3=A1","=E1")
- sfile =3D sfile.replace("=C3=A9","=E9")
- sfile =3D sfile.replace("=C3=AD","=ED")
- sfile =3D sfile.replace("=C3=B3","=F3")
- sfile =3D sfile.replace("=C3=BA","=FA")
- sfile =3D sfile.replace("=C3=B1","=F1")
+ /*sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
+ sfile =3D sfile.replace("??","?")
sfile =3D sfile.replace("\/","\\")*/
window.location.href =3D '../../h2_sales/asp/download_files.asp?strF=
ileName=3D'+ sfile +'&Strtype=3Ds_file'=20
}
@@ -2505,7 +2505,7 @@
if(document.formulario.RechazadoPor)
document.formulario.RechazadoPor.value =3D xSwCorredorProducto
=09
- alert("Esta oportunidad de negocio ha sido cancelada \n Solicite a=
utorizaci=F3n") =09
+ alert("Esta oportunidad de negocio ha sido cancelada \n Solicite a=
utorizaci?n") =09
=09
//alert(document.formulario.RechazadoPor.value+'---') =09
}
@@ -2527,7 +2527,7 @@
if(document.formulario.RechazadoPor)
document.formulario.RechazadoPor.value =3D StrRut2
=09
- alert("Esta oportunidad de negocio ha sido cancelada \n Solicite au=
torizaci=F3n") =09
+ alert("Esta oportunidad de negocio ha sido cancelada \n Solicite au=
torizaci?n") =09
// alert(document.formulario.RechazadoPor.value+'---')=09
=20
}
@@ -3033,4 +3033,4 @@
}
return true;
}
- =20
\ No newline at end of file
+ =20
Modified: humano2/trunk/web/builder/site/leftbar.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/leftbar.aspx 2005-06-08 18:53:26 UTC (=
rev 1269)
+++ humano2/trunk/web/builder/site/leftbar.aspx 2005-06-08 19:24:48 UTC (=
rev 1270)
@@ -1,6 +1,6 @@
<%@ Page language=3D"c#" Codebehind=3D"leftbar.aspx.cs" AutoEventWireup=3D=
"false" Inherits=3D"Builder.site.leftbar" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-
+<!-- $Id$ -->
<HTML>
<HEAD>
<!--<link rel=3D"stylesheet" type=3D"text/css" href=3D"styles/css/Outlo=
okBar.css">-->
@@ -14,11 +14,11 @@
=09
if(id=3D=3D1){
if(document.all.aaa.style.visibility=3D=3D'visible'){
- document.all.aaa1.src=3D"gfx/blank.png"
+ document.all.aaa1.src=3D"img/blank.png"
document.all.aaa.style.position=3D'absolute'=09
document.all.aaa.style.visibility=3D'hidden'
}else{
- document.all.aaa1.src=3D"gfx/blank.png"
+ document.all.aaa1.src=3D"img/blank.png"
document.all.aaa.style.position=3D'static'=09
document.all.aaa.style.visibility=3D'visible'
} =20
@@ -26,11 +26,11 @@
=09
if(id=3D=3D2){
if(document.all.bbb.style.visibility=3D=3D'visible'){
- document.all.bbb1.src=3D"gfx/blank.png"
+ document.all.bbb1.src=3D"img/blank.png"
document.all.bbb.style.position=3D'absolute'=09
document.all.bbb.style.visibility=3D'hidden'
}else{
- document.all.bbb1.src=3D"gfx/blank.png"
+ document.all.bbb1.src=3D"img/blank.png"
document.all.bbb.style.position=3D'static'=09
document.all.bbb.style.visibility=3D'visible'
} =20
@@ -38,11 +38,11 @@
=09
if(id=3D=3D3){
if(document.all.ccc.style.visibility=3D=3D'visible'){
- document.all.ccc1.src=3D"gfx/blank.png"
+ document.all.ccc1.src=3D"img/blank.png"
document.all.ccc.style.position=3D'absolute'=09
document.all.ccc.style.visibility=3D'hidden'
}else{
- document.all.ccc1.src=3D"gfx/blank.png"
+ document.all.ccc1.src=3D"img/blank.png"
document.all.ccc.style.position=3D'static'=09
document.all.ccc.style.visibility=3D'visible'
} =20
@@ -50,11 +50,11 @@
=09
if(id=3D=3D4){
if(document.all.ddd.style.visibility=3D=3D'visible'){
- document.all.ddd1.src=3D"gfx/blank.png"
+ document.all.ddd1.src=3D"img/blank.png"
document.all.ddd.style.position=3D'absolute'=09
document.all.ddd.style.visibility=3D'hidden'
}else{
- document.all.ddd1.src=3D"gfx/blank.png"
+ document.all.ddd1.src=3D"img/blank.png"
document.all.ddd.style.position=3D'static'=09
document.all.ddd.style.visibility=3D'visible'
} =20
@@ -69,7 +69,7 @@
<table height=3D"1" width=3D"100%" border=3D"0" cellpadding=3D"0" cell=
spacing=3D"0">
<tr bgcolor=3D"#999999" id=3D'0' fname=3D'System class' style=3D"c=
ursor: hand;" onclick=3D"javascript:ShowChildren(1);">
<td style=3D"padding-left: 4px; padding-top: 2px; padding-bottom: 1p=
x; padding-right: 1px; width:20px" height=3D18>
- <img id=3Daaa1 width=3D1 height=3D1 src=3D'gfx/blank.png' style=3D'=
position:relative;top:1px;'/>
+ <img id=3Daaa1 width=3D1 height=3D1 src=3D'img/blank.png' style=3D'=
position:relative;top:1px;'/>
</td>
<td id=3D'folder0' align=3D"left" width=3D"100%" nowrap >
Build
@@ -85,7 +85,7 @@
<tr id=3D'1' fname=3D'Application' style=3D"cursor: hand;">
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<a target=3D"mainFrame" href=3D"datamodeling.aspx">
- <img src=3D"gfx/icon_data_modeling_XLgrey.gif" border=3D0><br>
+ <img src=3D"img/icon_data_modeling_XLgrey.gif" border=3D0><br>
DataModel
</a>
</td>
@@ -95,7 +95,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=3D=
TemplateCenter.asp?mode=3D23">
- <img src=3D"gfx/icon_rules_XL.gif" border=3D0><br>
+ <img src=3D"img/icon_rules_XL.gif" border=3D0><br>
Reglas
</a>
@@ -105,7 +105,7 @@
--> <tr id=3D'1' fname=3D'Application' style=3D"cursor: hand;">
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<a target=3D"mainFrame" href=3D"functionindex.aspx">
- <img src=3D"gfx/icon_accion_L.gif" border=3D0><br>
+ <img src=3D"img/icon_accion_L.gif" border=3D0><br>
Functions
</a>
</td>
@@ -115,7 +115,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=3D=
TemplateCenter.asp?mode=3D22">
- <img src=3D"gfx/icon_folder_XLgrey.gif" border=3D0><br>
+ <img src=3D"img/icon_folder_XLgrey.gif" border=3D0><br>
Folders
</a>
@@ -126,7 +126,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=3D=
TemplateCenter.asp?mode=3D2">
- <img src=3D"gfx/icon_role_L.gif" border=3D0><br>
+ <img src=3D"img/icon_role_L.gif" border=3D0><br>
Roles
</a>
@@ -144,7 +144,7 @@
=09
<tr id=3D'36' bgcolor=3D"#999999" fname=3D'Function class' style=3D"=
cursor: hand;" onclick=3D"javascript:ShowChildren(2);">
<td style=3D"padding-left: 4px; padding-top: 2px; padding-bottom: 1p=
x; padding-right: 1px; width:20px" height=3D18>
- <img id=3Dbbb1 width=3D1 height=3D1 src=3D'gfx/blank.png' style=3D'=
position:relative;top:1px;'/>
+ <img id=3Dbbb1 width=3D1 height=3D1 src=3D'img/blank.png' style=3D'=
position:relative;top:1px;'/>
</td>
<td id=3D'folder36' align=3D"left" width=3D"100%" nowrap>Administrat=
e<span id=3D'count36'></span></td><tr>
<tr>
@@ -155,7 +155,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=3D=
TemplateCenter.asp?mode=3D5">
- <img src=3D"gfx/icon_stadistics_XL.gif" border=3D0><br>
+ <img src=3D"img/icon_stadistics_XL.gif" border=3D0><br>
Statistics
</a>
@@ -167,7 +167,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=3D=
TemplateCenter.asp?mode=3D7">
- <img src=3D"gfx/icon_import_XL.gif" border=3D0><br>
+ <img src=3D"img/icon_import_XL.gif" border=3D0><br>
Import data
</a>
@@ -188,7 +188,7 @@
<tr id=3D'1' fname=3D'Application' style=3D"cursor: hand;">
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<a target=3D"mainFrame" href=3D"userindex.aspx">
- <img src=3D"gfx/administrate_users.gif" border=3D0><br>
+ <img src=3D"img/administrate_users.gif" border=3D0><br>
Users &<br />Domains
</a>
</td>
@@ -203,7 +203,7 @@
</tr>
<tr id=3D'74' bgcolor=3D"#999999" fname=3D'Scripting class' style=3D=
"cursor: hand;" onclick=3D"javascript:ShowChildren(3);">
<td style=3D"padding-left: 4px; padding-top: 2px; padding-bottom: 1p=
x; padding-right: 1px; width:20px" height=3D18>
- <img id=3Dccc1 width=3D1 height=3D1 src=3D'gfx/blank.png' style=3D'=
position:relative;top:1px;'/> </td>
+ <img id=3Dccc1 width=3D1 height=3D1 src=3D'img/blank.png' style=3D'=
position:relative;top:1px;'/> </td>
<td id=3D'folder74' align=3D"left" width=3D"100%" nowrap>Super admi=
n<span id=3D'count74'></span>
</td>
<tr>
@@ -217,7 +217,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=
=3DTemplateCenter.asp?mode=3D6">
- <img src=3D"gfx/server_domains.gif" border=3D0><br>
+ <img src=3D"img/server_domains.gif" border=3D0><br>
Domains
</a>
@@ -227,7 +227,7 @@
<td id=3D'folder1' align=3D"center" width=3D"100%" nowrap>
<br>
<a target=3D"mainFrame" href=3D"../interfaz/DefaultPage.asp?page=
=3DTemplateCenter.asp?mode=3D4">
- <img src=3D"gfx/icon_systemclass_XL.gif" border=3D0><br>
+ <img src=3D"img/icon_systemclass_XL.gif" border=3D0><br>
System Classes
</a>
@@ -240,4 +240,4 @@
</div>=20
-->
</BODY>
-</HTML>
\ No newline at end of file
+</HTML>
Property changes on: humano2/trunk/web/builder/site/leftbar.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/builder/site/xsl/createreport.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 18:53:=
26 UTC (rev 1269)
+++ humano2/trunk/web/builder/site/xsl/createreport.xsl 2005-06-08 19:24:=
48 UTC (rev 1270)
@@ -390,19 +390,19 @@
</td>
<td>
<a href=3D"#" onclick=3D=
"rightColumn.Top(rightColumn.GetSelectedIndex())...
[truncated message content] |
|
From: <sv...@de...> - 2005-06-08 18:53:33
|
Author: marcelo
Date: 2005-06-08 14:53:26 -0400 (Wed, 08 Jun 2005)
New Revision: 1269
Modified:
humano2/trunk/web/builder/site/js/webfxtree.js
Log:
* Fixed path to image directories=20
Modified: humano2/trunk/web/builder/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 18:41:42 UT=
C (rev 1268)
+++ humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 18:53:26 UT=
C (rev 1269)
@@ -12,7 +12,7 @@
=20
//FIXME: put the name of the real author of this great webFXTree tool
=20
-var imgFolder =3D 'gfx/webfxtree';
+var imgFolder =3D 'img/webfxtree';
var webFXTreeConfig =3D=20
{
rootIcon : imgFolder + '/foldericon.png',
|
|
From: <sv...@de...> - 2005-06-08 18:41:41
|
Author: pcamacho
Date: 2005-06-08 14:41:42 -0400 (Wed, 08 Jun 2005)
New Revision: 1268
Modified:
humano2/trunk/core/db/absCrud.cs
humano2/trunk/core/db/mssql/mssqlCrud.cs
humano2/trunk/core/db/pgsql/pgsqlCrud.cs
Log:
FIX: bug #120. Now if a string to put in a column of a table is empty, th=
en the value inserted is null for both=20
postgres and mssql. When a numeric is updated to nothing it works (it cra=
shed before).
Modified: humano2/trunk/core/db/absCrud.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/absCrud.cs 2005-06-08 18:05:05 UTC (rev 1267)
+++ humano2/trunk/core/db/absCrud.cs 2005-06-08 18:41:42 UTC (rev 1268)
@@ -18,7 +18,7 @@
=20
namespace Humano2.Core.Db {
=20
- abstract public class absCrud=20
+ abstract public class absCrud=20
{
=20
#region Funciones Publicas, (Funcionalidad propia del Crud)
@@ -1324,9 +1324,15 @@
// If the value is empty, don't bother adding it.
// REMOVED BY MARCELO, what if the person is deleting an answer ?
// FIXME: If value =3D "" then the update should be to NULL not ""
- //if(value.Length =3D=3D 0) { continue; }
- =09
- string columnValue =3D escapeAttribute( value, columnType );
+ string columnValue;
+ if(value.Length =3D=3D 0)
+ {=20
+ columnValue =3D "null";
+ }
+ else
+ {
+ columnValue =3D escapeAttribute( value,columnTyp=
e);
+ }
=09
tblColumns.Add( escapeColumn(columnName) );
tblValues.Add( columnValue );
Modified: humano2/trunk/core/db/mssql/mssqlCrud.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/mssql/mssqlCrud.cs 2005-06-08 18:05:05 UTC (rev=
1267)
+++ humano2/trunk/core/db/mssql/mssqlCrud.cs 2005-06-08 18:41:42 UTC (rev=
1268)
@@ -1401,8 +1401,8 @@
///<returns>Un string de la los dato representando el valor en la base=
de datos.</returns>
override protected string escapeAttribute(string value, string type)
{
- //Para postgreSQL no tenemos ecepciones
- return standardValue( value );
+ //Para MSSQL no tenemos ecepciones todavia
+ return standardValue( value);
}
=09
/// <summary>
@@ -1587,7 +1587,7 @@
tblName, tmpColName, typeDef ) );
conn.doCommand( String.Format( "UPDATE {0} SET {1} =3D CAST({2} AS {3=
})",
tblName, tmpColName, colName, typeDef ) );
- =09
+ =09
conn.doCommand( String.Format( "Exec sp_rename '{0}.{1}', '{2}', 'COL=
UMN'",
tblName, colName.Replace("\"",""), oldColName.Replace("\"","")=
) );
conn.doCommand( String.Format( "Exec sp_rename '{0}.{1}', '{2}', 'COL=
UMN'",
Modified: humano2/trunk/core/db/pgsql/pgsqlCrud.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/pgsql/pgsqlCrud.cs 2005-06-08 18:05:05 UTC (rev=
1267)
+++ humano2/trunk/core/db/pgsql/pgsqlCrud.cs 2005-06-08 18:41:42 UTC (rev=
1268)
@@ -1394,7 +1394,7 @@
///<returns>Un string de la los dato representando el valor en la base=
de datos.</returns>
override protected string escapeAttribute(string value, string type)
{
- //Para postgreSQL no tenemos ecepciones
+ //Para postgreSQL no tenemos ecepciones todavia
return standardValue( value );
}
=09
|
|
From: <sv...@de...> - 2005-06-08 18:05:07
|
Author: marcelo
Date: 2005-06-08 14:05:05 -0400 (Wed, 08 Jun 2005)
New Revision: 1267
Modified:
humano2/trunk/web/portal/site/Data_structured.aspx.cs
Log:
* Views crashed when a folder had no forms, this fixes that bug.
Modified: humano2/trunk/web/portal/site/Data_structured.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/Data_structured.aspx.cs 2005-06-08 17:3=
9:57 UTC (rev 1266)
+++ humano2/trunk/web/portal/site/Data_structured.aspx.cs 2005-06-08 18:0=
5:05 UTC (rev 1267)
@@ -128,7 +128,10 @@
string FormFolder=3D"";
foreach(DataRow Dr in DTFolder.Rows) //Recorre Folders
{
- FormFolder+=3DDr[2] + ",";
+ if (!Convert.IsDBNull( Dr[2] ))=20
+ {
+ FormFolder+=3DDr[2] + ",";
+ }
}
=09
if(FormFolder!=3D"")
|
|
From: <sv...@de...> - 2005-06-08 17:39:59
|
Author: marcelo Date: 2005-06-08 13:39:57 -0400 (Wed, 08 Jun 2005) New Revision: 1266 Modified: humano2/trunk/core/config.cs Log: * Changed version to Beta5 Modified: humano2/trunk/core/config.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/core/config.cs 2005-06-08 16:41:35 UTC (rev 1265) +++ humano2/trunk/core/config.cs 2005-06-08 17:39:57 UTC (rev 1266) @@ -26,7 +26,7 @@ // The Version of the Humano2 core code const int major =3D 5; const int minor =3D 0; - const string patch =3D "beta4"; + const string patch =3D "beta5"; =09 // Contains the instance, once instanced. private static Config instance =3D null; |
|
From: <sv...@de...> - 2005-06-08 16:41:33
|
Author: pcamacho
Date: 2005-06-08 12:41:35 -0400 (Wed, 08 Jun 2005)
New Revision: 1265
Modified:
humano2/trunk/web/portal/site/leftbar.aspx.cs
Log:
FIX: the leftbar in portal was not filtering by domain.
Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 16:31:07 UTC=
(rev 1264)
+++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 16:41:35 UTC=
(rev 1265)
@@ -194,9 +194,11 @@
private string getClassList(adapter dbAdapter)
{
string xmlString =3D "";
- =20
+ =20
+ string domainFilter =3D String.Format("34|4|'{0}'|1|0;",user=
Cred.DomainIds[userCred.CurrentDomainIndex]);
+ =20
//Get the list of all user classId
- string filter =3D "0|2|'10000'|0|0"; //Select only user clas=
s (id_entity > 10000)
+ string filter =3D domainFilter + "0|2|'10000'|0|0"; //Select=
only user class (id_entity > 10000)
DataTable DTClassList =3D dbAdapter.GenerateViewTools(2,"0",=
filter,"","","",0);
xmlString +=3D "<classes>";
xmlString +=3D"<reload>true</reload>";
|
|
From: <sv...@de...> - 2005-06-08 16:31:05
|
Author: pcamacho Date: 2005-06-08 12:31:07 -0400 (Wed, 08 Jun 2005) New Revision: 1264 Modified: humano2/trunk/web/portal/site/topbar.aspx.cs Log: FIX: bug #187. Only the first domain was taken. Modified: humano2/trunk/web/portal/site/topbar.aspx.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/portal/site/topbar.aspx.cs 2005-06-08 16:07:32 UTC = (rev 1263) +++ humano2/trunk/web/portal/site/topbar.aspx.cs 2005-06-08 16:31:07 UTC = (rev 1264) @@ -63,7 +63,7 @@ xmlString +=3D "<Page>"; xmlString +=3D "<Current-Info>"; xmlString +=3D "<UserName><![CDATA[" + userCred.UserName + "]]></User= Name>"; - xmlString +=3D "<DomainName><![CDATA[" + userCred.DomainNames[0] + "]= ]></DomainName>"; + xmlString +=3D "<DomainName><![CDATA[" + userCred.DomainNames[userCre= d.CurrentDomainIndex] + "]]></DomainName>"; xmlString +=3D "<Session><![CDATA[" + Cookies.Get(WebConst.SessionCoo= kie) + "]]></Session>"; xmlString +=3D "<Version><![CDATA[" + Humano2.Core.Config.Instance().= GetVersion() + "]]></Version>"; xmlString +=3D "</Current-Info>"; |
|
From: <sv...@de...> - 2005-06-08 16:07:31
|
Author: pcamacho
Date: 2005-06-08 12:07:32 -0400 (Wed, 08 Jun 2005)
New Revision: 1263
Modified:
humano2/trunk/web/builder/site/js/webfxtree.js
humano2/trunk/web/portal/site/leftbar.aspx.cs
humano2/trunk/web/portal/site/xsl/leftbar.xsl
Log:
FIX: #165. Simplification of leftbar.aspx.cs and leftbar.xsl.
Modified: humano2/trunk/web/builder/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 15:45:13 UT=
C (rev 1262)
+++ humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 16:07:32 UT=
C (rev 1263)
@@ -7,22 +7,11 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-// $Id: webfxtree.js 1255 2005-06-07 20:07:17Z pcamacho $
+// $Id$
*/
=20
//FIXME: put the name of the real author of this great webFXTree tool
=20
-/**
- * This is a javascript that allows to show links in a dynamic tree.
- * Here is an example of use:
- * //Init the tree
- * var tree =3D new WebFXTree('');
- * tree.setBehavior('classic');
- * tree.setTarget('mainFrame');
- * tree.setJSLoading('Loading...');
- *
- */
-
var imgFolder =3D 'gfx/webfxtree';
var webFXTreeConfig =3D=20
{
Property changes on: humano2/trunk/web/builder/site/js/webfxtree.js
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 15:45:13 UTC=
(rev 1262)
+++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-08 16:07:32 UTC=
(rev 1263)
@@ -56,7 +56,7 @@
=20
if (Mode !=3D "1" && Mode !=3D "2") //Barra Explorar
{
- xmlString =3D genExploreList(dbAdapter);
+ xmlString =3D getClassList(dbAdapter);
}
else if(Mode =3D=3D "2") //Barra Explorar System Class
{
@@ -92,9 +92,7 @@
=20
foreach(DataRow Dr in dtResult.Rows) //Recorre Folders
{
-
string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DcreateXslt.aspx&id_entity=3D" =
+ Dr[0]);
- =20
xmlString +=3D "<class>";
xmlString +=3D "<classId>" + Dr[0] +"</classId>";
xmlString +=3D "<className>" + Dr[1] + "</className>";
@@ -106,14 +104,13 @@
xmlString +=3D"</classes>";
xmlString +=3D "</views>";
=09
- }else{ //Barra Folder
+ }
+ else
+ { //Barra Folder
string Forms=3D"";
- string filtro =3D String.Format("34|0|'{0}'|0|0",userCred.DomainIds[=
userCred.CurrentDomainIndex]);
- =09
+ string filtro =3D String.Format("34|4|'{0}'|0|0",userCred.DomainIds[=
userCred.CurrentDomainIndex]);
DataTable DTFolder =3D Folder.GetFoldersInTreeOrder(userCred);
-
DataTable DTView =3D dbAdapter.GenerateViewTools(1011,"0,1017,1018",=
filtro,"","","",0);
-
DataTable DTReport =3D dbAdapter.GenerateViewTools(1300,"0,1307",fil=
tro,"","","",0);
=20
filtro =3D String.Format("1201|4|'CREATE'|1|0;{0}",filtro);
@@ -189,64 +186,79 @@
return xmlString;
}
=20
- private string genExploreList(adapter dbAdapter)
+ ///<summary>
+ ///Generate the list of class, with all its views and forms (the=
n will be added the reports)
+ ///</summary>
+ ///<param name=3D"dbAdapter">The adapter to have access to viewt=
ools</param>
+ ///<returns>the xml string with all info about every user class<=
/returns>
+ private string getClassList(adapter dbAdapter)
{
- string xmlString;
+ string xmlString =3D "";
=20
- // View information.
- int[] viewId;
- string[] viewName;
- int[] viewClassId;
-
- //Barra Explorar Class
- dbAdapter.ViewsByDomainId(userCred.DomainIds[userCred.CurrentDomainIn=
dex],out viewName,out viewId,out viewClassId);
- =09
- //Sus view
- xmlString=3D"<views>";
- xmlString +=3D"<reload>true</reload>";
- xmlString +=3D"<links>";
- for (int j=3D0;viewId!=3Dnull && j<viewId.Length;j++)
- {
- xmlString +=3D "<link>"=20
- + "<classId>"
- + viewClassId[j] =20
- + "</classId>"
- + "<href>"
- + ViewPages.showViewPage + viewId[j] + "&iniC=
lass=3D" + viewClassId[j] =20
- + "</href>"
- + "<text>"
- + viewName[j]
- + "</text>"
- + "</link>";
- }
- xmlString +=3D"</links>";
- xmlString +=3D"<classes>";
- for (int j=3D0;j<viewId.Length;j++)
- {
- if(!isInTabBeforePos(viewClassId[j],j,viewClassId))
- {
- =20
- //string urlCreate =3D Html.genAbsoluteUrl("/portal/site/instance.a=
spx?action=3Dcreate&display=3DreadXslt.aspx&id_entity=3D" + viewC=
lassId[j]);
- string urlCreate =3D Html.genAbsoluteUrl("/portal/site/Data_structu=
red.aspx?action=3Dcreate&display=3DcreateXslt.aspx&id_entity=3D" =
+ viewClassId[j]);
- =20
- string className =3D dbAdapter.GetClassNameById(viewCla=
ssId[j]);
- =20
- if(className =3D=3D "")=20
- { // Si no tenemos un nombre (la clase es borrado) no m=
uestre la clase.
- continue;=20
- }
- =09
- xmlString +=3D "<class>";
- xmlString +=3D "<classId>" + Convert.ToString(viewClassId[j]=
) +"</classId>";
- xmlString +=3D "<className>" + className + "</className>";
- xmlString +=3D "<urlCreate>" + urlCreate + "</urlCreate>";
- xmlString +=3D "</class>";
- }
- }
- xmlString +=3D"</classes>";
- =20
- xmlString +=3D "</views>";
- =09
+ //Get the list of all user classId
+ string filter =3D "0|2|'10000'|0|0"; //Select only user clas=
s (id_entity > 10000)
+ DataTable DTClassList =3D dbAdapter.GenerateViewTools(2,"0",=
filter,"","","",0);
+ xmlString +=3D "<classes>";
+ xmlString +=3D"<reload>true</reload>";
+ =20
+ =20
+ foreach(DataRow dr in DTClassList.Rows)
+ {
+ //General class info
+ int classId =3D Convert.ToInt32(dr["id_entity"]);
+ string className =3D dbAdapter.GetClassNameById(classId)=
;
+ xmlString +=3D "<class>";
+ xmlString +=3D "<name>";
+ xmlString +=3D className;
+ xmlString +=3D "</name>";
+ xmlString +=3D "<id>";
+ xmlString +=3D classId;
+ xmlString +=3D "</id>";
+ =20
+ //Get the views for the class
+ xmlString +=3D "<views>";
+ string viewFilter =3D "1017|4|'" + classId + "'|0|0";=20
+ DataTable DTViews =3D dbAdapter.GenerateViewTools(1011,"=
0,1018",viewFilter,"","","",0);
+ foreach(DataRow viewDr in DTViews.Rows)
+ {
+ int viewId =3D Convert.ToInt32(viewDr["id_entity"]);
+ string viewName =3D Convert.ToString(viewDr["viewNam=
e"]);
+ xmlString +=3D "<view>";
+ xmlString +=3D "<link>";
+ xmlString +=3D ViewPages.showViewPage + viewI=
d + "&iniClass=3D" + classId;
+ xmlString +=3D "</link>";
+ xmlString +=3D "<text>";
+ xmlString +=3D viewName; =20
+ xmlString +=3D "</text>";
+ xmlString +=3D "</view>";
+ }
+ xmlString +=3D"</views>";
+ =20
+ //Get the forms
+ =20
+ xmlString +=3D "<forms>";
+ string formFilter =3D "1203|4|'" + classId + "'|0|0";
+ DataTable DTForms =3D dbAdapter.GenerateViewTools(1200,"=
0,1202",formFilter,"","","",0);
+ foreach(DataRow formDr in DTForms.Rows)
+ {
+ int formId =3D Convert.ToInt32(formDr["id_entity"]);
+ string formName =3D Convert.ToString(formDr["formNam=
e"]);
+ xmlString +=3D "<form>";
+ xmlString +=3D "<link>";
+ xmlString +=3D "Data_structured.aspx?action=3D=
create&display=3DreadXslt.aspx&id_entity=3D" + classId + "&fo=
rmsId=3D" + formId;
+ xmlString +=3D "</link>";
+ xmlString +=3D "<text>";
+ xmlString +=3D formName; =20
+ xmlString +=3D "</text>";
+ xmlString +=3D "</form>"; =20
+ }
+ xmlString +=3D"</forms>";
+ =20
+ xmlString +=3D"</class>";
+ }
+ xmlString +=3D "</classes>";
+ =20
+ Logger.Log("=3D=3D leftbar.aspx.cs =3D=3D. getClassList=3D "=
+ xmlString,LogLevel.Trace);
return xmlString; =20
}
=20
Modified: humano2/trunk/web/portal/site/xsl/leftbar.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-08 15:45:13 UTC=
(rev 1262)
+++ humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-08 16:07:32 UTC=
(rev 1263)
@@ -20,45 +20,35 @@
tree.setTarget('mainFrame');
tree.setJSLoading('Loading...');
=20
- <xsl:if test=3D"views">
- <xsl:for-each select=3D"views/classes/class">
- <xsl:variable name=3D"classId">
- <xsl:value-of select=3D"classId" />
- </xsl:variable>
- <xsl:variable name=3D"className">
- <xsl:value-of select=3D"className" />
- </xsl:variable>
- <!--
- <xsl:variable name=3D"classId">
- <xsl:value-of select=3D"classId" />
- </xsl:variable>-->
- <xsl:variable name=3D"classVarName"><!-- the classId does not h=
ave spaces -->
- <xsl:value-of select=3D"concat('class',$classId)" />
- </xsl:variable>
- var action =3D "javascript:void(0);"; //do nothing when clickin=
g on a class name. Can not send return (JS exception).
- <xsl:if test=3D"$classId !=3D ''"> <!-- If the class does not e=
xist anymore do not try to show its views -->
- var <xsl:value-of select=3D"$classVarName" /> =3D new WebFXTree=
Item('<xsl:value-of select=3D"$className" />',action);
- tree.add(<xsl:value-of select=3D"$classVarName" />);
- =20
- <!-- Add here the create link -->
- <xsl:variable name=3D"linkCreate">
- <xsl:value-of select=3D"urlCreate"/>
- </xsl:variable>
- =20
- <!-- Later we will add the forms ins=
tead
- var titleLink =3D 'Create instance of <xsl:value-of select=3D"$=
className" />';
- var contentLink =3D '<xsl:value-of select=3D"$linkCreate"/>';
-
- <xsl:value-of select=3D"$classVarName" />.add(new WebFXTreeItem=
(titleLink,contentLink,'','img/webfxtree/crearinstance.jpeg'));
- -->
- =20
- <xsl:for-each select=3D"/views/links=
/link[classId =3D$classId]">
- var content =3D '<xsl:value-of select=3D"href"/>';
- var title =3D '<xsl:value-of select=3D"text"/>'
- <xsl:value-of select=3D"$classVarName" />.add(new WebFXTreeIte=
m(title,content,'','img/webfxtree/view.jpeg'));
- </xsl:for-each>
- </xsl:if>
- </xsl:for-each>
+ <xsl:if test=3D"classes">
+ <xsl:for-each select=3D"classes/class">
+ <xsl:variable name=3D"classId">
+ <xsl:value-of select=3D"id" />
+ </xsl:variable>
+ <xsl:variable name=3D"className">
+ <xsl:value-of select=3D"name" />
+ </xsl:variable>
+ <xsl:variable name=3D"classVarName"><!--=
the classId does not have spaces -->
+ <xsl:value-of select=3D"concat('clas=
s',$classId)" />
+ </xsl:variable>
+ var action =3D "javascript:void(0);"; //=
do nothing when clicking on a class name. Can not send return (JS excepti=
on).
+ <xsl:if test=3D"$classId !=3D ''"> <!-- =
If the class does not exist anymore do not try to show its views -->
+ var <xsl:value-of select=3D"$classVa=
rName" /> =3D new WebFXTreeItem('<xsl:value-of select=3D"$className" />',=
action);
+ tree.add(<xsl:value-of select=3D"$cl=
assVarName" />);
+ <!--List all views for class -->
+ <xsl:for-each select=3D"views/view">
+ var content =3D '<xsl:value-of s=
elect=3D"link"/>';
+ var title =3D '<xsl:value-of sel=
ect=3D"text"/>';
+ <xsl:value-of select=3D"$classVa=
rName" />.add(new WebFXTreeItem(title,content,'','img/webfxtree/view.jpeg=
'));
+ </xsl:for-each>
+ <!--List all forms for class -->
+ <xsl:for-each select=3D"forms/form">
+ var content =3D '<xsl:value-of s=
elect=3D"link"/>';
+ var title =3D '<xsl:value-of sel=
ect=3D"text"/>';
+ <xsl:value-of select=3D"$classVa=
rName" />.add(new WebFXTreeItem(title,content,'','img/webfxtree/crearinst=
ance.jpeg'));
+ </xsl:for-each>
+ </xsl:if>
+ </xsl:for-each>
</xsl:if>
=20
<xsl:if test=3D"folders"><!--Para Folders-->
|
|
From: <sv...@de...> - 2005-06-08 15:45:14
|
Author: pcamacho
Date: 2005-06-08 11:45:13 -0400 (Wed, 08 Jun 2005)
New Revision: 1262
Modified:
humano2/trunk/web/builder/site/js/webfxtree.js
Log:
FIX: the directory for webftxtree images was wrong.
Modified: humano2/trunk/web/builder/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 07:54:28 UT=
C (rev 1261)
+++ humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 15:45:13 UT=
C (rev 1262)
@@ -23,21 +23,22 @@
*
*/
=20
-
-var webFXTreeConfig =3D {
- rootIcon : 'img/webfxtree/foldericon.png',
- openRootIcon : 'img/webfxtree/1x1.gif',
- folderIcon : 'img/webfxtree/foldericon.png',
- openFolderIcon : 'img/webfxtree/openfoldericon.png',
- fileIcon : 'img/webfxtree/file.png',
- iIcon : 'img/webfxtree/i.png',
- lIcon : 'img/webfxtree/l.png',
- lMinusIcon : 'img/webfxtree/lminus.png',
- lPlusIcon : 'img/webfxtree/lplus.png',
- tIcon : 'img/webfxtree/t.png',
- tMinusIcon : 'img/webfxtree/tminus.png',
- tPlusIcon : 'img/webfxtree/tplus.png',
- blankIcon : 'img/webfxtree/blank.png',
+var imgFolder =3D 'gfx/webfxtree';
+var webFXTreeConfig =3D=20
+{
+ rootIcon : imgFolder + '/foldericon.png',
+ openRootIcon : imgFolder + '/1x1.gif',
+ folderIcon : imgFolder + '/foldericon.png',
+ openFolderIcon : imgFolder + '/openfoldericon.png',
+ fileIcon : imgFolder + '/file.png',
+ iIcon : imgFolder + '/i.png',
+ lIcon : imgFolder + '/l.png',
+ lMinusIcon : imgFolder + '/lminus.png',
+ lPlusIcon : imgFolder + '/lplus.png',
+ tIcon : imgFolder + '/t.png',
+ tMinusIcon : imgFolder + '/tminus.png',
+ tPlusIcon : imgFolder + '/tplus.png',
+ blankIcon : imgFolder + '/blank.png',
defaultText : '',
defaultAction : 'javascript:void(0);',=20
defaultBehavior : 'classic',
|
|
From: <sv...@de...> - 2005-06-08 07:54:35
|
Author: marcelo
Date: 2005-06-08 03:54:28 -0400 (Wed, 08 Jun 2005)
New Revision: 1261
Modified:
humano2/trunk/components/viewTools/ViewTools.cs
humano2/trunk/core/db/absCrud.cs
humano2/trunk/core/db/mssql/mssqlComplex.cs
humano2/trunk/core/db/mssql/mssqlCrud.cs
humano2/trunk/web/builder/site/js/webfxtree.js
humano2/trunk/web/portal/site/xsl/leftbar.xsl
Log:
* Fixed lots of minor mistakes which tother were part of mayor problems. =
Have to check these fixes against Mono-postgress before I close the ticke=
ts.
Modified: humano2/trunk/components/viewTools/ViewTools.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/components/viewTools/ViewTools.cs 2005-06-07 23:04:48 U=
TC (rev 1260)
+++ humano2/trunk/components/viewTools/ViewTools.cs 2005-06-08 07:54:28 U=
TC (rev 1261)
@@ -346,7 +346,7 @@
=20
int pos =3D var.IndexOf(";");
// string a =3D var.Substring(pos + 1,7);
- if(var.IndexOf("\" INTO temp")>0)
+ if(var.IndexOf(" INTO temp")>0)
{
=20
string createTable =3D var.Substring(0,pos);
Modified: humano2/trunk/core/db/absCrud.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/absCrud.cs 2005-06-07 23:04:48 UTC (rev 1260)
+++ humano2/trunk/core/db/absCrud.cs 2005-06-08 07:54:28 UTC (rev 1261)
@@ -1322,7 +1322,9 @@
string value =3D Convert.ToString(workRow[columnName]);
=09
// If the value is empty, don't bother adding it.
- if(value.Length =3D=3D 0) { continue; }
+ // REMOVED BY MARCELO, what if the person is deleting an answer ?
+ // FIXME: If value =3D "" then the update should be to NULL not ""
+ //if(value.Length =3D=3D 0) { continue; }
=09
string columnValue =3D escapeAttribute( value, columnType );
=09
Modified: humano2/trunk/core/db/mssql/mssqlComplex.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/mssql/mssqlComplex.cs 2005-06-07 23:04:48 UTC (=
rev 1260)
+++ humano2/trunk/core/db/mssql/mssqlComplex.cs 2005-06-08 07:54:28 UTC (=
rev 1261)
@@ -883,7 +883,7 @@
override public string GetPertinenceForAttribute(string attribut=
eId)
{
string req =3D "select \"id_entity\" from attribute where \"=
classId\" in (select \"to\" from pertinence where id_entity =3D " + Conve=
rt.ToInt32(attributeId) + ") ";
- req +=3D"and \"isPrimary\"=3D1"; //Only takes the pri=
mary attribute of the pertinence
+ req +=3D"and \"isPrimary\"=3D'1'"; //Only takes the p=
rimary attribute of the pertinence
=20
DataTable dt =3D doSelect(req);
if( (dt =3D=3D null) || (dt.Rows.Count =3D=3D 0))
@@ -937,7 +937,7 @@
}
=20
//Logger.Log("IsPrimary: res=3D " + res,LogLevel.Trace);
- bool isPrimary =3D (res =3D=3D "1");
+ bool isPrimary =3D (res =3D=3D "True");
=20
return isPrimary;
}
@@ -962,7 +962,7 @@
}
=20
//Logger.Log("IsPrimary: res=3D " + res,LogLevel.Trace);
- bool isPrimary =3D (res =3D=3D "1");
+ bool isPrimary =3D (res =3D=3D "True");
=20
return isPrimary;
}
Modified: humano2/trunk/core/db/mssql/mssqlCrud.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/mssql/mssqlCrud.cs 2005-06-07 23:04:48 UTC (rev=
1260)
+++ humano2/trunk/core/db/mssql/mssqlCrud.cs 2005-06-08 07:54:28 UTC (rev=
1261)
@@ -932,6 +932,9 @@
}
=09
//ToDel: dbLog.WriteToLog(query,"Big query");
+ query =3D query.Trim();
+ if (query.StartsWith(";"))
+ query =3D query.Substring(1);
=09
//realizo la consulta =09
dsData =3D conn.doSelect( query,new DataSet() );
@@ -1536,7 +1539,7 @@
override protected void doSqlInsert(string tableName, string strColumn=
s, string strValues)
{
string query =3D String.Format( "insert into {0} ({1}) values ({2})",
- tableName, strColumns, strValues );
+ tableName, strColumns, strValues.Replace("\\'","''") );
conn.doCommand( query );
}
=09
@@ -1549,7 +1552,7 @@
override protected void doSqlUpdate(int idEntity, string tableName, st=
ring updatedValues)
{
string query =3D String.Format( "update {0} set {1} where id_entity =3D=
{2}",
- tableName, updatedValues, idEntity );
+ tableName, updatedValues.Replace("\\'","''"), idEntity );
conn.doCommand( query );
}
=09
@@ -1584,10 +1587,11 @@
tblName, tmpColName, typeDef ) );
conn.doCommand( String.Format( "UPDATE {0} SET {1} =3D CAST({2} AS {3=
})",
tblName, tmpColName, colName, typeDef ) );
- conn.doCommand( String.Format( "ALTER TABLE {0} RENAME {1} TO {2}",
- tblName, colName, oldColName ) );
- conn.doCommand( String.Format( "ALTER TABLE {0} RENAME {1} TO {2}",
- tblName, tmpColName, colName ) );
+ =09
+ conn.doCommand( String.Format( "Exec sp_rename '{0}.{1}', '{2}', 'COL=
UMN'",
+ tblName, colName.Replace("\"",""), oldColName.Replace("\"","")=
) );
+ conn.doCommand( String.Format( "Exec sp_rename '{0}.{1}', '{2}', 'COL=
UMN'",
+ tblName, tmpColName.Replace("\"",""), colName.Replace("\"","") =
) );
conn.doCommand( String.Format( "ALTER TABLE {0} DROP COLUMN {1}",
tblName, oldColName ) );
conn.Commit( );
Modified: humano2/trunk/web/builder/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-07 23:04:48 UT=
C (rev 1260)
+++ humano2/trunk/web/builder/site/js/webfxtree.js 2005-06-08 07:54:28 UT=
C (rev 1261)
@@ -1,3 +1,17 @@
+/*
+// The Humano2 Business solution.
+// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
+//
+// This program 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; either version 2 of the License, or
+// (at your option) any later version. =20
+//
+// $Id: webfxtree.js 1255 2005-06-07 20:07:17Z pcamacho $
+*/
+
+//FIXME: put the name of the real author of this great webFXTree tool
+
/**
* This is a javascript that allows to show links in a dynamic tree.
* Here is an example of use:
@@ -7,26 +21,25 @@
* tree.setTarget('mainFrame');
* tree.setJSLoading('Loading...');
*
-=20
*/
=20
=20
var webFXTreeConfig =3D {
- rootIcon : 'gfx/webfxtree/foldericon.png',
- openRootIcon : 'gfx/webfxtree/1x1.gif',
- folderIcon : 'gfx/webfxtree/foldericon.png',
- openFolderIcon : 'gfx/webfxtree/openfoldericon.png',
- fileIcon : 'gfx/webfxtree/file.png',
- iIcon : 'gfx/webfxtree/i.png',
- lIcon : 'gfx/webfxtree/l.png',
- lMinusIcon : 'gfx/webfxtree/lminus.png',
- lPlusIcon : 'gfx/webfxtree/lplus.png',
- tIcon : 'gfx/webfxtree/t.png',
- tMinusIcon : 'gfx/webfxtree/tminus.png',
- tPlusIcon : 'gfx/webfxtree/tplus.png',
- blankIcon : 'gfx/webfxtree/blank.png',
+ rootIcon : 'img/webfxtree/foldericon.png',
+ openRootIcon : 'img/webfxtree/1x1.gif',
+ folderIcon : 'img/webfxtree/foldericon.png',
+ openFolderIcon : 'img/webfxtree/openfoldericon.png',
+ fileIcon : 'img/webfxtree/file.png',
+ iIcon : 'img/webfxtree/i.png',
+ lIcon : 'img/webfxtree/l.png',
+ lMinusIcon : 'img/webfxtree/lminus.png',
+ lPlusIcon : 'img/webfxtree/lplus.png',
+ tIcon : 'img/webfxtree/t.png',
+ tMinusIcon : 'img/webfxtree/tminus.png',
+ tPlusIcon : 'img/webfxtree/tplus.png',
+ blankIcon : 'img/webfxtree/blank.png',
defaultText : '',
- defaultAction : 'javascript:alert("hola");',=20
+ defaultAction : 'javascript:void(0);',=20
defaultBehavior : 'classic',
usePersistence : true
};
@@ -551,4 +564,4 @@
function addNode(typeentity) {
//document.frames['FrameTempLoad'].location.href=3D'Add_object_b=
arra_left.aspx?TypeEntity=3D'+typeentity
document.getElementById('FrameTempLoad').src=3D'Add_object_barra=
_left.aspx?TypeEntity=3D'+typeentity
-}
\ No newline at end of file
+}
Modified: humano2/trunk/web/portal/site/xsl/leftbar.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-07 23:04:48 UTC=
(rev 1260)
+++ humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-08 07:54:28 UTC=
(rev 1261)
@@ -35,8 +35,7 @@
<xsl:variable name=3D"classVarName"><!-- the classId does not h=
ave spaces -->
<xsl:value-of select=3D"concat('class',$classId)" />
</xsl:variable>
- var action =3D "javascript:var i=3D0;"; //do nothing when click=
ing on a class name. Can not send return (JS exception). So=20
- //unuseful put to 0.
+ var action =3D "javascript:void(0);"; //do nothing when clickin=
g on a class name. Can not send return (JS exception).
<xsl:if test=3D"$classId !=3D ''"> <!-- If the class does not e=
xist anymore do not try to show its views -->
var <xsl:value-of select=3D"$classVarName" /> =3D new WebFXTree=
Item('<xsl:value-of select=3D"$className" />',action);
tree.add(<xsl:value-of select=3D"$classVarName" />);
|
|
From: <sv...@de...> - 2005-06-07 23:04:46
|
Author: pcamacho
Date: 2005-06-07 19:04:48 -0400 (Tue, 07 Jun 2005)
New Revision: 1260
Modified:
humano2/trunk/components/webTools/folder.cs
humano2/trunk/web/portal/site/xsl/leftbar.xsl
Log:
FIX: bug #176. The filter for view was bad when selecting the filters.
Modified: humano2/trunk/components/webTools/folder.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/components/webTools/folder.cs 2005-06-07 22:51:55 UTC (=
rev 1259)
+++ humano2/trunk/components/webTools/folder.cs 2005-06-07 23:04:48 UTC (=
rev 1260)
@@ -69,9 +69,9 @@
}
listOfChildsForFilter =3D listOfChildsForFilter.Substrin=
g(0,listOfChildsForFilter.Length-1); //Remove last ","
listOfChildsForFilter +=3D ")]";
- filter =3D String.Format("34|0|'{0}'|1|0",userCred.Domai=
nIds[userCred.CurrentDomainIndex]) + ";"; //For the domain =20
+ filter =3D String.Format("34|4|'{0}'|1|0",userCred.Domai=
nIds[userCred.CurrentDomainIndex]) + ";"; //For the domain =20
filter +=3D "0|8|" + listOfChildsForFilter + "|0|0"; //T=
o reduce the query to the list of childs =20
- Logger.Log("leftbar.aspx.cs: filter =3D " + filter, Log=
Level.Trace);
+ Logger.Log("leftbar.aspx.cs: filter =3D " + filter, LogL=
evel.Trace);
//The datatable with values of current level filtered wi=
th childs
DataTable currentDt =3D dbAdapter.GenerateViewTools(1400=
,"0,1401,1402,1403",filter,"","","",0);
=20
Property changes on: humano2/trunk/web/portal/site/xsl/leftbar.xsl
___________________________________________________________________
Name: svn:keywords
+ Id
|
|
From: <sv...@de...> - 2005-06-07 22:51:59
|
Author: pcamacho
Date: 2005-06-07 18:51:55 -0400 (Tue, 07 Jun 2005)
New Revision: 1259
Modified:
humano2/trunk/components/webTools/folder.cs
humano2/trunk/web/builder/site/functionclasses.aspx.cs
humano2/trunk/web/builder/site/xsl/functionindex.xsl
humano2/trunk/web/portal/site/leftbar.aspx.cs
humano2/trunk/web/portal/site/xsl/leftbar.xsl
Log:
CHANGE: in the builder, the folders in the sidebar (functions) appear in =
a tree.
Modified: humano2/trunk/components/webTools/folder.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/components/webTools/folder.cs 2005-06-07 22:08:51 UTC (=
rev 1258)
+++ humano2/trunk/components/webTools/folder.cs 2005-06-07 22:51:55 UTC (=
rev 1259)
@@ -73,7 +73,7 @@
filter +=3D "0|8|" + listOfChildsForFilter + "|0|0"; //T=
o reduce the query to the list of childs =20
Logger.Log("leftbar.aspx.cs: filter =3D " + filter, Log=
Level.Trace);
//The datatable with values of current level filtered wi=
th childs
- DataTable currentDt =3D dbAdapter.GenerateViewTools(1400=
,"0,1401,1403,1402",filter,"","","",0);
+ DataTable currentDt =3D dbAdapter.GenerateViewTools(1400=
,"0,1401,1402,1403",filter,"","","",0);
=20
//Build the concatenation of all DataTables
DataTable auxDt =3D null; //empty table to start
Property changes on: humano2/trunk/components/webTools/folder.cs
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/builder/site/functionclasses.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/functionclasses.aspx.cs 2005-06-07 22:=
08:51 UTC (rev 1258)
+++ humano2/trunk/web/builder/site/functionclasses.aspx.cs 2005-06-07 22:=
51:55 UTC (rev 1259)
@@ -97,24 +97,24 @@
return xmlString;
}
=20
- /**
- * FIXME: This code is the same in leftbar.aspx.cs: we should fa=
ctorize it.
- */
+ ///<summary>
+ ///Builds xml string with folder info for the current domain
+ ///</summary>
+ ///<returns>Xml string with folder info (id,parent,name)</return=
s>
private string getFolders()
{
string xmlString =3D "";
=20
- adapter dbAdapter =3D userCred.CoreAdapter;
- DataTable DTFolder =3D dbAdapter.GenerateViewTools(1400,"0,1=
401,1403,1402","","","","",0);
-
+ DataTable DTFolder =3D Folder.GetFoldersInTreeOrder(userCred=
);
+ =20
xmlString +=3D "<folders>" ;
=20
foreach(DataRow Dr in DTFolder.Rows) //Recorre Folders
{
xmlString +=3D "<folder>";
xmlString +=3D "<id>" + Dr["id_entity"] + "</id>"=
;
- xmlString +=3D "<name>" + Dr[1] + "</name>";
- xmlString +=3D "<parent>" + Dr[3] + "</parent>";
+ xmlString +=3D "<name>" + Dr["folderName"] + "</n=
ame>";
+ xmlString +=3D "<parent>" + Dr["folderParent"] + =
"</parent>";
xmlString +=3D " </folder>";
}
xmlString +=3D "</folders>";
Modified: humano2/trunk/web/builder/site/xsl/functionindex.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-07 22:08=
:51 UTC (rev 1258)
+++ humano2/trunk/web/builder/site/xsl/functionindex.xsl 2005-06-07 22:51=
:55 UTC (rev 1259)
@@ -1,4 +1,5 @@
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!-- $Id$ -->
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
<xsl:output method=3D"html" />
<xsl:template match=3D"/">
@@ -60,7 +61,13 @@
<xsl:for-each select=3D"/vffr/folders/folder">
var titleLink =3D '<xsl:value-of select=3D"name"=
/>';
var contentLink =3D 'foldermanagement.aspx?modfo=
lderId=3D<xsl:value-of select=3D"id" />';
- folderBranch.add(new WebFXTreeItem(titleLink,con=
tentLink,'','gfx/webfxtree/view.jpeg'));
+ var folder_<xsl:value-of select=3D"id"/> =3D new=
WebFXTreeItem(titleLink,contentLink,'','');
+ <xsl:if test=3D"parent=3D'0'">
+ folderBranch.add(folder_<xsl:value-of select=3D"=
id"/>);
+ </xsl:if> =09
+ <xsl:if test=3D"parent!=3D'0'">
+ folder_<xsl:value-of select=3D"parent"/>.add(fol=
der_<xsl:value-of select=3D"id"/>);
+ </xsl:if>
</xsl:for-each>
=20
//Forms
Property changes on: humano2/trunk/web/builder/site/xsl/functionindex.xsl
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-07 22:08:51 UTC=
(rev 1258)
+++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-07 22:51:55 UTC=
(rev 1259)
@@ -126,12 +126,12 @@
{
xmlString +=3D " <folder>";
xmlString +=3D " <id>" + Dr["id_entity"] + "</i=
d>";
- xmlString +=3D " <name>" + Dr[1] + "</name>";
- if (Dr[3] !=3D null)
+ xmlString +=3D " <name>" + Dr["folderName"] + "=
</name>";
+ if (Dr["folderParent"] !=3D null)
{
- if (Dr[3].ToString() !=3D "" && Dr[3].ToStri=
ng() !=3D "0")
+ if (Dr["folderParent"].ToString() !=3D "" &&=
Dr["folderParent"].ToString() !=3D "0")
{
- xmlString +=3D " <parent>" + Dr[3] + "<=
/parent>";
+ xmlString +=3D " <parent>" + Dr["folder=
Parent"] + "</parent>";
}
else
{
@@ -142,7 +142,7 @@
{
xmlString +=3D " <parent></parent>";
}
- Forms =3D Convert.ToString(Dr[2]);
+ Forms =3D Convert.ToString(Dr["folderForms"]);
=20
if (Forms!=3D"")
{
Modified: humano2/trunk/web/portal/site/xsl/leftbar.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-07 22:08:51 UTC=
(rev 1258)
+++ humano2/trunk/web/portal/site/xsl/leftbar.xsl 2005-06-07 22:51:55 UTC=
(rev 1259)
@@ -1,5 +1,6 @@
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
+<!-- $Id$ -->
<xsl:output method=3D"html" />
<xsl:template match=3D"/">
<html>
|
|
From: <sv...@de...> - 2005-06-07 22:08:57
|
Author: pcamacho Date: 2005-06-07 18:08:51 -0400 (Tue, 07 Jun 2005) New Revision: 1258 Added: humano2/trunk/components/webTools/folder.cs Modified: humano2/trunk/web/builder/site/functionindex.aspx humano2/trunk/web/builder/site/functioninfo.aspx humano2/trunk/web/builder/site/functionoperationbar.aspx humano2/trunk/web/portal/site/leftbar.aspx.cs Log: CHANGE: the creation of the DataTable that has all the folders in order (= a child appears after a father) filtred by=20 the current domain has been moved to webTools, to be used also in the bui= lder. Added: humano2/trunk/components/webTools/folder.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/components/webTools/folder.cs 2005-06-07 21:24:22 UTC (= rev 1257) +++ humano2/trunk/components/webTools/folder.cs 2005-06-07 22:08:51 UTC (= rev 1258) @@ -0,0 +1,118 @@ +// +// The Humano2 Business solution. +// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com) +// +// This program 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; either version 2 of the License, or +// (at your option) any later version. +// +// $Id$ + +using System; +using System.Collections; +using System.ComponentModel; +using System.Data; +using System.Web; +using System.Web.SessionState; +using System.Web.UI; +using System.Web.UI.WebControls; +using System.Web.UI.HtmlControls; +using System.IO; +using System.Text.RegularExpressions; + +using Humano2.Core; +using Humano2.Core.Db; + +namespace Humano2.Components.WebTools +{ + public class Folder + { + ///<summary> + ///Get a datatable with all the folders in tree order. That mean= s that a child of whatever folder always=20 + ///appears after this folder. + ///</summary> + ///<param name=3D"userCred">The session object used to filter th= e folders by the current domain</param> + ///<returns> + ///A datatable with the folders in tree order: that means each l= ine corresponds to a folder + ///and if a folder is a child of another then it appears after i= ts parent in the datatable + ///</returns> + =20 + public static DataTable GetFoldersInTreeOrder(SessionCredencial = userCred) + { + DataTable resDt =3D updateLevelFolders(0, userCred); //Start= from the root + return resDt; + } + =20 + private static DataTable updateLevelFolders(int folderId, Sessio= nCredencial userCred) + { + adapter dbAdapter =3D userCred.CoreAdapter; + absCrud crud =3D Factory.Crud(); + absComplex complex =3D crud.GetCore().Complex; + int [] listOfChilds =3D complex.GetChildsOfFolder(folderId); + int listOfChildsSize =3D listOfChilds.Length; + =20 + DataTable newDt; + =20 + if(listOfChildsSize =3D=3D 0) //No childs. We're done =20 + { + newDt =3D null; + } + else + { //Follow recursivity + //Build the filter for query + string filter;=20 + string listOfChildsForFilter =3D "[("; + for(int i=3D0;i<listOfChildsSize;i++) + { + listOfChildsForFilter +=3D "'" + Convert.ToString(li= stOfChilds[i]) + "'" + ","; + } + listOfChildsForFilter =3D listOfChildsForFilter.Substrin= g(0,listOfChildsForFilter.Length-1); //Remove last "," + listOfChildsForFilter +=3D ")]"; + filter =3D String.Format("34|0|'{0}'|1|0",userCred.Domai= nIds[userCred.CurrentDomainIndex]) + ";"; //For the domain =20 + filter +=3D "0|8|" + listOfChildsForFilter + "|0|0"; //T= o reduce the query to the list of childs =20 + Logger.Log("leftbar.aspx.cs: filter =3D " + filter, Log= Level.Trace); + //The datatable with values of current level filtered wi= th childs + DataTable currentDt =3D dbAdapter.GenerateViewTools(1400= ,"0,1401,1403,1402",filter,"","","",0); + =20 + //Build the concatenation of all DataTables + DataTable auxDt =3D null; //empty table to start + for(int i=3D0;i<listOfChildsSize;i++) + { + auxDt =3D concatDataTables(updateLevelFolders(listO= fChilds[i], userCred), auxDt);=20 + } =20 + //Add the current DataTable before the childs' DataTable= s + newDt =3D concatDataTables(currentDt,auxDt); + } + return newDt; + } + =20 + ///<summary>Do the concatenation of two datatables</summary> + ///<param name=3D"dt1">the first datatable</param> + ///<param name=3D"dt2">the second datatable</param> + ///<returns>dt1 concatened to dt2: that means a datatable with a= ll lines of dt1 and then all lines of dt2</returns> + private static DataTable concatDataTables(DataTable dt1, DataTab= le dt2) + { + DataSet ds =3D new DataSet(); + =20 + if(dt1 !=3D null) + { + ds.Merge(dt1);=20 + } + =20 + if(dt2 !=3D null) + { + ds.Merge(dt2); + } + =20 + if(dt1 =3D=3D null && dt2 =3D=3D null) + { + return null; =20 + } + else + { + return ds.Tables[0]; + } + } + } +} Modified: humano2/trunk/web/builder/site/functionindex.aspx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/functionindex.aspx 2005-06-07 21:24:22= UTC (rev 1257) +++ humano2/trunk/web/builder/site/functionindex.aspx 2005-06-07 22:08:51= UTC (rev 1258) @@ -1,5 +1,6 @@ <%@ Page language=3D"c#" Codebehind=3D"datamodeling.aspx.cs" AutoEventWi= reup=3D"false" Inherits=3D"Builder.site.FunctionIndex" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > +<!-- $Id$ --> <HTML> <HEAD> <title>Function Index</title> Property changes on: humano2/trunk/web/builder/site/functionindex.aspx ___________________________________________________________________ Name: svn:keywords + Id Modified: humano2/trunk/web/builder/site/functioninfo.aspx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/functioninfo.aspx 2005-06-07 21:24:22 = UTC (rev 1257) +++ humano2/trunk/web/builder/site/functioninfo.aspx 2005-06-07 22:08:51 = UTC (rev 1258) @@ -1,5 +1,6 @@ <%@ Page language=3D"c#" Codebehind=3D"functioninfo.aspx.cs" AutoEventWi= reup=3D"false" Inherits=3D"Builder.site.FunctionInfo" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > +<!-- $Id$ --> <HTML> <HEAD> <title>User Information</title> Property changes on: humano2/trunk/web/builder/site/functioninfo.aspx ___________________________________________________________________ Name: svn:keywords + Id Modified: humano2/trunk/web/builder/site/functionoperationbar.aspx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/functionoperationbar.aspx 2005-06-07 2= 1:24:22 UTC (rev 1257) +++ humano2/trunk/web/builder/site/functionoperationbar.aspx 2005-06-07 2= 2:08:51 UTC (rev 1258) @@ -1,5 +1,6 @@ <%@ Page language=3D"c#" Codebehind=3D"functionoperationbar.aspx.cs" Aut= oEventWireup=3D"false" Inherits=3D"Builder.site.FunctionOperationBar" %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > +<!-- $Id$ --> <HTML> <HEAD> <title>dataoperationbar</title> Property changes on: humano2/trunk/web/builder/site/functionoperationbar.= aspx ___________________________________________________________________ Name: svn:keywords + Id Modified: humano2/trunk/web/portal/site/leftbar.aspx.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-07 21:24:22 UTC= (rev 1257) +++ humano2/trunk/web/portal/site/leftbar.aspx.cs 2005-06-07 22:08:51 UTC= (rev 1258) @@ -110,7 +110,7 @@ string Forms=3D""; string filtro =3D String.Format("34|0|'{0}'|0|0",userCred.DomainIds[= userCred.CurrentDomainIndex]); =09 - DataTable DTFolder =3D getFoldersInTreeOrder(); + DataTable DTFolder =3D Folder.GetFoldersInTreeOrder(userCred); =20 DataTable DTView =3D dbAdapter.GenerateViewTools(1011,"0,1017,1018",= filtro,"","","",0); =20 @@ -189,81 +189,6 @@ return xmlString; } =20 - ///<summary> - ///Get a datatable with all the folders in tree order. That mean= s that a child of whatever folder always=20 - ///appears after this folder. - ///<summary> - private DataTable getFoldersInTreeOrder() - { - DataTable resDt =3D updateLevelFolders(0); //Start from the = root - return resDt; - } - =20 - private DataTable updateLevelFolders(int folderId) - { - adapter dbAdapter =3D userCred.CoreAdapter; - absCrud crud =3D Factory.Crud(); - absComplex complex =3D crud.GetCore().Complex; - int [] listOfChilds =3D complex.GetChildsOfFolder(folderId); - int listOfChildsSize =3D listOfChilds.Length; - =20 - DataTable newDt; - =20 - if(listOfChildsSize =3D=3D 0) //No childs. We're done =20 - { - newDt =3D null; - }else{ //Follow recursivity - //Build the filter for query - string filter;=20 - string listOfChildsForFilter =3D "[("; - for(int i=3D0;i<listOfChildsSize;i++) - { - listOfChildsForFilter +=3D "'" + Convert.ToString(li= stOfChilds[i]) + "'" + ","; - } - listOfChildsForFilter =3D listOfChildsForFilter.Substrin= g(0,listOfChildsForFilter.Length-1); //Remove last "," - listOfChildsForFilter +=3D ")]"; - filter =3D String.Format("34|0|'{0}'|1|0",userCred.Domai= nIds[userCred.CurrentDomainIndex]) + ";"; //For the domain =20 - filter +=3D "0|8|" + listOfChildsForFilter + "|0|0"; //T= o reduce the query to the list of childs =20 - Logger.Log("leftbar.aspx.cs: filter =3D " + filter, Log= Level.Trace); - //The datatable with values of current level filtered wi= th childs - DataTable currentDt =3D dbAdapter.GenerateViewTools(1400= ,"0,1401,1403,1402",filter,"","","",0); - =20 - //Build the concatenation of all DataTables - DataTable auxDt =3D null; //empty table to start - for(int i=3D0;i<listOfChildsSize;i++) - { - auxDt =3D concatDataTables(updateLevelFolders(listO= fChilds[i]), auxDt);=20 - } =20 - //Add the current DataTable before the childs' DataTable= s - newDt =3D concatDataTables(currentDt,auxDt); - } - return newDt; - } - =20 - private DataTable concatDataTables(DataTable dt1, DataTable dt2) - { - DataSet ds =3D new DataSet(); - =20 - if(dt1 !=3D null) - { - ds.Merge(dt1);=20 - } - =20 - if(dt2 !=3D null) - { - ds.Merge(dt2); - } - =20 - if(dt1 =3D=3D null && dt2 =3D=3D null) - { - return null; =20 - } - else - { - return ds.Tables[0]; - } - } - =20 private string genExploreList(adapter dbAdapter) { string xmlString; |
|
From: <sv...@de...> - 2005-06-07 21:24:24
|
Author: pcamacho
Date: 2005-06-07 17:24:22 -0400 (Tue, 07 Jun 2005)
New Revision: 1257
Modified:
humano2/trunk/core/db/mssql/mssqlComplex.cs
Log:
FIX: for mssql boolean is represented with 0 or 1, not 't' or 'f'
Modified: humano2/trunk/core/db/mssql/mssqlComplex.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/core/db/mssql/mssqlComplex.cs 2005-06-07 20:49:24 UTC (=
rev 1256)
+++ humano2/trunk/core/db/mssql/mssqlComplex.cs 2005-06-07 21:24:22 UTC (=
rev 1257)
@@ -7,7 +7,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
-// $Id: pgsqlComplex.cs 681 2005-04-18 10:38:21Z marijn $
+// $Id$
//
=20
using System;
@@ -883,7 +883,7 @@
override public string GetPertinenceForAttribute(string attribut=
eId)
{
string req =3D "select \"id_entity\" from attribute where \"=
classId\" in (select \"to\" from pertinence where id_entity =3D " + Conve=
rt.ToInt32(attributeId) + ") ";
- req +=3D"and \"isPrimary\"=3D't'"; //Only takes the p=
rimary attribute of the pertinence
+ req +=3D"and \"isPrimary\"=3D1"; //Only takes the pri=
mary attribute of the pertinence
=20
DataTable dt =3D doSelect(req);
if( (dt =3D=3D null) || (dt.Rows.Count =3D=3D 0))
Property changes on: humano2/trunk/core/db/mssql/mssqlComplex.cs
___________________________________________________________________
Name: svn:keywords
+ Id
|
|
From: <sv...@de...> - 2005-06-07 20:49:22
|
Author: pcamacho
Date: 2005-06-07 16:49:24 -0400 (Tue, 07 Jun 2005)
New Revision: 1256
Modified:
humano2/trunk/web/portal/site/index.aspx
humano2/trunk/web/portal/site/js/commonfunctions.js
humano2/trunk/web/portal/site/js/iframe.js
humano2/trunk/web/portal/site/js/inputstocheck.js
humano2/trunk/web/portal/site/js/test.html
humano2/trunk/web/portal/site/readXslt.aspx
Log:
FIX: #174
Modified: humano2/trunk/web/portal/site/index.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/index.aspx 2005-06-07 20:07:17 UTC (rev=
1255)
+++ humano2/trunk/web/portal/site/index.aspx 2005-06-07 20:49:24 UTC (rev=
1256)
@@ -11,7 +11,7 @@
</body> -->
<frameset rows=3D"70,*" cols=3D"*" frameborder=3D"NO" border=3D"0" fram=
espacing=3D"0">
<frame src=3D"topbar.aspx" name=3D"topFrame" scrolling=3D"no" framebor=
der=3D"no">
- <frameset cols=3D"250,89%" frameborder=3D"no" border=3D"0" framespacin=
g=3D"0">
+ <frameset cols=3D"15%,85%" frameborder=3D"yes" border=3D"3" framespaci=
ng=3D"0">
<frame src=3D"leftbar.aspx" name=3D"leftFrame" scrolling=3D"yes">
<frame src=3D"indexPortalframe.html" name=3D"mainFrame" scrolling=3D"=
no">
</frameset>
Modified: humano2/trunk/web/portal/site/js/commonfunctions.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 20:07:=
17 UTC (rev 1255)
+++ humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 20:49:=
24 UTC (rev 1256)
@@ -7,7 +7,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-// $Id $
+// $Id$
*/
=20
function trim(str)
Modified: humano2/trunk/web/portal/site/js/iframe.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/iframe.js 2005-06-07 20:07:17 UTC (r=
ev 1255)
+++ humano2/trunk/web/portal/site/js/iframe.js 2005-06-07 20:49:24 UTC (r=
ev 1256)
@@ -78,4 +78,4 @@
function hideIFrame(nframe) {
var f =3D document.getElementById(nframe); // The iframe object
f.style.visibility =3D "hidden";=09
-}
\ No newline at end of file
+}
Modified: humano2/trunk/web/portal/site/js/inputstocheck.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/inputstocheck.js 2005-06-07 20:07:17=
UTC (rev 1255)
+++ humano2/trunk/web/portal/site/js/inputstocheck.js 2005-06-07 20:49:24=
UTC (rev 1256)
@@ -12,31 +12,43 @@
=20
=20
/// Mail functions ///
-function isValidEmail(email, required) {
- if (required=3D=3Dundefined) { // if not specified, assume it's re=
quired
+function isValidEmail(email, required)
+{
+ if (required=3D=3Dundefined)=20
+ { // if not specified, assume it's required
required=3Dtrue;
}
- if (email=3D=3Dnull) {
- if (required) {
+ if (email=3D=3Dnull)=20
+ {
+ if (required)=20
+ {
return false;
}
return true;
}
=20
- if (email.length=3D=3D0) {
- if (required) {
+ if (email.length=3D=3D0)=20
+ {
+ if (required)=20
+ {
return false;
}
return true;
}
- if (! allValidChars(email)) { // check to make sure all characters =
are valid
+ if (! allValidChars(email)) // check to make sure all characters are=
valid
+ { =20
return false;
}
- if (email.indexOf("@") < 1) { // must contain @, and it must not be=
the first character
+ if (email.indexOf("@") < 1) // must contain @, and it must not be t=
he first character
+ {=20
return false;
- } else if (email.lastIndexOf(".") <=3D email.indexOf("@")) { // las=
t dot must be after the @
+ }=20
+ else if (email.lastIndexOf(".") <=3D email.indexOf("@")) // last dot=
must be after the @
+ { =20
return false;
- } else if (email.indexOf("@") =3D=3D email.length) { // @ must not =
be the last character
+ }=20
+ else if (email.indexOf("@") =3D=3D email.length) // @ must not be th=
e last character
+ { =20
return false;
}
=09
@@ -70,7 +82,6 @@
}
=20
/// Decimals function ///
-
function checkDecimals(fieldValue,decallowed,min,max)=20
{=09
var decimalsOk =3D true;
@@ -105,13 +116,11 @@
decimalsOk =3D false;
}
}
- =20
return decimalsOk;
}
=20
=20
/// RUT Validation ///
- =20
/**
* To validate the rut given the base and the check digit (digito verifi=
cador)
* @param rut everything minus the check digit and the separator charact=
er
@@ -173,7 +182,6 @@
var i=3D0;
var rutClean =3D rutStr
=20
- =20
for(i=3D0;i<carSepArr.length;i++)
{
rutClean =3D Clean(rutClean,carSepArr[i]);
@@ -193,6 +201,8 @@
return rutOk;
}
=20
+/// END RUT Validation /// =20
+ =20
function checkIsObligatory(isObligatory,value)
{
var isObligatoryOk =3D true;
Modified: humano2/trunk/web/portal/site/js/test.html
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/test.html 2005-06-07 20:07:17 UTC (r=
ev 1255)
+++ humano2/trunk/web/portal/site/js/test.html 2005-06-07 20:49:24 UTC (r=
ev 1256)
@@ -7,7 +7,7 @@
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version. =20
//
-$Id $
+$Id$
-->
<html>
<head> =20
Modified: humano2/trunk/web/portal/site/readXslt.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/readXslt.aspx 2005-06-07 20:07:17 UTC (=
rev 1255)
+++ humano2/trunk/web/portal/site/readXslt.aspx 2005-06-07 20:49:24 UTC (=
rev 1256)
@@ -1,6 +1,6 @@
<%@ Page CodeBehind=3D"readXslt.aspx.cs" Language=3D"c#" AutoEventWireup=
=3D"false" Inherits=3D"Portal.readXslt" %>
<?xml version=3D"1.0" encoding=3D"UTF-8"?>
-<!-- $Id -->
+<!-- $Id$ -->
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
<xsl:output method=3D"html" />
<% getXmlInclude(); %>
|
|
From: <sv...@de...> - 2005-06-07 20:07:20
|
Author: pcamacho
Date: 2005-06-07 16:07:17 -0400 (Tue, 07 Jun 2005)
New Revision: 1255
Removed:
humano2/trunk/web/portal/site/js/isobligatory.js
Modified:
humano2/trunk/web/portal/site/js/commonfunctions.js
humano2/trunk/web/portal/site/js/inputstocheck.js
humano2/trunk/web/portal/site/js/test.html
humano2/trunk/web/portal/site/js/test.js
humano2/trunk/web/portal/site/js/webfxtree.js
humano2/trunk/web/portal/site/readXslt.aspx
Log:
DEL: isobligatory.js only add a function that has been moved to commonfun=
ctions.js
CHANGE: put svn keywords to a few files.
Modified: humano2/trunk/web/portal/site/js/commonfunctions.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 19:23:=
12 UTC (rev 1254)
+++ humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 20:07:=
17 UTC (rev 1255)
@@ -1,34 +1,15 @@
-//FIXME I think I'm unuseful... Could you check and delete me?
-function fn_doCheckValidString(strCheck)
-{
- var chrArray =3D " abcdefghijklmn?opqrstuvwxyzABCDEFGHIJKLMN?OPQRSTUVWX=
YZ.,;:-_{}()??!\\/=3D+*#$%&\n\r0123456789";
+/*
+// The Humano2 Business solution.
+// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
+//
+// This program 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; either version 2 of the License, or
+// (at your option) any later version. =20
+//
+// $Id $
+*/
=20
- strCheck =3D trim(strCheck);
- var strError =3D "";
- if(strCheck =3D=3D "")
- return true;
-
- for (i =3D 0;i < strCheck.length;i++)
- {
- if (chrArray.indexOf(strCheck.charAt(i)) < 0)
- {
- strError =3D "Error, the text have not a permitted format, please cha=
nge the text.\n";
- strError +=3D strCheck + "\n";
- strError +=3D "Use this character in the text:\n";
- strError +=3D chrArray;
- }
- }
-
- if (strError !=3D "")
- {
- alert(strError);
- return false;
- }else
- {
- return true;
- }
-}
-
function trim(str)
{
return str.replace(/^\s*|\s*$/g,"");
@@ -55,6 +36,27 @@
return myArr;
}
=20
+
+function alertUserWhenEmptyField(isObligatory, fieldReference, attName)
+{ =20
+ if((isObligatory=3D=3Dtrue) && (fieldReference.value=3D=3D''))
+ {
+ //alert('isObligatory in alertUWEF: ' + isObligatory);
+ alert('You must fill the attribute '+ attName);
+ return false;
+ }
+ else
+ {
+ //DEBUG INFO
+ /*alert('isObligatory: ' + isObligatory + '\n'
+ + 'fieldReference.value: ' + fieldReference.value +'\n'
+ + 'Nombre campo: ' + attName);
+ */
+ return true;
+ }
+}
+
+
/**
* Check every attributes: if one is incorrect, then raise an alert,
* put its name color to red, and do not submit
Property changes on: humano2/trunk/web/portal/site/js/commonfunctions.js
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/js/inputstocheck.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/inputstocheck.js 2005-06-07 19:23:12=
UTC (rev 1254)
+++ humano2/trunk/web/portal/site/js/inputstocheck.js 2005-06-07 20:07:17=
UTC (rev 1255)
@@ -1,3 +1,16 @@
+/*
+// The Humano2 Business solution.
+// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
+//
+// This program 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; either version 2 of the License, or
+// (at your option) any later version. =20
+//
+// $Id$
+*/
+
+
/// Mail functions ///
function isValidEmail(email, required) {
if (required=3D=3Dundefined) { // if not specified, assume it's re=
quired
@@ -192,6 +205,7 @@
return isObligatoryOk;
}
=20
+
/**
* InputToCheck class
* datas for an input
Property changes on: humano2/trunk/web/portal/site/js/inputstocheck.js
___________________________________________________________________
Name: svn:keywords
+ Id
Deleted: humano2/trunk/web/portal/site/js/isobligatory.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/isobligatory.js 2005-06-07 19:23:12 =
UTC (rev 1254)
+++ humano2/trunk/web/portal/site/js/isobligatory.js 2005-06-07 20:07:17 =
UTC (rev 1255)
@@ -1,21 +0,0 @@
-function alertUserWhenEmptyField(isObligatory, fieldReference, attName)
-{
- =20
- if((isObligatory=3D=3Dtrue) && (fieldReference.value=3D=3D''))
- {
- //alert('isObligatory in alertUWEF: ' + isObligatory);
- alert('You must fill the attribute '+ attName);
- return false;
- }
- =20
- =20
- else
- {
- //DEBUG INFO
- /*alert('isObligatory: ' + isObligatory + '\n'
- + 'fieldReference.value: ' + fieldReference.value =
+'\n'
- + 'Nombre campo: ' + attName);
- */
- return true;
- }
-}
Property changes on: humano2/trunk/web/portal/site/js/test.html
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/js/test.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/test.js 2005-06-07 19:23:12 UTC (rev=
1254)
+++ humano2/trunk/web/portal/site/js/test.js 2005-06-07 20:07:17 UTC (rev=
1255)
@@ -1,3 +1,15 @@
+/*
+// The Humano2 Business solution.
+// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
+//
+// This program 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; either version 2 of the License, or
+// (at your option) any later version. =20
+//
+// $Id$
+*/
+
function Test(group,message,condition)
{
var str =3D "["+ group + "] " + message + ": ";
Property changes on: humano2/trunk/web/portal/site/js/test.js
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/js/webfxtree.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/webfxtree.js 2005-06-07 19:23:12 UTC=
(rev 1254)
+++ humano2/trunk/web/portal/site/js/webfxtree.js 2005-06-07 20:07:17 UTC=
(rev 1255)
@@ -1,3 +1,17 @@
+/*
+// The Humano2 Business solution.
+// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
+//
+// This program 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; either version 2 of the License, or
+// (at your option) any later version. =20
+//
+// $Id$
+*/
+
+//FIXME: put the name of the real author of this great webFXTree tool
+
/**
* This is a javascript that allows to show links in a dynamic tree.
* Here is an example of use:
Property changes on: humano2/trunk/web/portal/site/js/webfxtree.js
___________________________________________________________________
Name: svn:keywords
+ Id
Modified: humano2/trunk/web/portal/site/readXslt.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/readXslt.aspx 2005-06-07 19:23:12 UTC (=
rev 1254)
+++ humano2/trunk/web/portal/site/readXslt.aspx 2005-06-07 20:07:17 UTC (=
rev 1255)
@@ -1,4 +1,6 @@
-<%@ Page CodeBehind=3D"readXslt.aspx.cs" Language=3D"c#" AutoEventWireup=
=3D"false" Inherits=3D"Portal.readXslt" %><?xml version=3D"1.0" encoding=3D=
"UTF-8"?>
+<%@ Page CodeBehind=3D"readXslt.aspx.cs" Language=3D"c#" AutoEventWireup=
=3D"false" Inherits=3D"Portal.readXslt" %>
+<?xml version=3D"1.0" encoding=3D"UTF-8"?>
+<!-- $Id -->
<xsl:stylesheet version=3D"1.0" xmlns:xsl=3D"http://www.w3.org/1999/XSL/=
Transform">
<xsl:output method=3D"html" />
<% getXmlInclude(); %>
@@ -9,7 +11,6 @@
<!-- HTML: header -->
<html>
<head>
- <script language=3D"Javascript" src=3D"js/isobligatory.j=
s"/>
<script language=3D"Javascript" src=3D"js/commonfunction=
s.js"/>
<script language=3D"Javascript" src=3D"js/inputstocheck.=
js"/>
<link href=3D"css/readxslt.css" rel=3D"stylesheet" type=3D=
"text/css" />
Property changes on: humano2/trunk/web/portal/site/readXslt.aspx
___________________________________________________________________
Name: svn:keywords
+ Id
|
|
From: <sv...@de...> - 2005-06-07 19:39:02
|
Author: pcamacho Date: 2005-06-07 15:12:51 -0400 (Tue, 07 Jun 2005) New Revision: 1253 Removed: humano2/trunk/web/builder/site/borrarclase.aspx humano2/trunk/web/builder/site/borrarclase.aspx.cs Log: DEL: dataclassdelete.aspx* are the files used to delete a class. Deleted: humano2/trunk/web/builder/site/borrarclase.aspx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/borrarclase.aspx 2005-06-07 19:07:24 U= TC (rev 1252) +++ humano2/trunk/web/builder/site/borrarclase.aspx 2005-06-07 19:12:51 U= TC (rev 1253) @@ -1,17 +0,0 @@ -<%@ Page language=3D"c#" Codebehind=3D"borrarclase.aspx.cs" AutoEventWir= eup=3D"false" Inherits=3D"Builder.site.borrarclase" %> -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > -<HTML> - <HEAD> - <title>borrarclase</title> - <meta name=3D"GENERATOR" Content=3D"Microsoft Visual Studio .NET 7.1"> - <meta name=3D"CODE_LANGUAGE" Content=3D"C#"> - <meta name=3D"vs_defaultClientScript" content=3D"JavaScript"> - <meta name=3D"vs_targetSchema" content=3D"http://schemas.microsoft.com= /intellisense/ie5"> - </HEAD> - <body> - <form id=3D"Form1" method=3D"post" runat=3D"server"> - <asp:DropDownList id=3D"ddlClases" runat=3D"server"></asp:DropDownLis= t><br> - <asp:Button id=3D"btnBorrar" runat=3D"server" Text=3D"Borrar"></asp:B= utton> - </form> - </body> -</HTML> Deleted: humano2/trunk/web/builder/site/borrarclase.aspx.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/borrarclase.aspx.cs 2005-06-07 19:07:2= 4 UTC (rev 1252) +++ humano2/trunk/web/builder/site/borrarclase.aspx.cs 2005-06-07 19:12:5= 1 UTC (rev 1253) @@ -1,87 +0,0 @@ -// -// The Humano2 Business solution. -// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com) -// -// This program 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; either version 2 of the License, or -// (at your option) any later version. =20 -// -// $Id$ -// - -using System; -using System.Collections; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Web; -using System.Web.SessionState; -using System.Web.UI; -using System.Web.UI.WebControls; -using System.Web.UI.HtmlControls; -using Humano2.Core.Db; -using Humano2.Components.WebTools; - -namespace Builder.site -{ - /// <summary> - /// Summary description for borrarclase. - /// </summary> - public class borrarclase : System.Web.UI.Page - { - protected System.Web.UI.WebControls.Button btnBorrar; - protected System.Web.UI.WebControls.DropDownList ddlClases; - private absCrud crud; -=09 - private void Page_Load(object sender, System.EventArgs e) - { - crud =3D Factory.Crud(); - crud.Domain=3D109; - absComplex complex =3D crud.GetCore().Complex; - string[] clases =3D complex.domainsClass(crud.Domain.ToString()); - =09 - ddlClases.Items.Add(new ListItem("Seleccione una Clase","0")); - =09 - for(int i=3D0;clases!=3Dnull && i<=3Dclases.Length-1;i+=3D2) - { - ddlClases.Items.Add(new ListItem(clases[i+1].ToString(),clases[i].T= oString())); - } - } - - #region Web Form Designer generated code - override protected void OnInit(EventArgs e) - { - // - // CODEGEN: This call is required by the ASP.NET Web Form Designer. - // - InitializeComponent(); - base.OnInit(e); - } - =09 - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { =20 - this.btnBorrar.Click +=3D new System.EventHandler(this.btnBorrar_Clic= k); - this.Load +=3D new System.EventHandler(this.Page_Load); - - } - #endregion - - private void btnBorrar_Click(object sender, System.EventArgs e) - { - if(ddlClases.SelectedValue !=3D "0") - { - crud.Delete(Convert.ToInt32(ddlClases.SelectedValue)); - adapter dbAdapter =3D new adapter(); - dbAdapter.DeleteView(Convert.ToInt32(ddlClases.SelectedValue)); - Response.Redirect(Html.genAbsoluteUrl("/builder/site/borrarclase.asp= x")); - } - } - - =09 - } -} |
|
From: <sv...@de...> - 2005-06-07 19:23:32
|
Author: pcamacho
Date: 2005-06-07 15:23:12 -0400 (Tue, 07 Jun 2005)
New Revision: 1254
Removed:
humano2/trunk/web/portal/site/Xml/
humano2/trunk/web/portal/site/importWz-step1.aspx
humano2/trunk/web/portal/site/importWz-step1.aspx.cs
humano2/trunk/web/portal/site/importWz-step2.aspx
humano2/trunk/web/portal/site/importWz-step2.aspx.cs
humano2/trunk/web/portal/site/importWz-step3.aspx
humano2/trunk/web/portal/site/importWz-step3.aspx.cs
humano2/trunk/web/portal/site/nothing.htm
Modified:
humano2/trunk/web/portal/site/js/commonfunctions.js
Log:
DEL:=20
* an unuseful html file called nothing.html ... :)
* deprecated files for importation. This functionality does not exist ye=
t.
Deleted: humano2/trunk/web/portal/site/importWz-step1.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step1.aspx 2005-06-07 19:12:51=
UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step1.aspx 2005-06-07 19:23:12=
UTC (rev 1254)
@@ -1,43 +0,0 @@
-<%@ Page language=3D"c#" Codebehind=3D"importWz-step1.aspx.cs" AutoEvent=
Wireup=3D"false" Inherits=3D"Portal.site.import" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-<HTML>
- <HEAD>
- <title>import</title>
- <meta content=3D"C#" name=3D"CODE_LANGUAGE">
- </HEAD>
- <body >
- <form id=3D"Form1" action=3D"importWz-step2.aspx" method=3D"post" encT=
ype=3D"multipart/form-data">
- <input type=3D"hidden" name=3D"domainID" value=3D"<%GetDomain();%>">
- <table>
- <tr>
- <td>1. Select which class you wish to populate</td>
- <td><SELECT id=3D"classId" name=3D"classId">
- <OPTION value=3D"0" selected>Select a class to import</OPTION>
- <% GetClasses(); %>
- </SELECT>
- </td>
- </tr>
- <tr>
- <td>2. Choose an ASCII file to upload:</td>
- <td><INPUT id=3D"File1" type=3D"file" name=3D"File1"></td>
- </tr>
- <tr>
- <td>3. Field delimitator:</td>
- <td><input type=3D"radio" id=3D"delimitator" name=3D"delimitator" v=
alue=3D"tab">Tab
- <input type=3D"radio" id=3D"delimitator" name=3D"delimitator" valu=
e=3D";">Semi-colon
- <input type=3D"radio" id=3D"delimitator" name=3D"delimitator" valu=
e=3D",">Coma
- </td>
- </tr>
- <tr>
- <td>4. Text qualifier:</td>
- <td><input type=3D"radio" id=3D"qualifier" name=3D"qualifier" value=
=3D"single">single quote(')
- <input type=3D"radio" id=3D"qualifier" name=3D"qualifier" value=3D=
"double">double quote (")
- </td>
- </tr>
- <tr>
- <td colspan=3D"2" align=3D"center"><INPUT id=3D"cmdUpload" type=3D"=
submit" value=3D"Upload" name=3D"cmdUpload"></td>
- </tr>
- </table>
- </form>
- </body>
-</HTML>
Deleted: humano2/trunk/web/portal/site/importWz-step1.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step1.aspx.cs 2005-06-07 19:12=
:51 UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step1.aspx.cs 2005-06-07 19:23=
:12 UTC (rev 1254)
@@ -1,92 +0,0 @@
-//
-// The Humano2 Business solution.
-// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)
-//
-// This program 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; either version 2 of the License, or
-// (at your option) any later version. =20
-//
-// $Id$
-//
-
-using System;
-using System.Collections;
-using System.ComponentModel;
-using System.Data;
-using System.Data.SqlClient;
-using System.Drawing;
-using System.Web;
-using System.Web.SessionState;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.HtmlControls;
-
-using Humano2.Components.WebTools;
-
-namespace Portal.site
-{
- /// <summary>
- /// Summary description for import.
- /// </summary>
- public class import : basePage
- {
- private int domainId;
- private void Page_Load(object sender, System.EventArgs e)
- {
-
- // FIXME : cuando este funccionando el codigo de arriba (se guarde el=
id del dominio en la sesion) eliminar esta linea
- //userId =3D userCred.Id;
- //domainId =3D userCred.Domain;
- =09
- domainId =3D 109;
- }
- ///<summary>Generates list of classes which can be imported into a spe=
cific domain.</summary>
- ///<param name=3D"domainID">Id of the domain which we are importing in=
to.</param>
- public void GetClasses()
- {
- int[] classIds;
- string[] classNames;
- adapter dbAdapter =3D userCred.CoreAdapter;
-
- dbAdapter.ClassByDomainId(domainId, out classNames,out classIds);
- =09
- Response.Write("<option value=3D\"8\" >textline</option>\r\n");
- for (int i=3D0;i<classIds.Length;i++)
- {
- Response.Write("<option value=3D\"" + classIds[i] + "\" >" + classN=
ames[i] + "</option>\r\n");
-// getViews(Convert.ToString(cd[i*2]));
-// Response.Write(@"<UL><a href=3D""createInstance.aspx?id_entity=3D"=
+cd[i*2]+@""" target=3D""mainFrame"">Crear: "+cd[i*2+1]+"</a></UL>");
-
- }
- =09
- }
-=09
- public void GetDomain()
- {
- Response.Write(domainId);
- }
-
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: This call is required by the ASP.NET Web Form Designer.
- //
- InitializeComponent();
- base.OnInit(e);
- }
- =09
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- { =20
- this.Load +=3D new System.EventHandler(this.Page_Load);
-
- }
- #endregion
-
- }
-}
Deleted: humano2/trunk/web/portal/site/importWz-step2.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step2.aspx 2005-06-07 19:12:51=
UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step2.aspx 2005-06-07 19:23:12=
UTC (rev 1254)
@@ -1,30 +0,0 @@
-<%@ Page language=3D"c#" Codebehind=3D"importWz-step2.aspx.cs" AutoEvent=
Wireup=3D"false" Inherits=3D"Portal.site.import2" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-<HTML>
- <HEAD>
- <title>import2</title>
- <meta content=3D"C#" name=3D"CODE_LANGUAGE">
- </HEAD>
- <body>
- <form id=3D"Form1" method=3D"post" action=3D"importWz-step3.aspx">
- <table>
- <tr>
- <td colspan=3D"3">The system tried to automatically match up the fi=
elds from the=20
- textfile with the fields in the database, please double check the =
match-ups and=20
- match-up any missing columns.<br>
- If you are updating the information in the database, please select=
wich column=20
- should be used as the key.</td>
- </tr>
- <tr>
- <td>Databse Column</td>
- <td>Text file Field</td>
- <td>Update field</td>
- </tr>
- <% GetAttributesList(); %>
- <tr>
- <td colspan=3D"2"><input type=3D"submit" value=3D"Continuar"></td>
- </tr>
- </table>
- </form>
- </body>
-</HTML>
Deleted: humano2/trunk/web/portal/site/importWz-step2.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step2.aspx.cs 2005-06-07 19:12=
:51 UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step2.aspx.cs 2005-06-07 19:23=
:12 UTC (rev 1254)
@@ -1,345 +0,0 @@
-//=20
-// The Humano2 Business solution.=20
-// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)=20
-//=20
-// This program is free software; you can redistribute it and/or modify=20
-// it under the terms of the GNU General Public License as published by=20
-// the Free Software Foundation; either version 2 of the License, or=20
-// (at your option) any later version. =20
-//=20
-// $Id: config.cs 295 2005-02-17$
-
-using System;
-using System.Collections;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.IO;
-using System.Text;
-using System.Web;
-using System.Web.SessionState;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-
-using Humano2.Components.WebTools;
-
-
-namespace Portal.site
-{
- /// <summary>
- /// Summary description for import2.
- /// </summary>
- public class import2 : System.Web.UI.Page
- {
- private Hashtable formObjList =3D new Hashtable();
- private int userId, domainId, maxsize;
- private string basePath, baseDir;
- private int uploaded =3D 0;
- private string pathFilename;
- private int classId;
- private double now =3D DateTime.Now.ToOADate();
- private char qualifier, delimitator ;
-
- private void Page_Load(object sender, System.EventArgs e)
- {
- =09
- baseDir =3D Server.MapPath("./");
- // FIXME : cuando este funccionando el codigo de arriba (se guarde el=
id del dominio en la sesion) eliminar esta linea
- //userId =3D userCred.Id;
- //domainId =3D userCred.Domain;
- userId =3D 110;
- domainId =3D 109;
-
- LoadXMLvals();
- ProcessRequest();
-
- if (!formObjList.Contains("classId") || !formObjList.Contains("delimi=
tator"))
- return;
-
- classId =3D Convert.ToInt32(formObjList["classId"].ToString());
- delimitator =3D Convert.ToChar(formObjList["delimitator"].ToString())=
;
- if (formObjList.Contains("qualifier"))
- qualifier =3D Convert.ToChar(formObjList["qualifier"].ToString());
-
- if (uploaded =3D=3D 0 && pathFilename !=3D "")
- {
- Response.Write("El archivo NO se subio, este no debe ser mayor a " +=
maxsize + " Bytes");
- return;
- }
- else
- {
-
- File.Move(pathFilename, pathFilename.Replace(now.ToString(),"idDomai=
n-idUser"+now));
- pathFilename =3D pathFilename.Replace(now.ToString(),"idDomain-idUse=
r"+now.ToString());
-=09
- }
-
- }
-
- ///<summary>Sets the variable values.</summary>
- ///<remarks>Eventually these values should be read from an XML config =
file</remarks>
- private void LoadXMLvals()
- {
- maxsize =3D 0;
- basePath =3D baseDir+ "import\\uploadTmp\\";
- }
-
-
- ///<summary>Fills the dictionay with the form name/value pair and trie=
s to upload the file.</summary>
- ///<remarks>Perhaps the 2 things should be seperated into seperate fun=
ctions.</remarks>
- private void ProcessRequest()
- {
- =09
- // Put user code to initialize the page here
- string sPostData =3D "";
-
- // get form-data
- byte [] biData =3D Request.BinaryRead (Request.TotalBytes);
- =20
- // convert byte-array to its string representation
- sPostData =3D System.Text.Encoding.Default.GetString (biData, 0, biDa=
ta.Length);
- =20
- // we get the content type and try to pull out the boundary informati=
on
- string sContentType =3D Request.ContentType;
- string [] arrContentType =3D sContentType.Split (new char [] {';'});
-
- if (arrContentType [0] =3D=3D "multipart/form-data")
- {
- // parse the boundary information
- string [] arrBoundary =3D arrContentType [1].Trim ().Split (new char=
[] {'=3D'});
- string sBoundary =3D "--" + arrBoundary [1].Trim ();
-
- // on a Windows98/IE5.0x machine the boundary ends with the enctype,
- // so we just cut that off
- if (sBoundary.IndexOf (",multipart/form-data") >=3D 0)
- {
- sBoundary =3D sBoundary.Replace (",multipart/form-data", "");
- }
-
- // loop for every item in the forms collection (enclosed by the boun=
dary)
- string sTemp =3D sPostData;
- int iStartBoundary =3D sTemp.IndexOf (sBoundary, 0);
- int i =3D 0;
- bool bEndForm =3D false;
- if (iStartBoundary >=3D 0)
- {
- // start: loop for form items
- do
- {
- string sFormField =3D "";
- string sFormValue =3D "";
-
- // parse the item's name and general information
- int iStartField =3D iStartBoundary + sBoundary.Length + 2;
- string sCRLF =3D sTemp.Substring (iStartBoundary + sBoundary.Lengt=
h, 2);
- int iStartCRLF =3D sTemp.IndexOf (sCRLF, iStartField);
- int iStartNextBoundary =3D sTemp.IndexOf (sBoundary, iStartField);
- sFormField =3D sTemp.Substring (iStartField, iStartCRLF - iStartFi=
eld);
-
- // is the current item the <input type=3D"file">?
- if (sFormField.IndexOf ("filename=3D") >=3D 0)
- {
- // then the next line contains the content-type of the uploaded f=
ile
- int iStartFieldContentType =3D iStartCRLF + 2;
- iStartCRLF =3D sTemp.IndexOf (sCRLF, iStartFieldContentType);
- string sFieldContentType =3D sTemp.Substring (iStartFieldContentT=
ype, iStartCRLF - iStartFieldContentType);
-
- sFormField +=3D "; " + sFieldContentType;
- }
-
- // parse the item's name
- int iStartFieldName =3D sFormField.IndexOf (" name=3D");
- string sFieldName =3D sFormField.Substring (iStartFieldName + 7, s=
FormField.Length - iStartFieldName - 7);
- int iEndFieldName =3D sFieldName.IndexOf (";");
- if (iEndFieldName =3D=3D -1) iEndFieldName =3D sFieldName.Length;
- sFieldName =3D sFieldName.Substring (0, iEndFieldName - 1);
-
- // parse the item's value
- int iStartValue =3D iStartCRLF + 4;
- iStartCRLF =3D sTemp.IndexOf (sCRLF, iStartValue);
- int iEndValue =3D iStartNextBoundary - iStartValue - 2;
- sFormValue =3D sTemp.Substring (iStartValue, iEndValue);
-
- // is the current item the <input type=3D"file">?
- if (sFormField.IndexOf ("filename=3D") >=3D 0)
- {
- // parse the name of the uploaded file (without the path)
- int iStartFileName =3D sFormField.IndexOf ("filename=3D");
- string sFileName =3D sFormField.Substring (iStartFileName + 10, s=
FormField.Length - iStartFileName - 10);
- int iEndFileName =3D sFileName.IndexOf (";");
- sFileName =3D sFileName.Substring (0, iEndFileName - 1);
- int iPos =3D sFileName.LastIndexOf ("\\");
- iPos++;
- sFileName =3D sFileName.Substring (iPos, sFileName.Length - iPos)=
;
-
- // parse the content-type of the uploaded file
-
- // get the binary data of the uploaded file
- byte [] bFileContent =3D Encoding.Default.GetBytes (sFormValue);
- =09
- if (maxsize =3D=3D 0 || (maxsize > 0 && bFileContent.Length <=3D=
maxsize ))
- {
- // we could save the uploaded file here
- pathFilename =3D basePath + now + sFileName ;
- FileStream fs =3D new FileStream (pathFilename, FileMode.Create,=
FileAccess.Write);
- //fs.Write (bAux, 0, bFileContent.Length);
- fs.Write (bFileContent, 0, bFileContent.Length);
- fs.Close ();
- uploaded =3D 1;
- }
-
- // write file to db here
- =20
- ViewState ["UrlReferrer4ChapterImage"] +=3D "true";
-
- formObjList.Add(sFieldName,baseDir + sFileName);
-
- }else
- formObjList.Add(sFieldName,sFormValue);
-
- // cut off the current item from the rest of the post data
- sTemp =3D sTemp.Substring (iStartValue + iEndValue + 2, sTemp.Leng=
th - iStartValue - iEndValue - 2);
- =20
- // look for the next item
- iStartBoundary =3D sTemp.IndexOf (sBoundary, 0);
-
- // the last item ends with two additional hyphens
- if (sTemp.Substring (0, sBoundary.Length + 2) =3D=3D sBoundary + "=
--")
- {
- bEndForm =3D true;
- }
-
- // increment the counter
- i++;
- } while (iStartBoundary >=3D 0 && !bEndForm);
- // end of: loop for form items
- }
- }
- }
-
-
- ///<summary>Builds the interface to match-up the columns to be importe=
d.</summary>
- ///<param name=3D"classId">Id of the class which we are importing into=
.</param>
- ///<remarks>Currently generates HTML, should change to XML.</remarks>
- public void GetAttributesList()
- {
- =09
- DataSet dsAtts =3D new DataSet();
- string rawFileFields;
- string allDbAtts =3D "";
- bool dateCols =3D false;
- //Read the first line of the file uploaded
- using (StreamReader sr =3D new StreamReader(pathFilename))=20
- {
- if ((rawFileFields =3D sr.ReadLine()) =3D=3D null)=20
- {
- Response.Write ("File is Empty");
- }
- }
- =09
- string[] colsArr =3D rawFileFields.Split(delimitator);
- =09
- //absCrud crud =3D Factory.Crud();
- //This section will need to be modified in the future to restrict=20
- // the attributes which the user can manipulate
- //DataSet dsAtts=3D crud.ReadStructure(classId);
-
- //For debuging reasons I use these 2 calls to get the XML version of =
the dataset.
- adapter dbAdapter =3D new adapter();
- string xmlStr =3D dbAdapter.ReadStructureAsXml(classId);
-
- StringReader strReader =3D new StringReader(xmlStr);=20
- dsAtts.ReadXml(strReader);
-
- //load allowed or forbiden attributes (to be definded)
- // attribs =3D somefunc(classId);
-
- StringBuilder HtmlData =3D new StringBuilder();
- StringWriter swHtml =3D new StringWriter(HtmlData);
-
-
- if(dsAtts.Tables.Contains("attribute"))
- {
- if(dsAtts.Tables["attribute"].Rows.Count>0)
- {
- foreach(DataRow attRow in dsAtts.Tables["attribute"].Rows)
- {
- if (attRow["classId"].ToString() !=3D "3")
- {
- if (attRow["refClassSysName"].ToString() =3D=3D "dateTime")
- dateCols =3D true;
-
- allDbAtts =3D allDbAtts + attRow["id_entity"].ToString() +",";
- // if attribute is allowed to be manipulated...
- swHtml.WriteLine("<tr><td>" + attRow["attName"].ToString() + "</t=
d>" );
- swHtml.WriteLine("<td><select name=3D\"strFieldPosName\">");
- swHtml.WriteLine("<option value=3D\"0\">Select an Attribute</opti=
on>");
- int i;
- for (i=3D0;i<colsArr.Length;i++)
- {
- if (colsArr[i].ToUpper() !=3D "ID")
- {
- swHtml.Write("<option value=3D'" + Convert.ToString(i + 1) + "|=
" + colsArr[i] + "' ");
- if (attRow["attName"].ToString().ToUpper() =3D=3D colsArr[i].Tr=
im().ToUpper()) swHtml.Write(" SELECTED ");
- swHtml.Write(">" + colsArr[i] + "</option>\r\n") ;
- }
- }
- swHtml.WriteLine("</select>");
- swHtml.WriteLine("</td><td><input type=3D\"checkbox\" name=3D\"up=
dateAtts\" value=3D\""+ attRow["id_entity"].ToString() + "\">");
- swHtml.WriteLine("</tr>");
- }
- }
- }else
- Response.Write ("This class has no attributes defined");
- }else
- Response.Write ("This class has no attributes defined");
- if (dateCols)
- {
- // text to be obtained from language file
- swHtml.WriteLine("<tr><td>Por favor indica en que formato estan las =
fechas</td>" );
- swHtml.WriteLine("<td><select name=3D\"dateFormat\">");
- swHtml.WriteLine("<option value=3D'mm/dd/yyyy'>mm/dd/yyyy</option>")=
;
- swHtml.WriteLine("<option value=3D'mm-dd-yyyy'>mm-dd-yyyy</option>")=
;
- swHtml.WriteLine("<option value=3D'dd/mm/yyyy'>dd/mm/yyyy</option>")=
;
- swHtml.WriteLine("<option value=3D'dd-mm-yyyy'>dd-mm-yyyy</option>")=
;
- swHtml.WriteLine("<option value=3D'yyyy-mm-dd'>yyyy-mm-dd</option>")=
;
- swHtml.WriteLine("<option value=3D'yyyy/mm/dd'>yyyy/mm/dd</option>")=
;
- swHtml.WriteLine("</select>");
- }else
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"dateFormat\" val=
ue=3D\"\">");
-
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"classId\" value=3D=
\"" + classId + "\">");
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"delimitator\" val=
ue=3D\"" + delimitator + "\">");
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"qualifier\" value=
=3D\"" + qualifier + "\">");
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"srcFile\" value=3D=
\"" + pathFilename + "\">");
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"rawFileFields\" v=
alue=3D\"" + rawFileFields + "\">");
- swHtml.WriteLine("<input type=3D\"hidden\" name=3D\"allDbAtts\" value=
=3D\"" + allDbAtts.Substring(0,allDbAtts.Length-1) + "\">");
- =09
- swHtml.Flush();
- swHtml.Close();
-
- Response.Write (swHtml.ToString());
- }
-
-
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: This call is required by the ASP.NET Web Form Designer.
- //
- InitializeComponent();
- base.OnInit(e);
- }
- =09
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- { =20
- this.Load +=3D new System.EventHandler(this.Page_Load);
- }
- #endregion
- }
-}
Deleted: humano2/trunk/web/portal/site/importWz-step3.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step3.aspx 2005-06-07 19:12:51=
UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step3.aspx 2005-06-07 19:23:12=
UTC (rev 1254)
@@ -1,13 +0,0 @@
-<%@ Page language=3D"c#" Codebehind=3D"importWz-step3.aspx.cs" AutoEvent=
Wireup=3D"false" Inherits=3D"Portal.site.import3" %>
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
-<HTML>
- <HEAD>
- <title>import3</title>
- <meta name=3D"CODE_LANGUAGE" Content=3D"C#">
- </HEAD>
- <body >
- <% createFiles(); %>
- Your file is ready to be uploaded.
-
- </body>
-</HTML>
Deleted: humano2/trunk/web/portal/site/importWz-step3.aspx.cs
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/importWz-step3.aspx.cs 2005-06-07 19:12=
:51 UTC (rev 1253)
+++ humano2/trunk/web/portal/site/importWz-step3.aspx.cs 2005-06-07 19:23=
:12 UTC (rev 1254)
@@ -1,119 +0,0 @@
-//=20
-// The Humano2 Business solution.=20
-// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com)=20
-//=20
-// This program is free software; you can redistribute it and/or modify=20
-// it under the terms of the GNU General Public License as published by=20
-// the Free Software Foundation; either version 2 of the License, or=20
-// (at your option) any later version. =20
-//=20
-// $Id: config.cs 295 2005-02-17$
-
-using System;
-using System.Collections;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Web;
-using System.Web.SessionState;
-using System.Web.UI;
-using System.Web.UI.WebControls;
-using System.Web.UI.HtmlControls;
-using System.IO;
-using Humano2.Components.WebTools;
-
-namespace Portal.site
-{
- /// <summary>
- /// Summary description for import3.
- /// </summary>
- public class import3 : System.Web.UI.Page
- {
- private int userId, domainId, classId;
- private string delimitator, qualifier, dbAtts, fileAtts, rawFileField=
s, srcFile;
- private string baseDir, updateAtts;
- private string[] arrFieldPosName, allDbAtts;
-
- private void Page_Load(object sender, System.EventArgs e)
- {
- // FIXME : cuando este funccionando el codigo de arriba (se guarde el=
id del dominio en la sesion) eliminar esta linea
- //userId =3D userCred.Id;
- //domainId =3D userCred.Domain;
- userId =3D 110;
- domainId =3D 109;
-
- baseDir =3D Server.MapPath("./");
- classId =3D Convert.ToInt32(Request.Form["classId"]);
- delimitator =3D Request.Form["delimitator"];
- qualifier =3D Request.Form["qualifier"];
- updateAtts =3D Request.Form["updateAtts"];
- allDbAtts =3D Request.Form["allDbAtts"].Split(',');
- rawFileFields =3D Request.Form["rawFileFields"];
- srcFile =3D Request.Form["srcFile"];
- arrFieldPosName =3D Request.Form["strFieldPosName"].Split(',');
- }
-
- public void createFiles()
- {
- string basename;
- int i;
- //remove the path from the file name
- int iPos =3D srcFile.LastIndexOf ("\\");
- iPos++;
- basename =3D srcFile.Substring (iPos, srcFile.Length - iPos);
- for (i=3D0;i<arrFieldPosName.Length;i++)
- {
- if (arrFieldPosName[i] !=3D "0")=20
- {
- dbAtts =3D dbAtts + allDbAtts[i] + ",";
- fileAtts =3D fileAtts + arrFieldPosName[i].Substring(0,arrFieldPosN=
ame[i].IndexOf("|")) + ",";
-
- }
- }
- dbAtts =3D dbAtts.Substring(0,dbAtts.Length -1);
- fileAtts =3D fileAtts.Substring(0,fileAtts.Length -1);
-
- //remove the path from the file extension and add the .xml extension
- iPos =3D basename.LastIndexOf (".");
- basename =3D basename.Substring (0, iPos) + ".xml";
- =09
- using (StreamWriter sw =3D new StreamWriter(baseDir + "import\\toBePr=
ocesed\\"+basename))=20
- {
- sw.WriteLine("<?xml version=3D\"1.0\" encoding=3D\"UTF-8\"?>");
- sw.WriteLine("<config>");
- sw.WriteLine(" <userId>" + userId + "</userId>");
- sw.WriteLine(" <domainId>" + domainId + "</domainId>");
- sw.WriteLine(" <classId>" + classId + "</classId>");
- sw.WriteLine(" <delimitator>" + delimitator + "</delimitator>");
- sw.WriteLine(" <qualifier>" + qualifier + "</qualifier>");
- sw.WriteLine(" <updateAtts>" + updateAtts + "</updateAtts>");
- sw.WriteLine(" <dbAtts>" + dbAtts + "</dbAtts>");
- sw.WriteLine(" <fileAtts>" + fileAtts + "</fileAtts>");
- sw.WriteLine(" <rawFileFields>" + rawFileFields + "</rawFileFields>"=
);
- sw.WriteLine("</config>");
-
- }
- File.Move(srcFile,baseDir + "import\\toBeProcesed\\" + basename.Repla=
ce(".xml","-TMP.TXT")); =09
- }
-
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN: This call is required by the ASP.NET Web Form Designer.
- //
- InitializeComponent();
- base.OnInit(e);
- }
- =09
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- { =20
- this.Load +=3D new System.EventHandler(this.Page_Load);
- }
- #endregion
- }
-}
Modified: humano2/trunk/web/portal/site/js/commonfunctions.js
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 19:12:=
51 UTC (rev 1253)
+++ humano2/trunk/web/portal/site/js/commonfunctions.js 2005-06-07 19:23:=
12 UTC (rev 1254)
@@ -148,7 +148,6 @@
}=09
}
objTab.className =3D "A-page4"
- //document.frames['IframeObjRel'].location.href=3D"nothing.htm?class=
Id=3D"+classId+"&IdEntity=3D"+IdEntity
document.all.IframeObjRel.src=3D"viewrelations.aspx?ClassFrom=3D"+Cl=
assFrom+"&Classto=3D"+ClassTo+"&IdEntityFrom=3D"+IdEntityFrom
}
=20
Deleted: humano2/trunk/web/portal/site/nothing.htm
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/portal/site/nothing.htm 2005-06-07 19:12:51 UTC (re=
v 1253)
+++ humano2/trunk/web/portal/site/nothing.htm 2005-06-07 19:23:12 UTC (re=
v 1254)
@@ -1 +0,0 @@
-okkkkkkkkkkkkks
\ No newline at end of file
|
|
From: <sv...@de...> - 2005-06-07 19:07:25
|
Author: pcamacho Date: 2005-06-07 15:07:24 -0400 (Tue, 07 Jun 2005) New Revision: 1252 Removed: humano2/trunk/web/builder/site/borraratributo.aspx humano2/trunk/web/builder/site/borraratributo.aspx.cs Log: DEL: dataattributedelete.aspx* are the files effectively used to delete a= n attribute. Deleted: humano2/trunk/web/builder/site/borraratributo.aspx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/borraratributo.aspx 2005-06-07 18:58:4= 9 UTC (rev 1251) +++ humano2/trunk/web/builder/site/borraratributo.aspx 2005-06-07 19:07:2= 4 UTC (rev 1252) @@ -1,18 +0,0 @@ -<%@ Page language=3D"c#" Codebehind=3D"borraratributo.aspx.cs" AutoEvent= Wireup=3D"false" Inherits=3D"Builder.site.borraratributo" %> -<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > -<HTML> - <HEAD> - <title>borraratributo</title> - <meta name=3D"GENERATOR" Content=3D"Microsoft Visual Studio .NET 7.1"> - <meta name=3D"CODE_LANGUAGE" Content=3D"C#"> - <meta name=3D"vs_defaultClientScript" content=3D"JavaScript"> - <meta name=3D"vs_targetSchema" content=3D"http://schemas.microsoft.com= /intellisense/ie5"> - </HEAD> - <body> - <form id=3D"Form1" method=3D"post" runat=3D"server"> - <asp:DropDownList id=3D"ddlClases" runat=3D"server" AutoPostBack=3D"T= rue"></asp:DropDownList><br> - <asp:DropDownList id=3D"ddlAtributos" runat=3D"server"></asp:DropDown= List><br> - <asp:Button id=3D"btnBorrar" runat=3D"server" Text=3D"Borrar"></asp:B= utton> - </form> - </body> -</HTML> Deleted: humano2/trunk/web/builder/site/borraratributo.aspx.cs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- humano2/trunk/web/builder/site/borraratributo.aspx.cs 2005-06-07 18:5= 8:49 UTC (rev 1251) +++ humano2/trunk/web/builder/site/borraratributo.aspx.cs 2005-06-07 19:0= 7:24 UTC (rev 1252) @@ -1,117 +0,0 @@ -// -// The Humano2 Business solution. -// Copyright (C) 2004,5 Humano2 Chile S.A. (http://www.humano2.com) -// -// This program 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; either version 2 of the License, or -// (at your option) any later version. =20 -// -// $Id$ -// - -using System; -using System.Collections; -using System.ComponentModel; -using System.Data; -using System.Drawing; -using System.Web; -using System.Web.SessionState; -using System.Web.UI; -using System.Web.UI.WebControls; -using System.Web.UI.HtmlControls; -using Humano2.Core.Db; -using Humano2.Components.WebTools; - -namespace Builder.site -{ - /// <summary> - /// Summary description for borraratributo. - /// </summary> - public class borraratributo : System.Web.UI.Page - { - protected System.Web.UI.WebControls.DropDownList ddlClases; - private absCrud crud; - protected System.Web.UI.WebControls.DropDownList ddlAtributos; - protected System.Web.UI.WebControls.Button btnBorrar; - absComplex complex; - - private void Page_Load(object sender, System.EventArgs e) - { - crud =3D Factory.Crud(); - crud.Domain=3D109; - complex =3D crud.GetCore().Complex; - - if(!IsPostBack) - { - string[] clases =3D complex.domainsClass(crud.Domain.ToString()); - ddlClases.Items.Clear(); - ddlClases.Items.Add(new ListItem("Seleccione una Clase","0")); - for(int i=3D0;i<=3Dclases.Length-1;i+=3D2) - { - ddlClases.Items.Add(new ListItem(clases[i+1].ToString(),clases[i].T= oString())); - } - ddlAtributos.Items.Clear(); - ddlAtributos.Items.Add(new ListItem("Seleccione primero una clase","= 0")); - } - } - - #region Web Form Designer generated code - override protected void OnInit(EventArgs e) - { - // - // CODEGEN: This call is required by the ASP.NET Web Form Designer. - // - InitializeComponent(); - base.OnInit(e); - } - =09 - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { =20 - this.ddlClases.SelectedIndexChanged +=3D new System.EventHandler(this= .ddlClases_SelectedIndexChanged); - this.btnBorrar.Click +=3D new System.EventHandler(this.btnBorrar_Clic= k); - this.Load +=3D new System.EventHandler(this.Page_Load); - - } - #endregion - - private void ddlClases_SelectedIndexChanged(object sender, System.Even= tArgs e) - { - string[] atributos =3D complex.classAttributes(ddlClases.SelectedValu= e); - try - { - ddlAtributos.Items.Clear(); - ddlAtributos.Items.Add(new ListItem("Seleccione un Atributo","0")); - for(int i=3D0;i<=3Datributos.Length-1;i+=3D2) - { - ddlAtributos.Items.Add(new ListItem(atributos[i].ToString(),atribut= os[i+1].ToString())); - } - } - catch - { - ddlAtributos.Items.Clear(); - ddlAtributos.Items.Add(new ListItem("No Hay Atributo","0")); - } - } - - private void btnBorrar_Click(object sender, System.EventArgs e) - { - if(ddlAtributos.SelectedValue !=3D "0") - { - crud.Delete(Convert.ToInt32(ddlAtributos.SelectedValue)); - - adapter dbAdapter =3D new adapter(); - //FIXME: 109 in the code? what if it's an other domain. - dbAdapter.ChangeAttributesOfView(Convert.ToInt32(ddlAtributos.Select= edValue),=20 - complex.TableId(Convert.ToInt32(ddlAtributos.SelectedValue)= ), - 109,1); - - Response.Redirect(Html.genAbsoluteUrl("/builder/site/borraratributo.= aspx")); - } - } - } -} |
|
From: <sv...@de...> - 2005-06-07 18:58:51
|
Author: pcamacho
Date: 2005-06-07 14:58:49 -0400 (Tue, 07 Jun 2005)
New Revision: 1251
Added:
humano2/trunk/web/builder/site/css/ConveaStyle.css
humano2/trunk/web/builder/site/css/general_styles_verde.css
Log:
ADD: I forget two css files.
Added: humano2/trunk/web/builder/site/css/ConveaStyle.css
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/css/ConveaStyle.css 2005-06-07 18:57:4=
6 UTC (rev 1250)
+++ humano2/trunk/web/builder/site/css/ConveaStyle.css 2005-06-07 18:58:4=
9 UTC (rev 1251)
@@ -0,0 +1,434 @@
+<STYLE TYPE=3D"text/css">
+HTML
+{
+ font-size: 8pt;
+ font-family: Arial;
+ overflow: auto;
+}
+
+BODY
+{
+ font-size: 8pt;
+ font-family: Arial;
+ scrollbar-face-color: #D6D3CE;=20
+ scrollbar-shadow-color: #848284;=20
+ scrollbar-highlight-color: #FFFFFF;=20
+ scrollbar-3dlight-color: #red;=20
+ scrollbar-darkshadow-color: #424142;=20
+ scrollbar-track-color: #EAE9E6;=20
+ scrollbar-arrow-color: #000000;
+ background-color: #D6D3CE;
+}
+
+TD
+{
+ font-size: 8pt;
+ font-family: Arial
+}
+
+TEXTAREA
+{
+ font-size: 8pt;
+ font-family: Arial
+}
+LABEL
+{
+ position: relative;
+ top: -2;
+ left: 1;
+}
+INPUT
+{
+ font-size: 8pt;
+ font-family: Arial
+}
+
+SELECT
+{
+ font-size: 8pt;
+ font-family: Arial
+} =20
+
+A
+{ =20
+ color: black;
+ text-decoration: none;
+}
+
+A:HOVER =20
+{=20
+ color: black;
+ text-decoration: underline;
+}
+
+.linehighlight
+{
+ background-color: #B0E54E;
+}
+.cursortext
+{
+ cursor: Default;
+}
+.tabrunner
+{
+ display: none;
+ visibility: hidden;
+}
+
+.emailinput
+{
+ background: #D6D3CE;
+ border-top: 8px #D6D3CE solid;
+ border-bottom: 8px #D6D3CE solid;
+ border-left: 8px #D6D3CE solid;
+ border-right: 8px #D6D3CE solid;
+}
+
+
+.tabbox
+ {
+ background: #D6D3CE;
+ border-left: 2px #EEEEEE solid;
+ border-right: 2px gray solid;
+ border-bottom: 2px gray solid;
+ }
+FIELDSET
+{
+ margin-bottom: 6px;=09
+}
+.plainbox
+ {
+ background: #D6D3CE;
+ }
+.controlbox
+ {
+ border-left: 9px #D6D3CE solid;
+ border-right: 9px #D6D3CE solid;
+ border-top: 6px #D6D3CE solid;
+ border-bottom: 10px #D6D3CE solid;
+ }
+
+.fieldbox
+ {
+ border-left: 10px #D6D3CE solid;
+ border-right: 10px #D6D3CE solid;
+ border-top: 6px #D6D3CE solid;
+ border-bottom: 10px #D6D3CE solid; =09
+
+ }
+.navtabbox
+ {
+ background: white;
+ border-left: 0pt gray solid;
+ border-right: 0pt gray solid;
+ border-bottom: 1pt gray solid;
+ }
+.columnbar
+ {
+ background: #D6D3CE;
+ border-top: 1px #EEEEEE solid;
+ border-bottom: 1px #848284 solid;
+ }
+
+ .tblHeader
+ {
+ TABLE-LAYOUT: fixed;
+ WIDTH: 100%;
+ HEIGHT: 20px;
+ Margin: 0px;
+ }
+
+ .tblHeader TD
+ {
+ background:#D6D3CE;
+ border-top: 1px #EEEEEE solid;
+ border-left: 1px #EEEEEE solid;
+ border-bottom: 1px #848284 solid;
+ border-right: 1px #848284 solid;
+ padding-left: 4px;
+ padding-right: 4px;
+ table-layout:fixed;
+ }
+ #divList
+ {
+ OVERFLOW-x: auto;
+ OVERFLOW-y: scroll;
+ }
+ .List
+ {
+ table-layout=3Dfixed;
+ }
+ .List TD
+ {
+ padding-left: 5px;
+ padding-right: 4px;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ valign: middle;
+ }
+ #tdSpc
+ {
+ width:0px;
+ }
+ .GroupByBar
+ {
+ border-left:1px solid white;
+ border-top:1px solid white;
+ border-bottom:1px solid #aaaaaa;
+ border-right:1px solid #aaaaaa;
+ background: #e1e1e1;=20
+ cursor: hand;
+ Height: 22px;
+ }
+
+ .infotab
+ {
+ background: #349C64;
+ }
+
+ .infobox
+ {
+ border-left: 1px #349C64 solid;=20
+ border-right: 1px #349C64 solid;=20
+ border-top: 1px #349C64 solid;=20
+ border-bottom: 1px #349C64 solid;
+ }
+
+ #menuback
+ {
+ background: #D6D3CE;=20
+ border-bottom: 1px #848284 solid;=20
+ border-top: 1px gray solid;=20
+ }
+
+ #menubar=20
+ {
+ position: relative;=20
+ font: menu;=20
+ cursor: default;=20
+ background: #D6D3CE;=20
+ z-index:1 =09
+ }
+ =20
+ #menubar .root=20
+ {
+ border-left: 1px #D6D3CE solid;=20
+ border-right: 1px #D6D3CE solid;=20
+ border-bottom: 1px #D6D3CE solid;=20
+ border-top: 1px #D6D3CE solid; =09
+ padding-left: 4pt;=20
+ padding-right: 4pt;
+ padding-bottom: 2pt;
+ padding-top: 2pt;
+ }
+ #menubar .rootraised=20
+ {=09
+ border-left: 1px white solid;=20
+ border-right: 1px gray solid;=20
+ border-bottom: 1px gray solid;
+ border-top: 1px white solid; =09
+ padding-left: 4pt;=20
+ padding-right: 4pt;
+ padding-bottom: 2pt;
+ padding-top: 2pt;
+ background: #D6D3CE
+ }
+ #menubar .rootsunk
+ {
+ border-left: 1px gray solid;=20
+ border-right: 1px white solid;=20
+ border-bottom: 1px white solid;
+ border-top: 1px gray solid; =09
+ padding-left: 4pt;=20
+ padding-right: 4pt;
+ padding-bottom: 2pt;
+ padding-top: 2pt;
+ background: #FFFBF7;
+ }
+
+ #menubar TABLE=20
+ {
+ margin: 0pt;=20
+ padding: 0pt;=20
+ background: #FFFBF7;=20
+ border-left: 1px gray solid;=20
+ border-right: 1px gray solid;=20
+ border-bottom: 1px gray solid;=20
+ border-top: 1px gray solid;=20
+ display: none;=20
+ position: absolute;
+ font-family: menu;
+ /* filter: alpha(opacity=3D90); */
+ }
+=09
+ #menubar TABLE TD=20
+ { =09
+ margin: 0pt;=20
+ }
+ =20
+ #menubar .highlight=20
+ {
+ color: black;=20
+ background: #7491DC =09
+ } =20
+
+ #menubar #break, #menubar .disabled=20
+ {
+ color: gray
+ }
+=09
+ #menubar .more=20
+ {
+ width: 10px; =09
+ left: 0pt;=20
+ float: right;=20
+ top: -6px; =09
+ position:relative;
+ }
+
+ #menubar .sideicon
+ {
+ width: 10px; =09
+ left: 0pt;=20
+ float: left;=20
+ top: 0pt; =09
+ position:relative;
+ }
+
+ #menubar .menutext
+ {
+ left: 4pt;=20
+ top: 3pt; =09
+ position:relative;
+ }
+
+ #menubar .left=20
+ {
+ margin-left: -11pt;
+ }
+ #toolbar=20
+ {
+ width: 100%;
+ background: #D6D3CE;=20
+ cellspacing: 0;
+ z-index:0;
+ =09
+ border-top: 1px #EEEEEE solid;
+ border-bottom: 1px #848284 solid;=09
+ }
+
+.toolBarButton,
+.toolBarButtonHover,
+.toolBarButtonActiveHover,
+.toolBarButtonActive,
+.toolBarButtonActiveDisabled,
+.toolBarButtonDisabled,
+.toolBarButtonUpDisabled {
+ cursor: Default;
+ font: Icon;
+ font-weight: normal;
+ padding: 2px 5px 2px 5px;
+ border: 0px solid #F7F3E7;
+ white-space: nowrap;
+ vertical-align: middle;
+ background-color: #D6D3CE;
+
+}
+
+.toolBarButton img {
+ filter: gray();
+}
+
+.toolBarButtonHover {
+ border-width: 1px;
+ border-left-color: white;
+ border-right-color: gray;
+ border-top-color: white;
+ border-bottom-color: gray;
+ padding: 1px 4px 1px 4px;
+ background-color: #D6D3CE; =09
+}
+
+.toolBarButtonActiveHover {
+ border-width: 1px;
+ border-left-color: gray;
+ border-right-color: #EEEEEE;
+ border-top-color: gray;
+ border-bottom-color: #EEEEEE;
+ padding: 2px 3px 0px 5px;
+ background-color: #eeeeee; =09
+}
+
+.toolBarButtonActive {
+ border-width: 1px;
+ border-left-color: ButtonShadow;
+ border-right-color: ButtonHighlight;
+ border-top-color: ButtonShadow;
+ border-bottom-color:ButtonHighlight;
+ padding: 2px 3px 0px 5px;
+ background-color: #eeeeee;
+}
+
+.toolBarButtonUpDisabled,
+.toolBarButtonActiveDisabled,
+.toolBarButtonDisabled {
+ padding: 2px 5px 2px 5px;
+ color: GrayText;
+ border-width: 0px;
+}
+
+.toolBarButtonActiveDisabled {
+ border-width: 1px;
+ border-left-color: ButtonShadow;
+ border-right-color: ButtonHighlight;
+ border-top-color: ButtonShadow;
+ border-bottom-color:ButtonHighlight;
+ padding: 2px 3px 0px 5px;
+}
+
+.toolBarButtonUpDisabled {
+ border-width: 1px;
+ border-left-color: ButtonHighlight;
+ border-right-color: ButtonShadow;
+ border-top-color: ButtonHighlight;
+ border-bottom-color:ButtonShadow;
+}
+.toolBarButtonUpDisabled img,
+.toolBarButtonActiveDisabled img,
+.toolBarButtonDisabled img=20
+{
+ -moz-opacity: 0.5;
+}
+
+.toolBarButtonUpDisabled .toolBarButtonDisabledContainer,
+.toolBarButtonActiveDisabled .toolBarButtonDisabledContainer,
+.toolBarButtonDisabled .toolBarButtonDisabledContainer {
+ display: block;
+ background: GrayText;
+ filter: chroma(color=3D#010101) dropshadow(color=3DButtonHighlight, =
offx=3D1, offy=3D1);
+ width: 100%;
+ height: 100%;
+=09
+ vertical-align: center;
+}
+
+.toolBarButtonUpDisabled .toolBarButtonDisabledContainer .toolBarButtonD=
isabledContainer,
+.toolBarButtonActiveDisabled .toolBarButtonDisabledContainer .toolBarBut=
tonDisabledContainer,
+.toolBarButtonDisabled .toolBarButtonDisabledContainer .toolBarButtonDis=
abledContainer {
+ background: Transparent;
+ filter: gray()
+ /* Remove all bright shades of gray */
+
+ chroma(color=3D#ffffff) chroma(color=3D#fefefe) chroma(color=3D#fd=
fdfd)
+ chroma(color=3D#fcfcfc) chroma(color=3D#fbfbfb) chroma(color=3D#fa=
fafa)
+ chroma(color=3D#f9f9f9) chroma(color=3D#f8f8f8) chroma(color=3D#EE=
EEEE)
+ chroma(color=3D#f6f6f6) chroma(color=3D#f5f5f5) chroma(color=3D#f4=
f4f4)
+ chroma(color=3D#f3f3f3)=20
+ mask(color=3D#010101);
+
+}
+.CursorLink=20
+{
+ cursor:hand ;
+}
+</STYLE>
\ No newline at end of file
Added: humano2/trunk/web/builder/site/css/general_styles_verde.css
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/css/general_styles_verde.css 2005-06-0=
7 18:57:46 UTC (rev 1250)
+++ humano2/trunk/web/builder/site/css/general_styles_verde.css 2005-06-0=
7 18:58:49 UTC (rev 1251)
@@ -0,0 +1,354 @@
+BODY {
+ COLOR: #000000; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; MARGIN=
: 10px 10px 10px 10px
+}
+INPUT {
+ FONT-FAMILY: tahoma,sans-serif;
+ FONT-SIZE: 11px;
+ /*border: 1px solid #95989E;*/
+}
+TABLE {
+ BORDER-BOTTOM: 0px; BORDER-LEFT: 20px; BORDER-RIGHT: 0px; BORDER-TOP: 2=
0px; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+A {
+ COLOR: #000099
+}
+.swnu {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.sb {
+ COLOR: #003366; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+.bnu {
+ COLOR: #000099; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 13px; TEXT-D=
ECORATION: none
+}
+.sbnu {
+ COLOR: #000099; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.snub {
+ COLOR: #000099; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.snu {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-DECORATION: none
+}
+.sw {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+.s {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+.swnub {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold; TEXT-DECORATION: none
+}
+.sbnub {
+ COLOR: #003366; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold; TEXT-DECORATION: none
+}
+.sbd {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-WEIGHT: bold
+}
+.swb {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold
+}
+.sbbd {
+ COLOR: #104a7b; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold
+}
+.fwnu {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.fnu {
+ COLOR: #000099; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.fw {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+.f {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px
+}
+.flb {
+ COLOR: #000000; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 24px; FONT-W=
EIGHT: bold
+}
+.flbs {
+ COLOR: #104a7b; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold
+}
+.Tdom {
+ COLOR: #104a7b; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold
+}
+.pbnu {
+ COLOR: #000099; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+.Wf {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 12px
+}
+.ns4Wf {
+ FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 13px
+}
+.menu {
+ COLOR: #000066; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold; TEXT-DECORATION: none
+}
+
+.drpdwn {
+ BACKGROUND-COLOR: #E4EFFA; COLOR: #2D324A; FONT-FAMILY: tahoma, san-ser=
if; FONT-SIZE: 11px
+}
+
+.drpdwn2 {
+ background-color:#f3f4f5;
+ color:#000000; ; font-family: tahoma, sans-serif; font-size: 11px;
+ border: 1px solid #f3f4f5;
+ clip: rect( ); z-index: 0
+}
+
+TR.H {
+ BACKGROUND-COLOR: #c3d6e6
+}
+.bttntext {
+ COLOR: #336699; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold; TEXT-DECORATION: none
+}
+.sbttn {
+ BACKGROUND: #d6e7ef; BORDER-BOTTOM: #104a7b 1px solid; BORDER-LEFT: #af=
c4d5 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px =
solid; COLOR: #000066; CURSOR: hand; FONT-FAMILY: tahoma,sans-serif; FONT=
-SIZE: 11px; HEIGHT: 19px; TEXT-DECORATION: none
+}
+.pbttn {
+ BACKGROUND: #EEEEEE; BORDER-BOTTOM: 1px solid #95989E; BORDER-LEFT: 1px=
solid #C9CDD4; BORDER-RIGHT: 1px solid #95989E; BORDER-TOP: 1px solid #C=
9CDD4; COLOR: #000000; CURSOR: hand; FONT-FAMILY: tahoma, sans-serif; FON=
T-SIZE: 11px; HEIGHT: 19px; PADDING-LEFT: 4px; PADDING-RIGHT: 4px; PADDIN=
G-TOP: 2px; TEXT-DECORATION: none
+}
+.pbttn2 {
+ BACKGROUND: #d6e7ef; BORDER-BOTTOM: #104a7b 1px solid; BORDER-LEFT: #af=
c4d5 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px =
solid; COLOR: #000066; CURSOR: hand; FONT-FAMILY: tahoma,sans-serif; FONT=
-SIZE: 11px; HEIGHT: 19px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING=
-TOP: 0px; TEXT-DECORATION: none
+}
+
+.pbttn3 {
+ BACKGROUND: #EEEEEE; BORDER-BOTTOM: #104a7b 0px solid; BORDER-LEFT: #af=
c4d5 0px solid; BORDER-RIGHT: #104a7b 0px solid; BORDER-TOP: #afc4d5 0px =
solid; COLOR: #000000; CURSOR: hand; FONT-FAMILY: tahoma,sans-serif; FONT=
-SIZE: 11px; HEIGHT: 19px; PADDING-LEFT: 0px; PADDING-RIGHT: 0px; PADDING=
-TOP: 0px; TEXT-DECORATION: none
+}
+
+
+.obttn {
+ BACKGROUND: #d6e7ef; COLOR: #777777; FONT-FAMILY: tahoma,sans-serif; FO=
NT-SIZE: 11px; PADDING-BOTTOM: 1px; PADDING-LEFT: 6px; PADDING-RIGHT: 6px=
; PADDING-TOP: 1px; TEXT-DECORATION: none; VERTICAL-ALIGN: middle
+}
+.ns4obttn {
+ BACKGROUND: #d6e7ef; COLOR: #8ca5b5; FONT-FAMILY: tahoma,sans-serif; FO=
NT-SIZE: 12px; TEXT-DECORATION: none
+}
+.ns4sbttn {
+ BACKGROUND: #d6e7ef; BORDER-BOTTOM: #104a7b 1px solid; BORDER-LEFT: #af=
c4d5 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px =
solid; COLOR: #000066; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 12px; H=
EIGHT: 19px; TEXT-DECORATION: none
+}
+.dividerstable TD {
+ BORDER-BOTTOM: #93bee2 1px solid; width: 100%
+}
+.dividerstablevert TD {
+ BORDER-RIGHT: #93bee2 1px solid; height: 100%
+}
+.dividersverthoriz TD {
+ BORDER-BOTTOM: #93bee2 1px solid; BORDER-RIGHT: #93bee2 1px solid; BORD=
ER-TOP: #93bee2 1px solid; BORDER-LEFT: #93bee2 1px solid
+}
+.tableborders TD {
+ BORDER-TOP: #93bee2 1px solid; BORDER-LEFT: #93bee2 1px solid; BACKGROU=
ND: #FFFFFF
+}
+.transactionDark {
+ BORDER-BOTTOM: #336699 1px solid; BORDER-LEFT: #336699 1px solid; BORDE=
R-RIGHT: #336699 1px solid; BORDER-TOP: #336699 1px solid
+}
+.transactionLight {
+ BORDER-BOTTOM: #336699 1px solid; BORDER-LEFT: #336699 1px solid; BORDE=
R-RIGHT: #336699 1px solid; BORDER-TOP: #336699 1px solid
+}
+.msglistcntrl TD {
+ BORDER-BOTTOM: medium none
+}
+A.tab {
+ COLOR: #ffffff; FONT-FAMILY: Tahoma, san-serif; FONT-SIZE: 11px; TEXT-D=
ECORATION: none
+}
+FONT.tab {
+ COLOR: #f4d500; FONT-FAMILY: Tahoma, san-serif; FONT-SIZE: 11px
+}
+.tagline {
+ COLOR: #ffffff; FONT-FAMILY: tahoma,sans-serif; FONT-SIZE: 11px; FONT-W=
EIGHT: bold; TEXT-DECORATION: none
+}
+.PPModuleTtlTxt {
+ COLOR: #104a7b; FONT-FAMILY: Tahoma, sans-serif
+}
+.PPDesTxt {
+ FONT-FAMILY: Tahoma, san-serif
+}
+.PPModuleBrd {
+ BACKGROUND-COLOR: #dbeaf5
+}
+.PPModuleTtlTbl {
+ BACKGROUND-COLOR: #dbeaf5
+}
+.PPDynamicTbl {
+ BACKGROUND-COLOR: #ffffff
+}
+.PPRSbmtBtn {
+ BACKGROUND: #dbeaf5; BORDER-BOTTOM: #104a7b 1px solid; BORDER-LEFT: #af=
c4d5 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TOP: #afc4d5 1px =
solid; COLOR: #000066; CURSOR: hand; FONT-FAMILY: Tahoma, san-serif; FONT=
-SIZE: 13px; FONT-WEIGHT: normal; TEXT-DECORATION: none
+}
+mytd { background-image: url(/gfx/logo_campa%96as.gif)
+}
+.celbackglogo { background-image: url(/gfx/logo_tareas.gif); background=
-repeat: no-repeat; height: 47px; width: 160px
+}
+.dropdown { BACKGROUND-COLOR: #C9CDD4; COLOR: #2D324A; FONT-FAMILY: taho=
ma, san-serif; FONT-SIZE: 11px=20
+}
+.titulo { COLOR: #104a7b; FONT-FAMILY: tahoma,san-serif; FONT-SIZE: 13px=
; FONT-WEIGHT: bold=20
+}
+.btnbordebajo { BACKGROUND: #d6e7ef; BORDER-BOTTOM: #104a7b 3px solid; B=
ORDER-LEFT: #104a7b 1px solid; BORDER-RIGHT: #104a7b 1px solid; BORDER-TO=
P: #afc4d5 1px solid; COLOR: #006699; CURSOR: hand; FONT-FAMILY: tahoma, =
sans-serif; FONT-SIZE: 10px; TEXT-DECORATION: none ; font-weight: bold
+}
+.celbackgrtoptable { background-image: url(/gfx/backgrd_line.gif); back=
ground-repeat: repeat-x; height: 46px; width: 100%
+}
+.celbgrdrighttop { background-image: url(/gfx/end_table.gif); height: 4=
7px; width: 10px; margin-right: 10px; background-repeat: no-repeat; backg=
round-position: right top
+}
+.celbgrdundertabs { background-image: url(/gfx/backgrd_under_tabs.gif);=
background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RIGHT: #0=
00000 1px solid
+}
+.celbgrdlefttop { background-image: url(/gfx/end_left2.gif); background=
-repeat: no-repeat; width: 20px; height: 22px; background-position: left =
top
+}
+.tabletopbar { width: 98%
+}
+.conttabletopleft { background-image: url(/gfx/backgrd_left2.gif); back=
ground-repeat: no-repeat; height: 10px; width: 10px
+}
+.conttabletopcenter { background-image: url(/gfx/backgrd_top2.gif); bac=
kground-repeat: repeat-x; height: 10px
+}
+.conttabletopright { background-image: url(/gfx/backgrd_right2.gif); wi=
dth: 16px
+}
+.conttablecenter {
+ background-color: #EEEEEE;
+ border-top-width: 1px;
+ border-right-width: 1px;
+ border-bottom-width: 1px;
+ border-left-width: 1px;
+ margin-top: 0px;
+ margin-right: 0px;
+ margin-bottom: 0px;
+ margin-left: 0px;
+ padding-top: 1px;
+ padding-right: 1px;
+ padding-bottom: 0px;
+ padding-left: 1px;
+ text-align: center;
+ border-top-style: solid;
+ border-right-style: solid;
+ border-bottom-style: solid;
+ border-left-style: solid;
+ border-top-color: #333333;
+ border-right-color: #333333;
+ border-bottom-color: #333333;
+ border-left-color: #333333;
+}
+
+
+.conttablecenter2 {
+ background-color: #EEEEEE;
+ border-top-width: 1px;
+ border-right-width: 1px;
+ border-bottom-width: 1px;
+ border-left-width: 1px;
+ margin-top: 0px;
+ margin-right: 0px;
+ margin-bottom: 0px;
+ margin-left: 0px;
+ padding-top: 1px;
+ padding-right: 1px;
+ padding-bottom: 0px;
+ padding-left: 1px;
+ text-align: center;
+ border-top-style: solid;
+ border-right-style: solid;
+ border-bottom-style: solid;
+ border-left-style: solid;
+ border-top-color: #CCCCCC;
+ border-right-color: #CCCCCC;
+ border-bottom-color: #CCCCCC;
+ border-left-color: #CCCCCC;
+}
+.tablesborder { background-color: ffffff; BORDER-RIGHT: #8FBAE4 1px sol=
id; BORDER-BOTTOM: #8FBAE4 1px solid
+; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-lef=
t: 0px}
+.tablelists { background-color: ffffff; BORDER-LEFT: #8FBAE4 1px solid=
; BORDER-TOP: #8FBAE4 1px solid
+}
+.celtituloslists { background-color: #C9CDD4; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weigh=
t: bold; text-align: center}
+
+.celcontlists {
+ /*background-color: #ffffff;*/
+ padding-top: 3px;
+ padding-right: 3px;
+ padding-bottom: 3px;
+ padding-left: 3px;
+ text-indent: 3px;
+ border-top-width: 0px;
+ border-right-width: 0px;
+ border-bottom-width: 1px;
+ border-left-width: 0px;
+ border-top-style: solid;
+ border-right-style: solid;
+ border-bottom-style: solid;
+ border-left-style: solid;
+ border-top-color: #FFFFFF;
+ border-right-color: black;
+ border-bottom-color: #C9CDD4;
+ border-left-color: black;
+}
+
+.divideroscuro { background-color: #3399CC; border-style: solid; border-=
top-width: 0px; border-right-width: 0px; border-bottom-width: 1px; border=
-left-width: 0px; clip: rect( )}
+.bottableleft {=20
+ background-image: url(../gfx/backgrd_left3.gif); background-repeat: no-=
repeat; height: 10px; width: 50px; border-color: black black #000000; bor=
der-style: solid; border-top-width: 0px; border-right-width: 0px; border-=
bottom-width: 1px; border-left-width: 0px}
+.bottablecenter=20
+{=20
+ background-image: url(/gfx/backgrd_bottom.gif); background-repeat: repe=
at-x; height: 22px; border-color: black black #000000; border-style: soli=
d; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1=
px; border-left-width: 0px}
+.bottableright=20
+ { background-image: url(/gfx/backgrd_right3.gif); width: 50px; border-c=
olor: black black #000000; border-style: solid; border-top-width: 0px; bo=
rder-right-width: 0px; border-bottom-width: 1px; border-left-width: 0px}
+.celtituloslistsvert { background-color: #C9CDD4; height: 20px; padding-=
top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; fon=
t-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-we=
ight: bold; text-align: right}
+.celbackgrtoptableblue1 { background-image: url(/gfx/blue1_backgrd_line.=
gif); background-repeat: repeat-x; height: 46px; width: 100% }
+.celbgrdrighttopblue1 { background-image: url(/gfx/blue1_end_table.gif);=
height: 47px; width: 10px; margin-right: 10px; background-repeat: no-rep=
eat; background-position: right top }
+.celbgrdlefttopblue1 { background-image: url(/gfxs/blue1_end_left2.gif);=
background-repeat: no-repeat; width: 20px; height: 22px; background-posi=
tion: left top }
+.celbgrdundertabsblue1 { background-image: url(/gfx/blue1_backgrd_un_tab=
s.gif); background-repeat: repeat-x; height: 21px; width: 100%; BORDER-RI=
GHT: #000000 1px solid ; vertical-align: middle}
+.bottableleftblue1 { background-image: url(/gfx/blue1_backgrd_left3.gif)=
; background-repeat: no-repeat; height: 10px; width: 116px; border-color:=
black black #000000; border-style: solid; border-top-width: 0px; border-=
right-width: 0px; border-bottom-width: 1px; border-left-width: 0px }
+.bottablecenterblue1 { background-image: url(/gfx/blue1_backgrd_bottom.g=
if); background-repeat: repeat-x; height: 10px; border-color: black black=
#000000; border-style: solid; border-top-width: 0px; border-right-width:=
0px; border-bottom-width: 1px; border-left-width: 0px }
+.bottablerightblue1 { background-image: url(/gfx/blue1_backgrd_right3.gi=
f); width: 101px; border-color: black black #000000; border-style: solid;=
border-top-width: 0px; border-right-width: 0px; border-bottom-width: 1px=
; border-left-width: 0px }
+.contcel2columns { width: 80%}
+.blue0divider { background-image: url(/gfx/divider_blue0.gif); backgrou=
nd-repeat: no-repeat; width: 100%; clip: rect( )}
+.celtituloshome { font-family: Arial, Helvetica, sans-serif; font-size:=
15px; font-weight: bold; vertical-align: top; padding-left: 5px; text-al=
ign: left}
+.conttablecenteritems { background-color: #FFFFFF; text-align: center }
+.roundbluetable { background-color: #8fbae4}
+.celcont { background-color: #FFFFFF; padding-top: 3px; padding-right: =
3px; padding-bottom: 3px; padding-left: 3px}
+.asteriscorojo { font-family: Verdana, Arial, Helvetica, sans-serif; fo=
nt-size: 10px; font-weight: bold; color: #FF0000}
+.listas { list-style-image: url(/gfx/blue_bullet.gif); margin-right: 4p=
x; margin-left: 4px; padding-right: 4px; padding-left: 4px; clip: rect(=
); list-style-type: circle; background-position: center}
+.fecha { padding-right: 10px; font-size: 9px; font-weight: bold; color:=
#FFFFFF}
+.counters { font-weight: bold}
+.helproundbluetable { background-color: #C7DFF5}
+.conttablespaces { text-align: left; padding-top: 4px; padding-right: 4p=
x; padding-bottom: 4px; padding-left: 4px}
+.conttablespacesblue { text-align: left; padding-top: 4px; padding-right=
: 4px; padding-bottom: 4px; padding-left: 4px ; background-color: #C7DFF5=
}
+.checkbtncolor { background-color: #8FBAE4}
+.arrowpages { margin-top: 0px; margin-right: 0px; margin-bottom: 0px; m=
argin-left: 0px; clip: rect( ); background-position: center; vertical-=
align: middle}
+.linksovergreen { font-family: tahoma, sans-serif; font-size: 11px; fon=
t-weight: bold; color: #66FF00; text-decoration: none; margin-right: 10px=
; margin-left: 10px; margin-top: 10px; margin-bottom: 10px}
+.linksovergreenoff { font-family: tahoma, sans-serif; font-size: 10px; f=
ont-weight: bold; color: #66CC66; text-decoration: none; margin-right: 40=
px; margin-left: 40px ; margin-top: 10px; margin-bottom: 10px}
+.celtitulosasoccont { font-family: Arial, Helvetica, sans-serif; font-si=
ze: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ; =
background-color: #8FBAE4}
+.celtitulosasoccont { background-color: #8FBAE4; height: 20px; padding-t=
op: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font=
-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight: bold=
; text-align: left}
+.celtituloslists2 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weigh=
t: bold; text-align: left }
+.celtituloslists3 { background-color: #5A9ACF; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left }
+.celtituloslists4 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left }
+.celtituloslists5 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: bold; text-align=
: left ; border-style: none; border-top-width: 0px; border-right-width: 0=
px; border-bottom-width: 0px; border-left-width: 0px}
+.dividersmall4 { background-image: url(/gfx/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
+.linksoverblue5 { font-family: tahoma, sans-serif; font-size: 11px; font=
-weight: bold; color: #0000FF; text-decoration: underline; margin-right: =
3px; margin-left: 3px; margin-top: 0px; margin-bottom: 0px ; padding-righ=
t: 3px; padding-left: 3px}
+.linksoverblue6 { font-family: tahoma, sans-serif; font-size: 11px; font=
-weight: bold; color: #003366; text-decoration: none; margin-right: 3px; =
margin-left: 3px; margin-top: 0px; margin-bottom: 0px ; padding-right: 3p=
x; padding-left: 3px }
+.dividersmall3 { padding-top: 2px; padding-bottom: 2px; background-image=
: url(/gfx/divider_blue4.gif); background-repeat: no-repeat; background-p=
osition: center center}
+.email_logo { background-image: url(/gfx/logo_email2.gif); background-r=
epeat: no-repeat; height: 68px; width: 163px; padding-top: 50px; padding-=
left: 7px; font-family: tahoma, sans-serif; font-size: 11px; font-weight:=
bold; color: #003300}
+.email_tab_on_backgrd { background-image: url(../gfx/tab_on_backgrd_ema=
il.gif); background-repeat: repeat-x; padding-top: 20px; font-family: tah=
oma, sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padd=
ing-left: 5px}
+.email_tab_off_backgrd { background-image: url(/gfx/tab_off_backgrd_emai=
l.gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; fo=
nt-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; padd=
ing-left: 3px; white-space: nowrap; background-position: center}
+.email_endtable { background-image: url(/gfx/tabs_tableend_email.gif); =
background-repeat: no-repeat; height: 68px; width: 18px}
+.dividersmall4 { background-image: url(/gfx/backgrd_divider_email.gif); =
background-repeat: repeat-x; background-position: left center ; backgroun=
d-color: #C7DFF5; width: 100%}
+.linksovergreen1 { font-family: tahoma, sans-serif; font-size: 11px; fon=
t-weight: bold; color: #FFFFFF; text-decoration: none; margin-right: 3px;=
margin-left: 3px; margin-top: 0px; margin-bottom: 0px }
+.conttablecenter_email { background-color: #E4EFFA; border-color: black =
#000000; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-l=
eft: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 10px; pad=
ding-left: 0px; text-align: center ; border-style: solid; border-top-widt=
h: 0px; border-right-width: 1px; border-bottom-width: 0px; border-left-wi=
dth: 1px}
+.celtituloslistsalignmiddle { background-color: #8FBAE4; height: 20px; p=
adding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5=
px; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; =
font-weight: bold; text-align: center}
+.conttablecenter_attachment { border-left:1px solid #000000; border-righ=
t:1px solid #000000; border-top:0px solid black; border-bottom:0px solid =
black; margin:0px 0px; padding:20px 20px 20px 110px; background-color: #E=
4EFFA; text-align: left; background-image: url(/gfx/backgrd_attachment.gi=
f); background-repeat: no-repeat; vertical-align: top ; border-style: non=
e; border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0=
px; border-left-width: 0px}
+.celtituloslists6 { background-color: #C7DFF5; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 7px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 12px; font-weight: bold; text-align=
: left ; border-style: none; border-top-width: 0px; border-right-width: 0=
px; border-bottom-width: 0px; border-left-width: 0px ; color: #FFFFFF}
+.celcontlists2 { background-color: #ffffff; padding-top: 3px; padding-ri=
ght: 3px; padding-bottom: 3px; padding-left: 3px; border-color: #FFFFFF b=
lack #92ABC4; text-indent: 3px; border-style: none; border-top-width: 0px=
; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0=
px}
+.topleft_greenbar { background-image: url(/gfx/topleft_generico_verde.g=
if); background-repeat: no-repeat; width: 10px}
+.top_right_generico_verde { background-image: url(/gfx/topright_generico=
_verde.gif); background-repeat: no-repeat; height: 30px; width: 14px; bac=
kground-position: right top }
+.bottomleft_generico_verde { background-image: url(/gfx/bottomleft_gene=
rico_verde.gif); background-repeat: no-repeat; background-position: left =
bottom; height: 16px; width: 16px; border-color: #000000 black black; bor=
der-style: solid; border-top-width: 1px; border-right-width: 0px; border-=
bottom-width: 0px; border-left-width: 0px}
+.bottomright_generico_verdeCopy { background-image: url(/gfx/bottomright=
_generico_verde.gif); background-repeat: no-repeat; background-position: =
right bottom; height: 16px; width: 16px ; border-color: #000000 black bla=
ck; border-style: solid; border-top-width: 1px; border-right-width: 0px; =
border-bottom-width: 0px; border-left-width: 0px}
+.bottomcenter_generico_verde { background-image: url(/gfx/bottomcenter_g=
enerico_verde.gif); background-repeat: repeat-x; background-position: rig=
ht bottom; border-color: #000000 black black; border-style: solid; border=
-top-width: 1px; border-right-width: 0px; border-bottom-width: 0px; borde=
r-left-width: 0px; padding-top: 3px; padding-bottom: 3px; text-align: cen=
ter; vertical-align: middle}
+.titulos_secciones { font-family: Arial, Helvetica, sans-serif; font-si=
ze: 19px; font-weight: bold; text-align: left; vertical-align: middle}
+.celtituloslists7 { background-color: #FFFFFF; height: 20px; padding-top=
: 5px; padding-right: 5px; padding-bottom: 7px; padding-left: 5px; font-f=
amily: tahoma, sans-serif; font-size: 11px; font-weight: normal; text-ali=
gn: left ; border-style: none; border-top-width: 0px; border-right-width:=
0px; border-bottom-width: 0px; border-left-width: 0px ; color: #000000}
+.dividersmall { padding-top: 3px; padding-bottom: 3px; background-image:=
url(/gfx/divider_blue0.gif); background-repeat: no-repeat; background-po=
sition: left center }
+.tab_on_backgrd_azul { background-image: url(/gfx/tab_on_backgrd_azul.gi=
f); background-repeat: repeat-x; padding-top: 20px; font-family: tahoma, =
sans-serif; font-size: 11px; font-weight: bold; color: #FFFFFF; padding-l=
eft: 5px }
+.tab_endtable_azul { background-image: url(/gfx/tabs_tableend_azul.gif);=
background-repeat: no-repeat; height: 68px; width: 14px; background-posi=
tion: right top }
+.tab_off_backgrd_azul { background-image: url(/gfx/tab_off_backgrd_azul.=
gif); background-repeat: repeat-x ; font-family: tahoma, sans-serif; font=
-size: 11px; font-weight: bold; color: #FFFFFF; padding-top: 20px; paddin=
g-left: 3px; white-space: nowrap}
+.celtitulosasoccont2 { font-family: Arial, Helvetica, sans-serif; font-s=
ize: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ;=
background-color: #8FBAE4; background-color: #8FBAE4; height: 20px; padd=
ing-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;=
font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight:=
bold; text-align: right}
+.celtituloslistsalignright { background-color: #8FBAE4; height: 20px; pa=
dding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5p=
x; font-family: tahoma, sans-serif; font-size: 11px; font-weight: bold; t=
ext-align: right}
+.celtitulosasoccont3 { font-family: Arial, Helvetica, sans-serif; font-s=
ize: 15px; font-weight: bold; vertical-align: middle; padding-left: 5px ;=
background-color: #8FBAE4; background-color: #8FBAE4; height: 20px; padd=
ing-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 5px;=
font-family: Arial, Helvetica, sans-serif; font-size: 16px; font-weight:=
bold; text-align: left ; background-position: left top; background-image=
: url(/gfx/backgrd_titulos_secciones.jpg); background-repeat: repeat-y}
+
+.pbttn2 {
+ background-color:#FFFFFF;
+ color:#000000; ; font-family: tahoma, sans-serif; font-size: 11px;
+ border: 1px solid #FFFFFF;
+ clip: rect( ); z-index: 0
+}
|
|
From: <sv...@de...> - 2005-06-07 18:57:45
|
Author: pcamacho
Date: 2005-06-07 14:57:46 -0400 (Tue, 07 Jun 2005)
New Revision: 1250
Removed:
humano2/trunk/web/builder/site/styles/
Modified:
humano2/trunk/web/builder/site/buildattribute.aspx
humano2/trunk/web/builder/site/xsl/createview.xsl
Log:
DEL: unused files
FIX: ticket #128.
Modified: humano2/trunk/web/builder/site/buildattribute.aspx
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/buildattribute.aspx 2005-06-07 18:44:2=
3 UTC (rev 1249)
+++ humano2/trunk/web/builder/site/buildattribute.aspx 2005-06-07 18:57:4=
6 UTC (rev 1250)
@@ -3,8 +3,8 @@
<HTML>
<HEAD>
<title>buildattribute</title>
- <LINK href=3D"styles/css/ConveaStyle.css" type=3D"text/css" rel=3D"sty=
lesheet">
- <LINK href=3D"styles/css/general_styles_verde.css" type=3D"text/css" =
rel=3D"stylesheet">
+ <LINK href=3D"css/ConveaStyle.css" type=3D"text/css" rel=3D"stylesheet=
">
+ <LINK href=3D"css/general_styles_verde.css" type=3D"text/css" rel=3D"=
stylesheet">
<script src=3D"js/tabs.js" language=3D"javascript" type=3D"text/java=
script"></script>
<script src=3D"js/modelfuncs.js" language=3D"javascript" type=3D"tex=
t/javascript"></script>
<script language=3D"javascript" type=3D"text/javascript">
@@ -56,4 +56,4 @@
<INPUT id=3D"classId" type=3D"hidden" name=3D"hidClassId" runat=3D"se=
rver">
</form>
</body>
-</HTML>
\ No newline at end of file
+</HTML>
Modified: humano2/trunk/web/builder/site/xsl/createview.xsl
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- humano2/trunk/web/builder/site/xsl/createview.xsl 2005-06-07 18:44:23=
UTC (rev 1249)
+++ humano2/trunk/web/builder/site/xsl/createview.xsl 2005-06-07 18:57:46=
UTC (rev 1250)
@@ -22,7 +22,7 @@
<script language=3D"Javascript" src=3D"js/formview.js" type=3D"t=
ext/javascript"></script>=20
=20
</head>
- <link href=3D"styles/css/general_styles_verde.css" rel=3D"stylesheet"=
type=3D"text/css"/>
+ <link href=3D"css/general_styles_verde.css" rel=3D"stylesheet" type=3D=
"text/css"/>
<!-- Here we create an array and use it as parameter for For=
m class constructor -->
<script language=3D"Javascript">
=20
|