From 95003488c6fd8d32ecd4d1341eebfa3d44d6490e Mon Sep 17 00:00:00 2001 From: richard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2> Date: Mon, 23 Jul 2001 04:22:45 +0000 Subject: [PATCH] moving HTML templates to their own dir git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@38 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundup/templates/extended/html/file.index | 9 +++++ .../extended/{ => html}/issue.filter | 2 +- roundup/templates/extended/html/issue.index | 33 +++++++++++++++++++ .../templates/extended/{ => html}/issue.item | 2 +- roundup/templates/extended/html/msg.index | 12 +++++++ .../templates/extended/{ => html}/msg.item | 2 +- .../templates/extended/{ => html}/style.css | 0 roundup/templates/extended/html/user.index | 18 ++++++++++ .../templates/extended/{ => html}/user.item | 2 +- 9 files changed, 76 insertions(+), 4 deletions(-) create mode 100644 roundup/templates/extended/html/file.index rename roundup/templates/extended/{ => html}/issue.filter (95%) create mode 100644 roundup/templates/extended/html/issue.index rename roundup/templates/extended/{ => html}/issue.item (97%) create mode 100644 roundup/templates/extended/html/msg.index rename roundup/templates/extended/{ => html}/msg.item (93%) rename roundup/templates/extended/{ => html}/style.css (100%) create mode 100644 roundup/templates/extended/html/user.index rename roundup/templates/extended/{ => html}/user.item (95%) diff --git a/roundup/templates/extended/html/file.index b/roundup/templates/extended/html/file.index new file mode 100644 index 0000000..c22c80d --- /dev/null +++ b/roundup/templates/extended/html/file.index @@ -0,0 +1,9 @@ +<!-- $Id: file.index,v 1.1 2001-07-23 04:21:20 richard Exp $--> +<tr> + <property name="name"> + <td><display call="link('name')"></td> + </property> + <property name="type"> + <td><display call="plain('type')"></td> + </property> +</tr> diff --git a/roundup/templates/extended/issue.filter b/roundup/templates/extended/html/issue.filter similarity index 95% rename from roundup/templates/extended/issue.filter rename to roundup/templates/extended/html/issue.filter index 2f9cb5c..4a05d0b 100644 --- a/roundup/templates/extended/issue.filter +++ b/roundup/templates/extended/html/issue.filter @@ -1,4 +1,4 @@ -<!-- $Id: issue.filter,v 1.1 2001-07-23 03:50:46 anthonybaxter Exp $--> +<!-- $Id: issue.filter,v 1.1 2001-07-23 04:21:20 richard Exp $--> <property name="title"> <tr><th width="1%" align="right" class="location-bar">Title</th> <td><display call="field('title')"></td></tr> diff --git a/roundup/templates/extended/html/issue.index b/roundup/templates/extended/html/issue.index new file mode 100644 index 0000000..ea00a36 --- /dev/null +++ b/roundup/templates/extended/html/issue.index @@ -0,0 +1,33 @@ +<!-- $Id: issue.index,v 1.1 2001-07-23 04:21:20 richard Exp $--> +<tr> + <property name="activity"> + <td valign="top"><display call="reldate('activity', pretty=1)"></td> + </property> + <property name="priority"> + <td valign="top"><display call="plain('priority')"></td> + </property> + <property name="status"> + <td valign="top"><display call="plain('status')"></td> + </property> + <property name="title"> + <td valign="top"><display call="link('title')"></td> + </property> + <property name="platform"> + <td valign="top"><display call="plain('platform')"></td> + </property> + <property name="product"> + <td valign="top"><display call="plain('product')"></td> + </property> + <property name="version"> + <td valign="top"><display call="plain('version')"></td> + </property> + <property name="source"> + <td valign="top"><display call="plain('source')"></td> + </property> + <property name="assignedto"> + <td valign="top"><display call="plain('assignedto')"></td> + </property> + <property name="customername"> + <td valign="top"><display call="plain('customername')"></td> + </property> +</tr> diff --git a/roundup/templates/extended/issue.item b/roundup/templates/extended/html/issue.item similarity index 97% rename from roundup/templates/extended/issue.item rename to roundup/templates/extended/html/issue.item index c1312de..d971da2 100644 --- a/roundup/templates/extended/issue.item +++ b/roundup/templates/extended/html/issue.item @@ -1,4 +1,4 @@ -<!-- $Id: issue.item,v 1.1 2001-07-23 03:50:46 anthonybaxter Exp $--> +<!-- $Id: issue.item,v 1.1 2001-07-23 04:21:20 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr class="strong-header"> diff --git a/roundup/templates/extended/html/msg.index b/roundup/templates/extended/html/msg.index new file mode 100644 index 0000000..83b81f4 --- /dev/null +++ b/roundup/templates/extended/html/msg.index @@ -0,0 +1,12 @@ +<!-- $Id: msg.index,v 1.1 2001-07-23 04:21:20 richard Exp $--> +<tr> + <property name="date"> + <td><display call="link('date')"></td> + </property> + <property name="author"> + <td><display call="plain('author')"></td> + </property> + <property name="summary"> + <td><display call="plain('summary')"></td> + </property> +</tr> diff --git a/roundup/templates/extended/msg.item b/roundup/templates/extended/html/msg.item similarity index 93% rename from roundup/templates/extended/msg.item rename to roundup/templates/extended/html/msg.item index 00cd331..a5e739b 100644 --- a/roundup/templates/extended/msg.item +++ b/roundup/templates/extended/html/msg.item @@ -1,4 +1,4 @@ -<!-- $Id: msg.item,v 1.1 2001-07-23 03:50:46 anthonybaxter Exp $--> +<!-- $Id: msg.item,v 1.1 2001-07-23 04:21:20 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr class="strong-header"> diff --git a/roundup/templates/extended/style.css b/roundup/templates/extended/html/style.css similarity index 100% rename from roundup/templates/extended/style.css rename to roundup/templates/extended/html/style.css diff --git a/roundup/templates/extended/html/user.index b/roundup/templates/extended/html/user.index new file mode 100644 index 0000000..c73a318 --- /dev/null +++ b/roundup/templates/extended/html/user.index @@ -0,0 +1,18 @@ +<!-- $Id: user.index,v 1.1 2001-07-23 04:21:20 richard Exp $--> +<tr> + <property name="username"> + <td><display call="link('username')"></td> + </property> + <property name="realname"> + <td><display call="plain('realname')"></td> + </property> + <property name="organisation"> + <td><display call="plain('organisation')"></td> + </property> + <property name="address"> + <td><display call="plain('address')"></td> + </property> + <property name="phone"> + <td><display call="plain('phone')"></td> + </property> +</tr> diff --git a/roundup/templates/extended/user.item b/roundup/templates/extended/html/user.item similarity index 95% rename from roundup/templates/extended/user.item rename to roundup/templates/extended/html/user.item index c66a058..d201251 100644 --- a/roundup/templates/extended/user.item +++ b/roundup/templates/extended/html/user.item @@ -1,4 +1,4 @@ -<!-- $Id: user.item,v 1.1 2001-07-23 03:50:46 anthonybaxter Exp $--> +<!-- $Id: user.item,v 1.1 2001-07-23 04:21:20 richard Exp $--> <table border=0 cellspacing=0 cellpadding=2> <tr class="strong-header"> -- 2.30.2