First pass at adding key files
This commit is contained in:
@ -0,0 +1,6 @@
|
||||
{
|
||||
inheritance => [
|
||||
'../browser',
|
||||
'/home/slowtwitch/site/common/templates'
|
||||
]
|
||||
}
|
@ -0,0 +1,33 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.0 -> 3.0.1 "luna" template set CSS diff</title>
|
||||
<meta name="Generator" content="Vim/6.3">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna.css</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/html/static/luna/luna.css,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- luna.css 4 Apr 2005 07:21:27 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna.css 12 Apr 2005 22:39:35 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -123,3 +123,14 @@</b></font>
|
||||
background: none;
|
||||
}
|
||||
*/
|
||||
<font color="#008b8b">+</font>
|
||||
<font color="#008b8b">+/* If you change the globals category_cols or home_category_cols, then you will</font>
|
||||
<font color="#008b8b">+need to change the width of the columns themselves. Note that IE sometimes has</font>
|
||||
<font color="#008b8b">+problems if this value adds up to 100%, so keep the width a little under 100%.</font>
|
||||
<font color="#008b8b">+For example, if you changed category_cols to 3, then this example would set</font>
|
||||
<font color="#008b8b">+the width of the columns to 33% (99% total). */</font>
|
||||
<font color="#008b8b">+/*</font>
|
||||
<font color="#008b8b">+#category dl {</font>
|
||||
<font color="#008b8b">+ width: 33%;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+*/</font>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,981 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.0 -> 3.0.1 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/6.3">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna/add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/add_success.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/add_success.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/add_success.html 14 Apr 2005 03:07:05 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -56,7 +56,7 @@</b></font>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<font color="#6a5acd">-<%~if AutoValidate%></font>
|
||||
<font color="#008b8b">+<%~if config.build_auto_validate%></font>
|
||||
Your link has been added to <%if Category_loop.length > 1%>the following categories: <%loop Category_loop%><%loop_value%><%unless last%>, <%endunless%><%endloop%><%else%><%Category%><%endif%>.
|
||||
<%~else%>
|
||||
Thank you! We will send you an e-mail once your link has been validated.
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_folder_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_folder_add.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_folder_add.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_folder_add.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -26,13 +26,13 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="my_folder_name" class="name">Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%my_folder_name%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%escape_html my_folder_name%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="my_folder_description" class="name">Description:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="my_folder_description" name="my_folder_description" value="<%if my_folder_description%><%my_folder_description%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="my_folder_description" name="my_folder_description" value="<%if my_folder_description%><%escape_html my_folder_description%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_folder_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_folder_edit.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_folder_edit.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_folder_edit.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -23,17 +23,17 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="folder_edit" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="my_folder_id" value="<%my_folder_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_folder_id" value="<%escape_html my_folder_id%>" /></font>
|
||||
<div class="row required clear">
|
||||
<label for="my_folder_name" class="name">Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%my_folder_name%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%escape_html my_folder_name%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="my_folder_description" class="name">Description:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="my_folder_description" name="my_folder_description" value="<%if my_folder_description%><%my_folder_description%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="my_folder_description" name="my_folder_description" value="<%if my_folder_description%><%escape_html my_folder_description%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_link_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_link_add.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_link_add.html 24 Mar 2005 08:58:29 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_link_add.html 18 Apr 2005 21:39:36 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -31,7 +31,7 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="link_add" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="my_link_id_fk" value="<%ID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_link_id_fk" value="<%escape_html ID%>" /></font>
|
||||
<div class="row clear">
|
||||
<label for="my_comment" class="name">Comments:</label>
|
||||
<div class="value">
|
||||
<font color="#a52a2a"><b>@@ -42,10 +42,10 @@</b></font>
|
||||
<label for="my_folder_id_fk" class="name">Folder:<%if Folders.length > 1%> <span>*</span><%endif%></label>
|
||||
<div class="value<%if Folders.length == 1%> wrappedtext<%endif%>">
|
||||
<%~if Folders.length == 1%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="my_folder_id_fk" value="<%Folders.0.my_folder_id%>" /><%Folders.0.my_folder_name%></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_folder_id_fk" value="<%escape_html Folders.0.my_folder_id%>" /><%Folders.0.my_folder_name%></font>
|
||||
<%~else%>
|
||||
<select id="my_folder_id_fk" name="my_folder_id_fk">
|
||||
<font color="#6a5acd">- <%loop Folders%><option value="<%my_folder_id%>"<%if my_folder_default%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
<font color="#008b8b">+ <%loop Folders%><option value="<%escape_html my_folder_id%>"<%if my_folder_default%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
</select>
|
||||
<%~endif%>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_link_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_link_edit.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_link_edit.html 24 Mar 2005 08:58:29 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_link_edit.html 18 Apr 2005 21:39:36 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -31,7 +31,7 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="edit_bookmark" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="id" value="<%ID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="id" value="<%escape_html ID%>" /></font>
|
||||
<div class="row clear">
|
||||
<label for="my_comment" class="name">Comments:</label>
|
||||
<div class="value">
|
||||
<font color="#a52a2a"><b>@@ -42,10 +42,10 @@</b></font>
|
||||
<label for="my_folder_id_fk" class="name">Folder:<%if Folders.length > 1%> <span>*</span><%endif%></label>
|
||||
<div class="value<%if Folders.length == 1%> wrappedtext<%endif%>">
|
||||
<%~if Folders.length == 1%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="my_folder_id_fk" value="<%Folders.0.my_folder_id%>" /><%Folders.0.my_folder_name%></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_folder_id_fk" value="<%escape_html Folders.0.my_folder_id%>" /><%Folders.0.my_folder_name%></font>
|
||||
<%~else%>
|
||||
<select id="my_folder_id_fk" name="my_folder_id_fk">
|
||||
<font color="#6a5acd">- <%loop Folders%><option value="<%my_folder_id%>"<%if my_folder_default%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
<font color="#008b8b">+ <%loop Folders%><option value="<%escape_html my_folder_id%>"<%if my_folder_default%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
</select>
|
||||
<%~endif%>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_list.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_list.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_list.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -56,9 +56,9 @@</b></font>
|
||||
<%if Bookmarks.length~%>
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="links_manage" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="my_folder_id" value="<%my_folder_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_folder_id" value="<%escape_html my_folder_id%>" /></font>
|
||||
<%~loop Bookmarks%>
|
||||
<font color="#6a5acd">- <input type="checkbox" name="m-id" value="<%ID%>" class="checkbox" /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" name="m-id" value="<%escape_html ID%>" class="checkbox" /></font>
|
||||
<%~set editable = 1%>
|
||||
<%include bookmark_link.html%>
|
||||
<%~endloop%>
|
||||
<font color="#a52a2a"><b>@@ -66,7 +66,7 @@</b></font>
|
||||
<%~if folder_select.length%>
|
||||
<input type="submit" name="move" value="Move Links to" class="submit" />
|
||||
<select name="move_folderid">
|
||||
<font color="#6a5acd">- <%loop folder_select%><option value="<%my_folder_id%>"><%my_folder_name%></option><%endloop%></font>
|
||||
<font color="#008b8b">+ <%loop folder_select%><option value="<%escape_html my_folder_id%>"><%my_folder_name%></option><%endloop%></font>
|
||||
</select>
|
||||
<%~endif%>
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_preferences.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_preferences.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_preferences.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_preferences.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -53,7 +53,7 @@</b></font>
|
||||
<div class="row clear">
|
||||
<label for="PerPage" class="name">Links Per Page:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="PerPage" name="PerPage" value="<%PerPage%>" class="text shorttext" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="PerPage" name="PerPage" value="<%escape_html PerPage%>" class="text shorttext" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formsubmit">
|
||||
<font color="#2e8b57"><b>Index: luna/category.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/category.html,v
|
||||
retrieving revision 1.22
|
||||
retrieving revision 1.26
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.22 -r1.26</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/category.html 29 Mar 2005 09:51:43 -0000 1.22</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/category.html 13 Apr 2005 19:39:01 -0000 1.26</b></font>
|
||||
<font color="#a52a2a"><b>@@ -28,8 +28,8 @@</b></font>
|
||||
<div class="crumb"><%Links::Utils::format_title($title_loop, separator => $crumb_separator, no_escape_separator => $no_escape_crumb_separator, include_home => 1, link_type => 2)%></div>
|
||||
<h2>
|
||||
<%category_short%>
|
||||
<font color="#6a5acd">-<%~if config.newsletter_enabled%></font>
|
||||
<font color="#6a5acd">- <%~Links::Newsletter::subscription_info($ID)%></font>
|
||||
<font color="#008b8b">+<%~if config.newsletter_enabled and not config.newsletter_global_subscribe%></font>
|
||||
<font color="#008b8b">+ <%~Links::Newsletter::subscription_info($ID)%><%-- SubscriptionStatus: 0 = not subscribed, 1 = indirectly subscribed, 2 = directly subscribed --%></font>
|
||||
<%if SubscriptionStatus == 2%><span class="hsmall">(<a href="<%config.db_cgi_url%>/subscribe.cgi?action=unsubscribe;ID=<%ID%>" title="Unsubscribe to stop getting updates from this category">Unsubscribe</a>)</span><%elsif SubscriptionStatus == 1%><%else%><span class="hsmall">(<a href="<%config.db_cgi_url%>/subscribe.cgi?action=subscribe;ID=<%ID%>" title="Subscribe to get updates from this category">Subscribe</a>)</span><%endif%>
|
||||
<%~endif%>
|
||||
</h2>
|
||||
<font color="#2e8b57"><b>Index: luna/include_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/include_form.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/include_form.html 16 Mar 2005 08:44:37 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/include_form.html 18 Apr 2005 21:39:36 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,13 +1,13 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="Title" class="name">Title: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Title" name="Title" value="<%if Title%><%Title%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Title" name="Title" value="<%if Title%><%escape_html Title%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<label for="URL" class="name">URL: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="URL" name="URL" value="<%if URL%><%URL%><%else%>http://<%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="URL" name="URL" value="<%if URL%><%escape_html URL%><%else%>http://<%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row<%unless category_loop_selected%> required<%endunless%> clear">
|
||||
<font color="#a52a2a"><b>@@ -15,14 +15,14 @@</b></font>
|
||||
<div class="value<%if category_loop_selected%> wrappedtext<%endif%>">
|
||||
<%if category_loop_selected%>
|
||||
<%if category_loop.length > 1%>
|
||||
<font color="#6a5acd">- <ul><%loop category_loop%><li><%Full_Name%><input type="hidden" name="CatLinks.CategoryID" value="<%ID%>" /></li><%endloop%></ul></font>
|
||||
<font color="#008b8b">+ <ul><%loop category_loop%><li><%Full_Name%><input type="hidden" name="CatLinks.CategoryID" value="<%escape_html ID%>" /></li><%endloop%></ul></font>
|
||||
<%else%>
|
||||
<font color="#6a5acd">- <%loop category_loop%><%Full_Name%><input type="hidden" name="CatLinks.CategoryID" value="<%ID%>" /><%endloop%></font>
|
||||
<font color="#008b8b">+ <%loop category_loop%><%Full_Name%><input type="hidden" name="CatLinks.CategoryID" value="<%escape_html ID%>" /><%endloop%></font>
|
||||
<%endif%>
|
||||
<%else%>
|
||||
<select id="CatLinks.CategoryID" name="CatLinks.CategoryID">
|
||||
<%loop category_loop%>
|
||||
<font color="#6a5acd">- <option value="<%ID%>"<%if selected%> selected="selected"<%endif%>><%'&nbsp;&nbsp;' x $CatDepth%><%Name%></option></font>
|
||||
<font color="#008b8b">+ <option value="<%escape_html ID%>"<%if selected%> selected="selected"<%endif%>><%'&nbsp;&nbsp;' x $CatDepth%><%Name%></option></font>
|
||||
<%endloop%>
|
||||
</select>
|
||||
<%endif%>
|
||||
<font color="#a52a2a"><b>@@ -31,18 +31,18 @@</b></font>
|
||||
<div class="row clear">
|
||||
<label for="Description" class="name">Description:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <textarea id="Description" name="Description" rows="3" cols="42"><%if Description%><%Description%><%endif%></textarea></font>
|
||||
<font color="#008b8b">+ <textarea id="Description" name="Description" rows="3" cols="42"><%if Description%><%escape_html Description%><%endif%></textarea></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="Contact_Name" class="name">Contact Name:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Contact_Name" name="Contact_Name" value="<%if Contact_Name%><%Contact_Name%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Contact_Name" name="Contact_Name" value="<%if Contact_Name%><%escape_html Contact_Name%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="Contact_Email" class="name">Contact E-mail:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Contact_Email" name="Contact_Email" value="<%if Contact_Email%><%Contact_Email%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Contact_Email" name="Contact_Email" value="<%if Contact_Email%><%escape_html Contact_Email%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/include_header.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/include_header.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/include_header.html 1 Apr 2005 02:54:08 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/include_header.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -20,8 +20,8 @@</b></font>
|
||||
<div class="searchbar">
|
||||
<form action="<%config.db_cgi_url%>/search.cgi">
|
||||
<label for="searchbox">Search</label>
|
||||
<font color="#6a5acd">- <%if category_id%><input type="radio" id="searchentire" name="catid" value="" checked="checked" /><label for="searchentire">the entire directory</label> <input type="radio" id="searchcat" name="catid" value="<%category_id%>" /><label for="searchcat">only this category</label><%endif%></font>
|
||||
<font color="#6a5acd">- <input type="text" id="searchbox" name="query" value="<%if query%><%query%><%endif%>" class="text" /><input type="submit" name="Go" value="Go" class="submit" /> <a href="<%config.db_cgi_url%>/search.cgi">Advanced Search</a></font>
|
||||
<font color="#008b8b">+ <%if category_id%><input type="radio" id="searchentire" name="catid" value="" checked="checked" /><label for="searchentire">the entire directory</label> <input type="radio" id="searchcat" name="catid" value="<%escape_html category_id%>" /><label for="searchcat">only this category</label><%endif%></font>
|
||||
<font color="#008b8b">+ <input type="text" id="searchbox" name="query" value="<%if query%><%escape_html query%><%endif%>" class="text" /><input type="submit" name="Go" value="Go" class="submit" /> <a href="<%config.db_cgi_url%>/search.cgi">Advanced Search</a></font>
|
||||
</form>
|
||||
</div>
|
||||
<hr class="hide" />
|
||||
<font color="#2e8b57"><b>Index: luna/language.txt</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/language.txt,v
|
||||
retrieving revision 1.16
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.16 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/language.txt 4 Apr 2005 22:39:55 -0000 1.16</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/language.txt 15 Apr 2005 03:32:10 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -148,6 +148,7 @@</b></font>
|
||||
'REVIEW_INVALIDID' => 'Invalid Link ID : %s.',
|
||||
'REVIEW_INVALID_ACTION' => 'Invalid action!',
|
||||
'REVIEW_INVALID_UPDATE' => 'Unable to update review database. User is invalid for this review or the review is not validated.',
|
||||
<font color="#008b8b">+ 'REVIEW_MODIFY_DENIED' => 'You have already reviewed this link. Reviews cannot be modified.',</font>
|
||||
'REVIEW_NORESULTS' => 'No reviews are available.',
|
||||
'REVIEW_NOT_EXISTS' => 'Review doesn\'t exist!',
|
||||
'REVIEW_RATING' => 'Please select a rating from 1 to 5 only.',
|
||||
<font color="#2e8b57"><b>Index: luna/login.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/login.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.12 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/login.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/login.html 18 Apr 2005 21:39:36 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -25,12 +25,12 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/user.cgi" method="post">
|
||||
<input type="hidden" name="login" value="1" />
|
||||
<font color="#6a5acd">- <%if url%><input type="hidden" name="url" value="<%url%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if url%><input type="hidden" name="url" value="<%escape_html url%>" /><%endif%></font>
|
||||
|
||||
<div class="row required clear">
|
||||
<label for="Username" class="name">Username:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Username" name="Username" value="<%if Username%><%Username%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Username" name="Username" value="<%if Username%><%escape_html Username%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<font color="#2e8b57"><b>Index: luna/login_email.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/login_email.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/login_email.html 24 Mar 2005 08:58:29 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/login_email.html 18 Apr 2005 21:39:36 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -26,7 +26,7 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/user.cgi" method="post">
|
||||
<input type="hidden" name="send_pass" value="1" />
|
||||
<font color="#6a5acd">- <%if url%><input type="hidden" name="url" value="<%url%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if url%><input type="hidden" name="url" value="<%escape_html url%>" /><%endif%></font>
|
||||
|
||||
<div class="row required clear">
|
||||
<label for="Email" class="name">E-mail Address:</label>
|
||||
<font color="#2e8b57"><b>Index: luna/modify.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/modify.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify.html 18 Apr 2005 21:39:36 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -23,10 +23,10 @@</b></font>
|
||||
<form action="<%config.db_cgi_url%>/modify.cgi" enctype="multipart/form-data" method="post">
|
||||
<input type="hidden" name="modify" value="1" />
|
||||
<%~if LinkID%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="LinkID" value="<%LinkID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="LinkID" value="<%escape_html LinkID%>" /></font>
|
||||
<%~else%>
|
||||
Please enter the URL of the link you wish to modify. Make sure it is identical to the one already in the database:
|
||||
<font color="#6a5acd">- <input type="text" name="Current_URL" value="<%if Current_URL%><%Current_URL%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" name="Current_URL" value="<%if Current_URL%><%escape_html Current_URL%><%endif%>" class="text" /></font>
|
||||
Now enter the new information (all of it, not just the changes) below:
|
||||
<%~endif%>
|
||||
<%include include_form.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/modify_select.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/modify_select.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify_select.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify_select.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -34,7 +34,7 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/modify.cgi" method="post">
|
||||
<%~loop link_results_loop%>
|
||||
<font color="#6a5acd">- <input type="radio" name="LinkID" value="<%ID%>" class="radio"<%if isValidated eq 'No'%> disabled="disabled"<%endif%> /></font>
|
||||
<font color="#008b8b">+ <input type="radio" name="LinkID" value="<%escape_html ID%>" class="radio"<%if isValidated eq 'No'%> disabled="disabled"<%endif%> /></font>
|
||||
<%include link.html%>
|
||||
<%~endloop%>
|
||||
<input type="submit" value="Modify Link" class="submit" />
|
||||
<font color="#2e8b57"><b>Index: luna/newsletter_browse.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter_browse.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/newsletter_browse.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/newsletter_browse.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -87,9 +87,9 @@</b></font>
|
||||
|
||||
<form id="update" action="<%config.db_cgi_url%>/subscribe.cgi" method="post">
|
||||
<input type="hidden" name="action" value="update" />
|
||||
<font color="#6a5acd">- <%if root%><input type="hidden" name="root" value="<%root%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if root%><input type="hidden" name="root" value="<%escape_html root%>" /><%endif%></font>
|
||||
<%~loop category%>
|
||||
<font color="#6a5acd">- <input type="checkbox" name="S<%ID%>" value="<%ID%><%if Children.length%>,<%endif%><%loop Children%><%loop_value%><%unless last%>,<%endunless%><%endloop%>"<%if Subscribed%> checked="checked"<%endif%> class="indent<%CatDepth%>" /><input type="hidden" name="<%if Subscribed%>subscribed<%else%>unsubscribed<%endif%>" value="<%ID%>" /><%if HasMoreChildren%><a href="<%config.db_cgi_url%>/subscribe.cgi?action=browse;root=<%ID%>"><%endif%><%Name%><%if HasMoreChildren%></a><%endif%><br /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" name="S<%ID%>" value="<%escape_html ID%><%if Children.length%>,<%endif%><%loop Children%><%loop_value%><%unless last%>,<%endunless%><%endloop%>"<%if Subscribed%> checked="checked"<%endif%> class="indent<%CatDepth%>" /><input type="hidden" name="<%if Subscribed%>subscribed<%else%>unsubscribed<%endif%>" value="<%escape_html ID%>" /><%if HasMoreChildren%><a href="<%config.db_cgi_url%>/subscribe.cgi?action=browse;root=<%ID%>"><%endif%><%Name%><%if HasMoreChildren%></a><%endif%><br /></font>
|
||||
<%~endloop%>
|
||||
<input type="submit" value="Update Subscriptions" class="submit" />
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/newsletter_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter_list.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/newsletter_list.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/newsletter_list.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -39,7 +39,7 @@</b></font>
|
||||
<input type="hidden" name="page" value="newsletter_list" />
|
||||
<%if subscribed.length > 1%><input type="checkbox" id="checkall" class="checkbox" /> <label for="checkall"><strong>Select All</strong></label><br /><%endif%>
|
||||
<%loop subscribed~%>
|
||||
<font color="#6a5acd">- <input type="checkbox" id="ID-<%CategoryID%>" name="ID" value="<%CategoryID%>" class="checkbox" /> <label for="ID-<%CategoryID%>"><%Full_Name%></label><br /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" id="ID-<%CategoryID%>" name="ID" value="<%escape_html CategoryID%>" class="checkbox" /> <label for="ID-<%CategoryID%>"><%Full_Name%></label><br /></font>
|
||||
<%~endloop%>
|
||||
<input type="submit" value="Unsubscribe" class="submit" />
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/payment.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment.html 24 Mar 2005 08:58:29 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment.html 18 Apr 2005 21:39:36 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -49,8 +49,8 @@</b></font>
|
||||
<input type="hidden" name="do" value="payment_method" />
|
||||
<input type="hidden" name="last_step" value="term" />
|
||||
<input type="hidden" name="last_page" value="payment" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="cat_id" value="<%cat_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="link_id" value="<%link_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="cat_id" value="<%escape_html cat_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="link_id" value="<%escape_html link_id%>" /></font>
|
||||
<%if modify%><input type="hidden" name="modify" value="1" /><%endif%>
|
||||
|
||||
<%if signup and not wasPaid%>
|
||||
<font color="#a52a2a"><b>@@ -63,7 +63,7 @@</b></font>
|
||||
<%~endif%>
|
||||
</strong><br />
|
||||
<%~loop signup%>
|
||||
<font color="#6a5acd">- <input type="radio" id="payment_term-<%term%>" name="payment_term" value="<%term%>"<%if last_chosen and last_chosen eq $term and not last_recurring%> checked="checked"<%endif%> class="radio" /></font>
|
||||
<font color="#008b8b">+ <input type="radio" id="payment_term-<%term%>" name="payment_term" value="<%escape_html term%>"<%if last_chosen and last_chosen eq $term and not last_recurring%> checked="checked"<%endif%> class="radio" /></font>
|
||||
<label for="payment_term-<%term%>"><%Links::Payment::currency($cost)%>: <%if term_num and term_unit%><%term_num%> <%term_unit%><%else%>Lifetime<%endif%></label><br />
|
||||
<%~endloop%>
|
||||
</p>
|
||||
<font color="#a52a2a"><b>@@ -80,7 +80,7 @@</b></font>
|
||||
<%~endif%>
|
||||
|
||||
<%~loop renewal%>
|
||||
<font color="#6a5acd">- <%if wasPaid%><input type="radio" id="payment_term-<%term%>" name="payment_term" value="<%term%>"<%if last_chosen and last_chosen eq $term and not last_recurring%> checked="checked"<%endif%> class="radio" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if wasPaid%><input type="radio" id="payment_term-<%term%>" name="payment_term" value="<%escape_html term%>"<%if last_chosen and last_chosen eq $term and not last_recurring%> checked="checked"<%endif%> class="radio" /><%endif%></font>
|
||||
<%if wasPaid%><label for="payment_term-<%term%>"><%endif%><%Links::Payment::currency($cost)%>: <%if term_num and term_unit%><%term_num%> <%term_unit%><%else%>Lifetime<%endif%><%if wasPaid%></label><%endif%><br />
|
||||
<%~endloop%>
|
||||
</p>
|
||||
<font color="#a52a2a"><b>@@ -90,7 +90,7 @@</b></font>
|
||||
<p>
|
||||
<strong>Automatically recurring payments:</strong><br />
|
||||
<%~loop recurring%>
|
||||
<font color="#6a5acd">- <input type="radio" id="payment_term-<%term%>-rec" name="payment_term" value="<%term%>-rec"<%if last_chosen and last_chosen eq $term and last_recurring%> checked="checked"<%endif%> class="radio" /></font>
|
||||
<font color="#008b8b">+ <input type="radio" id="payment_term-<%term%>-rec" name="payment_term" value="<%escape_html term%>-rec"<%if last_chosen and last_chosen eq $term and last_recurring%> checked="checked"<%endif%> class="radio" /></font>
|
||||
<label for="payment_term-<%term%>-rec"><%Links::Payment::currency($cost)%> <%if term_num == 1%>per <%term_unit%><%else%> every <%term_num%> <%term_unit%><%endif%></label><br />
|
||||
<%~endloop%>
|
||||
</p>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_2checkout_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_2checkout_include.html,v
|
||||
retrieving revision 1.2
|
||||
retrieving revision 1.3
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.2 -r1.3</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_2checkout_include.html 1 Feb 2005 01:13:21 -0000 1.2</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_2checkout_include.html 18 Apr 2005 21:39:36 -0000 1.3</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,6 +1,6 @@</b></font>
|
||||
<form action="https://www.2checkout.com/cgi-bin/sbuyers/cartpurchase.2c" method="post">
|
||||
<font color="#6a5acd">- <input type="hidden" name="sid" value="<%seller_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="total" value="<%payment_amount%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="cart_order_id" value="<%unique_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="sid" value="<%escape_html seller_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="total" value="<%escape_html payment_amount%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="cart_order_id" value="<%escape_html unique_id%>" /></font>
|
||||
<input type="submit" value="Make Payment" class="submit" />
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_direct.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_direct.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_direct.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_direct.html 14 Apr 2005 03:16:50 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -21,9 +21,11 @@</b></font>
|
||||
<div class="crumb"><%Links::Utils::format_title($main_title_loop, separator => $crumb_separator, no_escape_separator => $no_escape_crumb_separator, include_home => 1, link_type => 2)%></div>
|
||||
<h2>Payment Confirmation</h2>
|
||||
|
||||
<font color="#6a5acd">-Your payment has been approved, and your link enabled. You will be redirected</font>
|
||||
<font color="#6a5acd">-to the main page shortly. If this does not happen, click</font>
|
||||
<font color="#6a5acd">-<a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+<p></font>
|
||||
<font color="#008b8b">+ Your payment has been approved, and your link enabled. You will be redirected</font>
|
||||
<font color="#008b8b">+ to the main page shortly. If this does not happen, click</font>
|
||||
<font color="#008b8b">+ <a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+</p></font>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_direct_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_direct_include.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_direct_include.html 16 Mar 2005 08:44:37 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_direct_include.html 18 Apr 2005 21:39:36 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -13,11 +13,11 @@</b></font>
|
||||
<input type="hidden" name="do" value="payment_direct" />
|
||||
<input type="hidden" name="last_step" value="form" />
|
||||
<input type="hidden" name="last_page" value="payment_form" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="cat_id" value="<%cat_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="link_id" value="<%link_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="payment_term" value="<%payment_term%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="payment_method" value="<%payment_method%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="payment_method_type" value="<%payment_method_type%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="cat_id" value="<%escape_html cat_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="link_id" value="<%escape_html link_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="payment_term" value="<%escape_html payment_term%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="payment_method" value="<%escape_html payment_method%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="payment_method_type" value="<%escape_html payment_method_type%>" /></font>
|
||||
<%if modify%><input type="hidden" name="modify" value="1" /><%endif%>
|
||||
|
||||
<div class="row<%unless no_cc_brand%> required<%endunless%><%if credit_card_brand_error%> invalid<%endif%> clear">
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
<%loop payment_types%><%name%><%unless last%>, <%endunless%><%endloop%>
|
||||
<%else%>
|
||||
<select id="credit_card_brand" name="credit_card_brand">
|
||||
<font color="#6a5acd">- <option value="">---</option><%loop payment_types%><option value="<%code%>"<%if credit_card_brand eq $code%> selected="selected"<%endif%>><%name%></option><%endloop%></font>
|
||||
<font color="#008b8b">+ <option value="">---</option><%loop payment_types%><option value="<%escape_html code%>"<%if credit_card_brand eq $code%> selected="selected"<%endif%>><%name%></option><%endloop%></font>
|
||||
</select>
|
||||
<%endif%>
|
||||
</div>
|
||||
<font color="#a52a2a"><b>@@ -35,7 +35,7 @@</b></font>
|
||||
<div class="row required<%if credit_card_number_error%> invalid<%endif%> clear">
|
||||
<label for="credit_card_number" class="name">Card Number: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="credit_card_number" name="credit_card_number" value="<%if credit_card_number%><%credit_card_number%><%endif%>" class="text" autocomplete="off" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="credit_card_number" name="credit_card_number" value="<%if credit_card_number%><%escape_html credit_card_number%><%endif%>" class="text" autocomplete="off" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required<%if credit_card_expiry_error%> invalid<%endif%> clear">
|
||||
<font color="#a52a2a"><b>@@ -66,25 +66,25 @@</b></font>
|
||||
<div class="row required<%if billing_fname_error%> invalid<%endif%> clear">
|
||||
<label for="billing_fname" class="name">First Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="billing_fname" name="billing_fname" value="<%if billing_fname%><%billing_fname%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="billing_fname" name="billing_fname" value="<%if billing_fname%><%escape_html billing_fname%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required<%if billing_lname_error%> invalid<%endif%> clear">
|
||||
<label for="billing_lname" class="name">Last Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="billing_lname" name="billing_lname" value="<%if billing_lname%><%billing_lname%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="billing_lname" name="billing_lname" value="<%if billing_lname%><%escape_html billing_lname%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required<%if billing_address_1_error%> invalid<%endif%> clear">
|
||||
<label for="billing_address_1" class="name">Address Line 1: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="billing_address_1" name="billing_address_1" value="<%if billing_address_1%><%billing_address_1%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="billing_address_1" name="billing_address_1" value="<%if billing_address_1%><%escape_html billing_address_1%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row<%if billing_address_2_error%> invalid<%endif%> clear">
|
||||
<label for="billing_address_2" class="name">Address Line 2:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="billing_address_2" name="billing_address_2" value="<%if billing_address_2%><%billing_address_2%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="billing_address_2" name="billing_address_2" value="<%if billing_address_2%><%escape_html billing_address_2%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required<%if billing_city_error%> invalid<%endif%> clear">
|
||||
<font color="#2e8b57"><b>Index: luna/payment_method.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_method.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_method.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_method.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -48,14 +48,14 @@</b></font>
|
||||
<input type="hidden" name="do" value="payment_form" />
|
||||
<input type="hidden" name="last_step" value="method" />
|
||||
<input type="hidden" name="last_page" value="payment_method" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="cat_id" value="<%cat_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="link_id" value="<%link_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="payment_term" value="<%payment_term%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="cat_id" value="<%escape_html cat_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="link_id" value="<%escape_html link_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="payment_term" value="<%escape_html payment_term%>" /></font>
|
||||
<%if modify%><input type="hidden" name="modify" value="1" /><%endif%>
|
||||
|
||||
<%~if direct_methods_used or remote_methods_used%>
|
||||
<%~loop payment_methods%>
|
||||
<font color="#6a5acd">- <input type="radio" id="payment_method-<%if payment_direct%>direct<%else%>remote<%endif%>_<%payment_method%>" name="payment_method" value="<%if payment_direct%>direct<%else%>remote<%endif%>_<%payment_method%>" class="radio" /></font>
|
||||
<font color="#008b8b">+ <input type="radio" id="payment_method-<%if payment_direct%>direct<%else%>remote<%endif%>_<%payment_method%>" name="payment_method" value="<%if payment_direct%>direct<%else%>remote<%endif%>_<%escape_html payment_method%>" class="radio" /></font>
|
||||
<label for="payment_method-<%if payment_direct%>direct<%else%>remote<%endif%>_<%payment_method%>"><%if payment_name%><%payment_name%><%else%><%payment_method%><%endif%></label><br />
|
||||
<blockquote><%loop payment_types%><%name%><%unless last%>, <%endunless%><%endloop%></blockquote>
|
||||
<%~endloop%>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_paypal_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_paypal_include.html,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.4 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_paypal_include.html 4 Mar 2005 21:35:27 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_paypal_include.html 18 Apr 2005 21:39:36 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,26 +1,26 @@</b></font>
|
||||
<form action="https://www.<%if sandbox%>sandbox.<%endif%>paypal.com/cgi-bin/webscr" method="post">
|
||||
<font color="#6a5acd">- <input type="hidden" name="business" value="<%if to_email%><%to_email%><%else%><%business_email%><%endif%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="currency_code" value="<%currency%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="business" value="<%if to_email%><%escape_html to_email%><%else%><%escape_html business_email%><%endif%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="currency_code" value="<%escape_html currency%>" /></font>
|
||||
<input type="hidden" name="return" value="<%config.db_cgi_url%>/add.cgi" />
|
||||
<input type="hidden" name="custom" value="do;process_payment=1;payment_success=1<%loop config.dynamic_preserve%><%if in.$loop_value%>;<%loop_value%>=<%in.$loop_value%><%endloop%>" />
|
||||
<input type="hidden" name="cancel_return" value="<%config.db_cgi_url%>/add.cgi" />
|
||||
<input type="hidden" name="rm" value="2" />
|
||||
<font color="#6a5acd">- <%if notify_url%><input type="hidden" name="notify_url" value="<%notify_url%>" /><%endif%></font>
|
||||
<font color="#6a5acd">- <%if pp_image_url%><input type="hidden" name="image_url" value="<%pp_image_url%>" /><%endif%></font>
|
||||
<font color="#6a5acd">- <%if note and payment_type != 2 %><input type="hidden" name="cn" value="<%note%>" /><%else%><input type="hidden" name="no_note" value="1" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if notify_url%><input type="hidden" name="notify_url" value="<%escape_html notify_url%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if pp_image_url%><input type="hidden" name="image_url" value="<%escape_html pp_image_url%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if note and payment_type != 2 %><input type="hidden" name="cn" value="<%escape_html note%>" /><%else%><input type="hidden" name="no_note" value="1" /><%endif%></font>
|
||||
<%if color eq 'black'%><input type="hidden" name="cs" value="1" /><%endif%>
|
||||
<input type="hidden" name="cmd" value="_xclick<%if payment_type == 2%>-subscriptions<%endif%>" />
|
||||
<%~if payment_type == 2%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="a3" value="<%payment_amount%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="p3" value="<%payment_term_num%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="a3" value="<%escape_html payment_amount%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="p3" value="<%escape_html payment_term_num%>" /></font>
|
||||
<input type="hidden" name="t3" value="<%if payment_term_u istarts 'd'%>D<%elsif payment_term_u istarts 'w'%>W<%elsif payment_term_u istarts 'm'%>M<%elsif payment_term_u istarts 'y'%>Y<%endif%>" />
|
||||
<input type="hidden" name="src" value="1" />
|
||||
<input type="hidden" name="sra" value="1" />
|
||||
<%~else%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="amount" value="<%payment_amount%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="amount" value="<%escape_html payment_amount%>" /></font>
|
||||
<%~endif%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="invoice" value="<%unique_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="item_name" value="<%site_title%> link submission (<%ifnot payment_term_num%>Lifetime<%else%><%payment_term_num%> <%payment_term_unit%><%endif%><%if payment_type == 2%>, recurring<%endif%>)" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="invoice" value="<%escape_html unique_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="item_name" value="<%escape_html site_title%> link submission (<%ifnot payment_term_num%>Lifetime<%else%><%escape_html payment_term_num%> <%escape_html payment_term_unit%><%endif%><%if payment_type == 2%>, recurring<%endif%>)" /></font>
|
||||
<input type="hidden" name="no_shipping" value="1" />
|
||||
<font color="#6a5acd">- <input type="image" name="submit" src="<%if button_custom%><%button_custom%><%else%>https://www.paypal.com/images/<%button%><%endif%>" title="Make payments with PayPal - it's fast, free and secure!" class="image" /></font>
|
||||
<font color="#008b8b">+ <input type="image" name="submit" src="<%if button_custom%><%escape_html button_custom%><%else%>https://www.paypal.com/images/<%button%><%endif%>" title="Make payments with PayPal - it's fast, free and secure!" class="image" /></font>
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_success.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_success.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_success.html 14 Apr 2005 03:16:50 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -21,7 +21,10 @@</b></font>
|
||||
<div class="crumb"><%Links::Utils::format_title($main_title_loop, separator => $crumb_separator, no_escape_separator => $no_escape_crumb_separator, include_home => 1, link_type => 2)%></div>
|
||||
<h2>Payment Confirmation</h2>
|
||||
|
||||
<font color="#6a5acd">-Your payment has been approved. You will be redirected to the main page shortly. If this does not happen, click <a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+<p></font>
|
||||
<font color="#008b8b">+ Your payment has been approved. You will be redirected to the main page shortly.</font>
|
||||
<font color="#008b8b">+ If this does not happen, click <a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+</p></font>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_worldpay_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_worldpay_include.html,v
|
||||
retrieving revision 1.3
|
||||
retrieving revision 1.4
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.3 -r1.4</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_worldpay_include.html 15 Feb 2005 21:06:14 -0000 1.3</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_worldpay_include.html 18 Apr 2005 21:39:36 -0000 1.4</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,19 +1,19 @@</b></font>
|
||||
<form action="https://select.worldpay.com/wcc/purchase" method="post">
|
||||
<font color="#6a5acd">- <input type="hidden" name="instId" value="<%installation_id%>" /></font>
|
||||
<font color="#6a5acd">- <%if test_mode%><input type="hidden" name="testMode" value="<%test_mode%>" /><%endif%></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="currency" value="<%currency%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="amount" value="<%payment_amount%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="instId" value="<%escape_html installation_id%>" /></font>
|
||||
<font color="#008b8b">+ <%if test_mode%><input type="hidden" name="testMode" value="<%escape_html test_mode%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="currency" value="<%escape_html currency%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="amount" value="<%escape_html payment_amount%>" /></font>
|
||||
<%~if payment_type = 2%>
|
||||
<input type="hidden" name="futurePayType" value="regular" />
|
||||
<input type="hidden" name="option" value="0" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="normalAmount" value="<%payment_amount%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="normalAmount" value="<%escape_html payment_amount%>" /></font>
|
||||
<input type="hidden" name="startDelayUnit" value="<%if payment_term_u istarts 'd'%>1<%elsif payment_term_u istarts 'w'%>2<%elsif payment_term_u istarts 'm'%>3<%elsif payment_term_u istarts 'y'%>4<%endif%>" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="startDelayMult" value="<%payment_term_num%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="startDelayMult" value="<%escape_html payment_term_num%>" /></font>
|
||||
<input type="hidden" name="intervalUnit" value="<%if payment_term_u istarts 'd'%>1<%elsif payment_term_u istarts 'w'%>2<%elsif payment_term_u istarts 'm'%>3<%elsif payment_term_u istarts 'y'%>4<%endif%>" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="intervalMult" value="<%payment_term_num%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="intervalMult" value="<%escape_html payment_term_num%>" /></font>
|
||||
<%~endif%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="cartId" value="<%unique_id%>" /></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="desc" value="<%site_title%> link submission (<%ifnot payment_term_num%>Lifetime<%else%><%payment_term_num%> <%payment_term_unit%><%endif%><%if payment_type == 2%>, recurring<%endif%>)" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="cartId" value="<%escape_html unique_id%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="desc" value="<%escape_html site_title%> link submission (<%ifnot payment_term_num%>Lifetime<%else%><%escape_html payment_term_num%> <%escape_html payment_term_unit%><%endif%><%if payment_type == 2%>, recurring<%endif%>)" /></font>
|
||||
<input type="hidden" name="signatureFields" value="amount:currency:cartId" />
|
||||
<input type="hidden" name="signature" value="<%GT::Payment::Remote::WorldPay::md5_signature($md5_password, $payment_amount, $currency, $unique_id)%>" />
|
||||
<input type="submit" value="Make Payment" class="submit" />
|
||||
<font color="#2e8b57"><b>Index: luna/rate.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/rate.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/rate.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/rate.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -25,7 +25,7 @@</b></font>
|
||||
</p>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/rate.cgi" method="post">
|
||||
<font color="#6a5acd">- <input type="hidden" name="ID" value="<%ID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="ID" value="<%escape_html ID%>" /></font>
|
||||
|
||||
<div class="row required clear">
|
||||
<label for="rate" class="name">Link Rating:</label>
|
||||
<font color="#2e8b57"><b>Index: luna/review_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_add.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.15 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_add.html 24 Mar 2005 08:58:29 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_add.html 18 Apr 2005 21:39:36 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
</p>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/review.cgi" method="post">
|
||||
<font color="#6a5acd">- <%if ID%><input type="hidden" name="ID" value="<%ID%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if ID%><input type="hidden" name="ID" value="<%escape_html ID%>" /><%endif%></font>
|
||||
<input type="hidden" name="add_this_review" value="1" />
|
||||
<div class="row required clear">
|
||||
<label class="name">Your Rating: <span>*</span></label>
|
||||
<font color="#a52a2a"><b>@@ -42,32 +42,32 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="Review_Subject" class="name">Subject: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_Subject" name="Review_Subject" value="<%if Review_Subject%><%Review_Subject%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_Subject" name="Review_Subject" value="<%if Review_Subject%><%escape_html Review_Subject%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="Review_ByLine" class="name">By Line:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_ByLine" name="Review_ByLine" value="<%if Review_ByLine%><%Review_ByLine%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_ByLine" name="Review_ByLine" value="<%if Review_ByLine%><%escape_html Review_ByLine%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<label for="Review_Contents" class="name">Your Review: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <textarea id="Review_Contents" name="Review_Contents" rows="3" cols="42"><%if Review_Contents%><%Review_Contents%><%endif%></textarea></font>
|
||||
<font color="#008b8b">+ <textarea id="Review_Contents" name="Review_Contents" rows="3" cols="42"><%if Review_Contents%><%escape_html Review_Contents%><%endif%></textarea></font>
|
||||
</div>
|
||||
</div>
|
||||
<font color="#6a5acd">-<%~if anonymous%></font>
|
||||
<font color="#008b8b">+<%~if not config.user_review_required and not user.Username%></font>
|
||||
<div class="row required clear">
|
||||
<label for="Review_GuestName" class="name">Your Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_GuestName" name="Review_GuestName" value="<%if Review_GuestName%><%Review_GuestName%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_GuestName" name="Review_GuestName" value="<%if Review_GuestName%><%escape_html Review_GuestName%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<label for="Review_GuestEmail" class="name">Your E-mail: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_GuestEmail" name="Review_GuestEmail" value="<%if Review_GuestEmail%><%Review_GuestEmail%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_GuestEmail" name="Review_GuestEmail" value="<%if Review_GuestEmail%><%escape_html Review_GuestEmail%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<%~endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/review_add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_add_success.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.12 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_add_success.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_add_success.html 15 Apr 2005 00:07:25 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -40,7 +40,7 @@</b></font>
|
||||
<label class="name">Review:</label>
|
||||
<div class="value wrappedtext"><%Review_Contents%></div>
|
||||
</div>
|
||||
<font color="#6a5acd">-<%~ifnot config.user_review_required%></font>
|
||||
<font color="#008b8b">+<%~if not config.user_review_required and not user.Username%></font>
|
||||
<div class="row clear">
|
||||
<label class="name">Name:</label>
|
||||
<div class="value wrappedtext"><%Review_GuestName%></div>
|
||||
<font color="#a52a2a"><b>@@ -52,7 +52,11 @@</b></font>
|
||||
<%~endif%>
|
||||
|
||||
<p>
|
||||
<font color="#008b8b">+<%~if config.review_auto_validate%></font>
|
||||
<font color="#008b8b">+ Thank you! Your review has been added.</font>
|
||||
<font color="#008b8b">+<%~else%></font>
|
||||
Thank you! We will send you an e-mail once your review has been validated.
|
||||
<font color="#008b8b">+<%~endif%></font>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/review_added.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_added.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.7
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.6 -r1.7</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_added.eml 15 Mar 2005 20:13:12 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_added.eml 15 Apr 2005 00:07:25 -0000 1.7</b></font>
|
||||
<font color="#a52a2a"><b>@@ -12,7 +12,7 @@</b></font>
|
||||
By Line: <%Review_ByLine%>
|
||||
Date: <%Review_Date%>
|
||||
Contents: <%Review_Contents%>
|
||||
<font color="#6a5acd">-<%~if anonymous%></font>
|
||||
<font color="#008b8b">+<%~if not config.user_review_required and not user.Username%></font>
|
||||
Name: <%Review_GuestName%>
|
||||
E-mail: <%Review_GuestEmail%>
|
||||
<%~endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/review_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_edit.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_edit.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_edit.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -32,14 +32,14 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/review.cgi" method="post">
|
||||
<input type="hidden" name="edit_review" value="1" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="ID" value="<%ID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="ID" value="<%escape_html ID%>" /></font>
|
||||
<%~if confirm%>
|
||||
<div class="formsubmit">
|
||||
<input type="submit" name="confirmed" value="Continue" class="submit" />
|
||||
<input type="submit" name="cancelled" value="Cancel" class="submit" />
|
||||
</div>
|
||||
<%~else%>
|
||||
<font color="#6a5acd">- <input type="hidden" name="ReviewID" value="<%if ReviewID%><%ReviewID%><%endif%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="ReviewID" value="<%if ReviewID%><%escape_html ReviewID%><%endif%>" /></font>
|
||||
|
||||
<div class="row required clear">
|
||||
<label class="name">Your Rating: <span>*</span></label>
|
||||
<font color="#a52a2a"><b>@@ -54,19 +54,19 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="Review_Subject" class="name">Subject: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_Subject" name="Review_Subject" value="<%if Review_Subject%><%Review_Subject%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_Subject" name="Review_Subject" value="<%if Review_Subject%><%escape_html Review_Subject%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label for="Review_ByLine" class="name">By Line:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Review_ByLine" name="Review_ByLine" value="<%if Review_ByLine%><%Review_ByLine%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Review_ByLine" name="Review_ByLine" value="<%if Review_ByLine%><%escape_html Review_ByLine%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<label for="Review_Contents" class="name">Your Review: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <textarea id="Review_Contents" name="Review_Contents" rows="3" cols="42"><%if Review_Contents%><%Review_Contents%><%endif%></textarea></font>
|
||||
<font color="#008b8b">+ <textarea id="Review_Contents" name="Review_Contents" rows="3" cols="42"><%if Review_Contents%><%escape_html Review_Contents%><%endif%></textarea></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formsubmit">
|
||||
<font color="#2e8b57"><b>Index: luna/review_edit_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_edit_success.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_edit_success.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_edit_success.html 14 Apr 2005 07:37:09 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -20,7 +20,9 @@</b></font>
|
||||
<div class="crumb"><%Links::Utils::format_title($main_title_loop, separator => $crumb_separator, no_escape_separator => $no_escape_crumb_separator, include_home => 1, link_type => 2)%></div>
|
||||
<h2>Review Updated</h2>
|
||||
|
||||
<font color="#6a5acd">-We have received the following review:</font>
|
||||
<font color="#008b8b">+<p></font>
|
||||
<font color="#008b8b">+ We have received the following review:</font>
|
||||
<font color="#008b8b">+</p></font>
|
||||
|
||||
<div class="row clear">
|
||||
<label class="name">Rating:</label>
|
||||
<font color="#a52a2a"><b>@@ -39,7 +41,13 @@</b></font>
|
||||
<div class="value wrappedtext"><%Review_Contents%></div>
|
||||
</div>
|
||||
|
||||
<font color="#6a5acd">-Thank you! We will send you an e-mail once your review has been validated.</font>
|
||||
<font color="#008b8b">+<p></font>
|
||||
<font color="#008b8b">+<%~if config.review_auto_validate%></font>
|
||||
<font color="#008b8b">+ Your review has been modified.</font>
|
||||
<font color="#008b8b">+<%~else%></font>
|
||||
<font color="#008b8b">+ Thank you! We will send you an e-mail once your review has been validated.</font>
|
||||
<font color="#008b8b">+<%~endif%></font>
|
||||
<font color="#008b8b">+</p></font>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/review_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_include.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.11 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_include.html 22 Mar 2005 02:01:36 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_include.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -6,7 +6,7 @@</b></font>
|
||||
<%~set ID = ''%>
|
||||
<%~endif%>
|
||||
<h4 class="reviewsubject">
|
||||
<font color="#6a5acd">- <%Review_Subject%><%if Review_Owner eq $user.Username%> <span class="hsmall">(<a href="<%config.db_cgi_url%>/review.cgi?edit_review=1;ID=<%Review_LinkID%>;confirmed=1">edit</a>)</span><%endif%></font>
|
||||
<font color="#008b8b">+ <%Review_Subject%><%if Review_Owner eq $user.Username and config.review_allow_modify%> <span class="hsmall">(<a href="<%config.db_cgi_url%>/review.cgi?edit_review=1;ID=<%Review_LinkID%>;confirmed=1">edit</a>)</span><%endif%></font>
|
||||
<img src="<%Links::Utils::image_url("stars-5-${Review_Rating}.gif")%>" alt="<%Review_Rating%> out of 5 stars" title="<%Review_Rating%> out of 5 stars" />
|
||||
<%if Review_IsNew%><span class="new-item"><span>new</span></span><%endif%>
|
||||
</h4>
|
||||
<font color="#a52a2a"><b>@@ -26,11 +26,11 @@</b></font>
|
||||
<div class="reviewhelpful clear">
|
||||
<span><%if Num%><%Review_WasHelpful%> of <%Num%> people found this review helpful<%endif%></span>
|
||||
<form action="<%config.db_cgi_url%>/review.cgi">
|
||||
<font color="#6a5acd">- <%if nh and nh != 1%><input type="hidden" name="nh" value="<%nh%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if nh and nh != 1%><input type="hidden" name="nh" value="<%escape_html nh%>" /><%endif%></font>
|
||||
<input type="hidden" name="helpful" value="1" />
|
||||
<font color="#6a5acd">- <%if ID%><input type="hidden" name="ID" value="<%ID%>" /><%endif%></font>
|
||||
<font color="#6a5acd">- <%if username%><input type="hidden" name="username" value="<%username%>" /><%endif%></font>
|
||||
<font color="#6a5acd">- <%if ReviewID%><input type="hidden" name="ReviewID" value="<%ReviewID%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if ID%><input type="hidden" name="ID" value="<%escape_html ID%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if username%><input type="hidden" name="username" value="<%escape_html username%>" /><%endif%></font>
|
||||
<font color="#008b8b">+ <%if ReviewID%><input type="hidden" name="ReviewID" value="<%escape_html ReviewID%>" /><%endif%></font>
|
||||
<span>
|
||||
<%~if last_helpful%>
|
||||
Thanks for the feedback.
|
||||
<font color="#2e8b57"><b>Index: luna/signup_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/signup_form.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/signup_form.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/signup_form.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -28,7 +28,7 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="Username" class="name">Username: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Username" name="Username" value="<%if Username%><%Username%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Username" name="Username" value="<%if Username%><%escape_html Username%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row required clear">
|
||||
<font color="#a52a2a"><b>@@ -40,7 +40,7 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="Email" class="name">E-mail: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="Email" name="Email" value="<%if Email%><%Email%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="Email" name="Email" value="<%if Email%><%escape_html Email%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="formsubmit">
|
||||
<font color="#2e8b57"><b>Index: luna/subcategory.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/subcategory.html,v
|
||||
retrieving revision 1.2
|
||||
retrieving revision 1.3
|
||||
<font color="#2e8b57"><b>diff -u -b -r1.2 -r1.3</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/subcategory.html 1 Mar 2005 01:14:13 -0000 1.2</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/subcategory.html 13 Apr 2005 02:06:35 -0000 1.3</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,2 +1,2 @@</b></font>
|
||||
<font color="#6a5acd">-<dt><a href="<%URL%>"><%Name%><%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%> <span class="new-item"><span>new</span></span><%endif%><%if Has_Changed_Links eq 'Yes'%> <span class="updated-item">updated</span></span><%endif%></dt></font>
|
||||
<font color="#008b8b">+<dt><a href="<%URL%>"><%Name%><%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%> <span class="new-item"><span>new</span></span><%endif%><%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>updated</span></span><%endif%></dt></font>
|
||||
<%if Description%><dd><%Description%></dd><%endif%>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,36 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.1 -> 3.0.2 "luna" template set CSS diff</title>
|
||||
<meta name="Generator" content="Vim/6.3">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna_core.css</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/html/static/luna/luna_core.css,v
|
||||
retrieving revision 1.26
|
||||
retrieving revision 1.28
|
||||
<font color="#2e8b57"><b>diff -u -r1.26 -r1.28</b></font>
|
||||
<font color="#2e8b57"><b>--- luna_core.css 7 Apr 2005 07:49:39 -0000 1.26</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna_core.css 18 May 2005 23:26:59 -0000 1.28</b></font>
|
||||
<font color="#a52a2a"><b>@@ -458,7 +458,7 @@</b></font>
|
||||
font-weight: normal;
|
||||
font-size: 9px;
|
||||
color: #ffffff;
|
||||
<font color="#6a5acd">- vertical-align: top;</font>
|
||||
<font color="#008b8b">+ vertical-align: text-top;</font>
|
||||
}
|
||||
.new-item {
|
||||
background-color: #8c3030;
|
||||
<font color="#a52a2a"><b>@@ -560,7 +560,7 @@</b></font>
|
||||
}
|
||||
/* hack for ie 5.5 text/textarea resizing */
|
||||
.row .value input.text, .row .value input.password, .row .value textarea {
|
||||
<font color="#6a5acd">- width: expression(this.parentNode.offsetWidth * 0.74);</font>
|
||||
<font color="#008b8b">+ width: expression(this.parentNode.offsetWidth * 0.74 + 'px');</font>
|
||||
}
|
||||
/* the previous style causes problems with long sidebars in ie6 */
|
||||
.row .value input.text, .row .value input.password, .row .value textarea {
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,901 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.1 -> 3.0.2 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/6.3">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/add.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- add.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ add.html 11 May 2005 22:35:47 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/add_success.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- add_success.html 14 Apr 2005 03:07:05 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ add_success.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_folder_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_folder_add.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_folder_add.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_folder_add.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#a52a2a"><b>@@ -26,7 +26,7 @@</b></font>
|
||||
<div class="row required clear">
|
||||
<label for="my_folder_name" class="name">Name: <span>*</span></label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%escape_html my_folder_name%><%endif%>" class="text" /></font>
|
||||
<font color="#008b8b">+ <input type="text" id="my_folder_name" name="my_folder_name" value="<%if my_folder_name%><%escape_html my_folder_name%><%endif%>" class="text" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<font color="#2e8b57"><b>Index: bookmark_folder_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_folder_edit.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_folder_edit.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_folder_edit.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_folder_view.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_folder_view.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_folder_view.html 24 Mar 2005 08:58:29 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_folder_view.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_link_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_link_add.html,v
|
||||
retrieving revision 1.16
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -r1.16 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_link_add.html 18 Apr 2005 21:39:36 -0000 1.16</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_link_add.html 11 May 2005 22:35:47 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_link_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_link_edit.html,v
|
||||
retrieving revision 1.16
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -r1.16 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_link_edit.html 18 Apr 2005 21:39:36 -0000 1.16</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_link_edit.html 11 May 2005 22:35:47 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_list.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_list.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_list.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_preferences.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_preferences.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_preferences.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_preferences.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: bookmark_users.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/bookmark_users.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- bookmark_users.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ bookmark_users.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: category.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/category.html,v
|
||||
retrieving revision 1.26
|
||||
retrieving revision 1.27
|
||||
<font color="#2e8b57"><b>diff -u -r1.26 -r1.27</b></font>
|
||||
<font color="#2e8b57"><b>--- category.html 13 Apr 2005 19:39:01 -0000 1.26</b></font>
|
||||
<font color="#2e8b57"><b>+++ category.html 11 May 2005 22:35:47 -0000 1.27</b></font>
|
||||
<font color="#a52a2a"><b>@@ -17,7 +17,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: cool.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/cool.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- cool.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ cool.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: detailed.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/detailed.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- detailed.html 24 Mar 2005 08:58:29 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ detailed.html 11 May 2005 22:35:47 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: error.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/error.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- error.html 24 Mar 2005 08:58:29 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ error.html 11 May 2005 22:35:47 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -11,7 +11,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: home.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/home.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- home.html 29 Mar 2005 09:51:43 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ home.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: include_contentfooter.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/include_contentfooter.html,v
|
||||
retrieving revision 1.1
|
||||
retrieving revision 1.3
|
||||
<font color="#2e8b57"><b>diff -u -r1.1 -r1.3</b></font>
|
||||
<font color="#2e8b57"><b>--- include_contentfooter.html 28 Jan 2005 23:20:13 -0000 1.1</b></font>
|
||||
<font color="#2e8b57"><b>+++ include_contentfooter.html 7 May 2005 22:26:31 -0000 1.3</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,2 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-<div id="contentfooter"></font>
|
||||
<font color="#008b8b">+<%--</font>
|
||||
<font color="#008b8b">+<div id="contentfooter" class="clear"></font>
|
||||
</div>
|
||||
<font color="#008b8b">+--%></font>
|
||||
<font color="#2e8b57"><b>Index: language.txt</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/language.txt,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- language.txt 15 Apr 2005 03:32:10 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ language.txt 12 May 2005 20:51:55 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -160,11 +160,13 @@</b></font>
|
||||
'SUBSCRIBE_NOTSUB' => 'You are not subscribed to this mailing list.',
|
||||
'SUBSCRIBE_SUCCESS' => 'You have successfully subscribed to the mailing list.',
|
||||
'SUBSCRIBE_UNSUBSUCCESS' => 'You have successfully unsubscribed from the mailing list.',
|
||||
<font color="#008b8b">+ 'USER_AUTHERROR' => 'Authentication error: %s',</font>
|
||||
'USER_BADLOGIN' => 'Invalid username/password.',
|
||||
'USER_EMAILTAKEN' => 'The e-mail address you entered is already taken.',
|
||||
'USER_INVALIDEMAIL' => 'Invalid e-mail address: \'%s\'',
|
||||
'USER_INVALIDNAME' => 'Invalid name: \'%s\'',
|
||||
'USER_INVALIDSIGNUP' => 'Please fill out all fields completely.',
|
||||
<font color="#008b8b">+ 'USER_INVALIDUSERNAME' => 'Invalid format for username: %s',</font>
|
||||
'USER_INVALIDVAL' => 'Invalid validation code.',
|
||||
'USER_LOGOUT' => 'You have been successfully logged out.',
|
||||
'USER_NAMETAKEN' => 'The username you requested is already taken.',
|
||||
<font color="#2e8b57"><b>Index: link_expiry_notify.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/link_expiry_notify.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.7
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.7</b></font>
|
||||
<font color="#2e8b57"><b>--- link_expiry_notify.eml 14 Mar 2005 23:13:40 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ link_expiry_notify.eml 21 Apr 2005 19:49:17 -0000 1.7</b></font>
|
||||
<font color="#a52a2a"><b>@@ -8,7 +8,7 @@</b></font>
|
||||
|
||||
<%loop expiry_links~%>
|
||||
<%Title%>
|
||||
<font color="#6a5acd">- Expiry Date: <%ExpiryDate%>.</font>
|
||||
<font color="#008b8b">+ Expiry Date: <%ExpiryDate%></font>
|
||||
Renewal Payment: <%renewal_url%>
|
||||
<%endloop%>
|
||||
Please make a payment as soon as possible or contact us for more information.
|
||||
<font color="#2e8b57"><b>Index: login.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/login.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- login.html 18 Apr 2005 21:39:36 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ login.html 11 May 2005 22:35:47 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: login_email.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/login_email.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- login_email.html 18 Apr 2005 21:39:36 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ login_email.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: login_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/login_success.html,v
|
||||
retrieving revision 1.8
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -r1.8 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- login_success.html 24 Mar 2005 08:58:29 -0000 1.8</b></font>
|
||||
<font color="#2e8b57"><b>+++ login_success.html 11 May 2005 22:35:47 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#a52a2a"><b>@@ -24,6 +24,12 @@</b></font>
|
||||
You have been successfully logged into <%site_title%>.
|
||||
</p>
|
||||
|
||||
<font color="#008b8b">+<%if not d and Links::Utils::is_editor%></font>
|
||||
<font color="#008b8b">+<p></font>
|
||||
<font color="#008b8b">+ Enter the <a href="<%config.db_cgi_url%>/browser.cgi">editor system</a>.</font>
|
||||
<font color="#008b8b">+</p></font>
|
||||
<font color="#008b8b">+<%endif%></font>
|
||||
<font color="#008b8b">+</font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="shadowbottom"><div class="shadowbottomleft"></div><div class="shadowbottomright"></div></div>
|
||||
<font color="#2e8b57"><b>Index: modify.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/modify.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- modify.html 18 Apr 2005 21:39:36 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ modify.html 11 May 2005 22:35:47 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: modify_select.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/modify_select.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- modify_select.html 18 Apr 2005 21:39:36 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ modify_select.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: modify_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/modify_success.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- modify_success.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ modify_success.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: new.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/new.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- new.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ new.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: newsletter.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter.html,v
|
||||
retrieving revision 1.8
|
||||
retrieving revision 1.9
|
||||
<font color="#2e8b57"><b>diff -u -r1.8 -r1.9</b></font>
|
||||
<font color="#2e8b57"><b>--- newsletter.html 24 Mar 2005 08:58:29 -0000 1.8</b></font>
|
||||
<font color="#2e8b57"><b>+++ newsletter.html 11 May 2005 22:35:47 -0000 1.9</b></font>
|
||||
<font color="#a52a2a"><b>@@ -13,7 +13,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: newsletter_browse.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter_browse.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- newsletter_browse.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ newsletter_browse.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -64,7 +64,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: newsletter_global.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter_global.html,v
|
||||
retrieving revision 1.8
|
||||
retrieving revision 1.9
|
||||
<font color="#2e8b57"><b>diff -u -r1.8 -r1.9</b></font>
|
||||
<font color="#2e8b57"><b>--- newsletter_global.html 24 Mar 2005 08:58:29 -0000 1.8</b></font>
|
||||
<font color="#2e8b57"><b>+++ newsletter_global.html 11 May 2005 22:35:47 -0000 1.9</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: newsletter_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/newsletter_list.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- newsletter_list.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ newsletter_list.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: payment.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- payment.html 18 Apr 2005 21:39:36 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: payment_direct.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_direct.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- payment_direct.html 14 Apr 2005 03:16:50 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment_direct.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: payment_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_form.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- payment_form.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment_form.html 11 May 2005 22:35:47 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: payment_method.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_method.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- payment_method.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment_method.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -11,7 +11,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: payment_paypal_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_paypal_include.html,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- payment_paypal_include.html 18 Apr 2005 21:39:36 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment_paypal_include.html 21 Apr 2005 19:49:06 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -22,5 +22,5 @@</b></font>
|
||||
<input type="hidden" name="invoice" value="<%escape_html unique_id%>" />
|
||||
<input type="hidden" name="item_name" value="<%escape_html site_title%> link submission (<%ifnot payment_term_num%>Lifetime<%else%><%escape_html payment_term_num%> <%escape_html payment_term_unit%><%endif%><%if payment_type == 2%>, recurring<%endif%>)" />
|
||||
<input type="hidden" name="no_shipping" value="1" />
|
||||
<font color="#6a5acd">- <input type="image" name="submit" src="<%if button_custom%><%escape_html button_custom%><%else%>https://www.paypal.com/images/<%button%><%endif%>" title="Make payments with PayPal - it's fast, free and secure!" class="image" /></font>
|
||||
<font color="#008b8b">+ <input type="image" name="submit" src="<%if button_custom%><%escape_html button_custom%><%else%>https://www.paypal.com/images/<%escape_html button%><%endif%>" title="Make payments with PayPal - it's fast, free and secure!" class="image" /></font>
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: payment_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/payment_success.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- payment_success.html 14 Apr 2005 03:16:50 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ payment_success.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: rate.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/rate.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- rate.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ rate.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: rate_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/rate_success.html,v
|
||||
retrieving revision 1.8
|
||||
retrieving revision 1.9
|
||||
<font color="#2e8b57"><b>diff -u -r1.8 -r1.9</b></font>
|
||||
<font color="#2e8b57"><b>--- rate_success.html 24 Mar 2005 08:58:29 -0000 1.8</b></font>
|
||||
<font color="#2e8b57"><b>+++ rate_success.html 11 May 2005 22:35:47 -0000 1.9</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: rate_top.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/rate_top.html,v
|
||||
retrieving revision 1.11
|
||||
retrieving revision 1.12
|
||||
<font color="#2e8b57"><b>diff -u -r1.11 -r1.12</b></font>
|
||||
<font color="#2e8b57"><b>--- rate_top.html 24 Mar 2005 08:58:29 -0000 1.11</b></font>
|
||||
<font color="#2e8b57"><b>+++ rate_top.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: review_add.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_add.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- review_add.html 18 Apr 2005 21:39:36 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ review_add.html 11 May 2005 22:35:47 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: review_add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_add_success.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- review_add_success.html 15 Apr 2005 00:07:25 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ review_add_success.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: review_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_edit.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- review_edit.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ review_edit.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: review_edit_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_edit_success.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- review_edit_success.html 14 Apr 2005 07:37:09 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ review_edit_success.html 11 May 2005 22:35:47 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: review_search_results.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/review_search_results.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- review_search_results.html 24 Mar 2005 08:58:29 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ review_search_results.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: search.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/search.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- search.html 24 Mar 2005 08:58:29 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ search.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: search_results.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/search_results.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- search_results.html 24 Mar 2005 08:58:29 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ search_results.html 11 May 2005 22:35:47 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
<h2>Search Results</h2>
|
||||
|
||||
<p>
|
||||
<font color="#6a5acd">- Your search for <%if highlight%><%Links::Tools::highlight($query, $query)%><%else%><strong><%query%></strong><%endif%> returned <strong><%cat_hits%></strong> categor<%if cat_hits != 1%>ies<%else%>y<%endif%> and <strong><%link_hits%></strong> link<%if link_hits != 1%>s<%endif%></font>
|
||||
<font color="#008b8b">+ Your search<%if query%> for <%if highlight%><%Links::Tools::highlight($query, $query)%><%else%><strong><%query%></strong><%endif%><%endif%> returned <strong><%cat_hits%></strong> categor<%if cat_hits != 1%>ies<%else%>y<%endif%> and <strong><%link_hits%></strong> link<%if link_hits != 1%>s<%endif%></font>
|
||||
</p>
|
||||
|
||||
<%if category_results_loop.length~%>
|
||||
<font color="#a52a2a"><b>@@ -36,7 +36,7 @@</b></font>
|
||||
<ul>
|
||||
<%~loop category_results_loop%>
|
||||
<%~set formatted_title = Links::Utils::format_title($title_loop, separator => $category_separator, no_escape_separator => $no_escape_category_separator, include_home => 0, link_type => 1)%>
|
||||
<font color="#6a5acd">- <li><%if highlight%><%Links::Tools::highlight($formatted_title, $query)%><%else%><%formatted_title%><%endif%></li></font>
|
||||
<font color="#008b8b">+ <li><%if highlight and query%><%Links::Tools::highlight($formatted_title, $query)%><%else%><%formatted_title%><%endif%></li></font>
|
||||
<%~endloop%>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
<font color="#a52a2a"><b>@@ -49,7 +49,7 @@</b></font>
|
||||
<%loop link_results_loop~%>
|
||||
<%if title_loop.length%>
|
||||
<%~set formatted_title = Links::Utils::format_title($title_loop, separator => $category_separator, no_escape_separator => $no_escape_category_separator, include_home => 0, link_type => 1)%>
|
||||
<font color="#6a5acd">- <p class="category"><%if highlight%><%Links::Tools::highlight($formatted_title, $query)%><%else%><%formatted_title%><%endif%></p></font>
|
||||
<font color="#008b8b">+ <p class="category"><%if highlight and query%><%Links::Tools::highlight($formatted_title, $query)%><%else%><%formatted_title%><%endif%></p></font>
|
||||
<%~endif%>
|
||||
<%include link.html%>
|
||||
<%~endloop%>
|
||||
<font color="#2e8b57"><b>Index: signup_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/signup_form.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- signup_form.html 18 Apr 2005 21:39:36 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ signup_form.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: signup_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/signup_success.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.9 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- signup_success.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ signup_success.html 11 May 2005 22:35:47 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#a52a2a"><b>@@ -24,7 +24,7 @@</b></font>
|
||||
<%~if Validation%>
|
||||
Thanks for signing up, an e-mail has been sent to you with a validation code. Once you receive it, you'll need to enter a <a href="<%config.db_cgi_url%>/user.cgi?validate=1">validation code</a>
|
||||
<%~else%>
|
||||
<font color="#6a5acd">- You have now successfully registered. You may now <a href="<%config.db_cgi_url%>/user.cgi?Username=<%Username%>">log in</a>.</font>
|
||||
<font color="#008b8b">+ You have successfully registered.</font>
|
||||
<%~endif%>
|
||||
</p>
|
||||
|
||||
<font color="#2e8b57"><b>Index: validate_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/validate_form.html,v
|
||||
retrieving revision 1.10
|
||||
retrieving revision 1.11
|
||||
<font color="#2e8b57"><b>diff -u -r1.10 -r1.11</b></font>
|
||||
<font color="#2e8b57"><b>--- validate_form.html 24 Mar 2005 08:58:29 -0000 1.10</b></font>
|
||||
<font color="#2e8b57"><b>+++ validate_form.html 11 May 2005 22:35:47 -0000 1.11</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<font color="#2e8b57"><b>Index: validate_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/validate_success.html,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- validate_success.html 24 Mar 2005 08:58:29 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ validate_success.html 11 May 2005 22:35:47 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -9,7 +9,7 @@</b></font>
|
||||
<div id="wrapper">
|
||||
<%include include_header.html%>
|
||||
<%include include_contentheader.html%>
|
||||
<font color="#6a5acd">- <div id="ocwrapper"></font>
|
||||
<font color="#008b8b">+ <div id="ocwrapper" class="clear"></font>
|
||||
<div id="icwrapper" class="clear">
|
||||
<%include include_leftsidebar.html%>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,27 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.2 -> 3.0.3 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/6.3">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: include_common_head.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/cgi/admin/templates/luna/include_common_head.html,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- include_common_head.html 4 Apr 2005 22:29:09 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ include_common_head.html 4 Jun 2005 05:28:32 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,7 +1,7 @@</b></font>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<%if Meta_Description%><meta name="description" content="<%Meta_Description%>" /><%endif%>
|
||||
<%if Meta_Keywords%><meta name="keywords" content="<%Meta_Keywords%>" /><%endif%>
|
||||
<font color="#6a5acd">-<%if theme%><link type="text/css" rel="stylesheet" media="screen" href="<%config.build_static_url%>/<%t%>/<%theme%>.css" /><%endif%></font>
|
||||
<font color="#008b8b">+<%if theme%><link type="text/css" rel="stylesheet" href="<%config.build_static_url%>/<%t%>/<%theme%>.css" /><%endif%></font>
|
||||
<%~-- If your site is statically built, then the login status will always say 'Login/Register'. This javascript replaces it with 'Logout' if the user is logged in. --~%>
|
||||
<%if not d and not user.Username~%>
|
||||
<script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,141 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.3 -> 3.0.4 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/6.4">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna/add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/add_success.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/add_success.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/add_success.html 4 Jul 2005 23:12:23 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -30,7 +30,7 @@</b></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">URL:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%URL%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html URL%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Category:</label>
|
||||
<font color="#2e8b57"><b>Index: luna/category.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/category.html,v
|
||||
retrieving revision 1.27
|
||||
retrieving revision 1.28
|
||||
<font color="#2e8b57"><b>diff -u -r1.27 -r1.28</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/category.html 11 May 2005 22:35:47 -0000 1.27</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/category.html 4 Jul 2005 23:12:23 -0000 1.28</b></font>
|
||||
<font color="#a52a2a"><b>@@ -51,7 +51,7 @@</b></font>
|
||||
<h3>Related Categories</h3>
|
||||
<ul>
|
||||
<%~loop related_loop%>
|
||||
<font color="#6a5acd">- <li><a href="<%URL%>"><%Full_Name%></a></li></font>
|
||||
<font color="#008b8b">+ <li><a href="<%escape_html URL%>"><%Full_Name%></a></li></font>
|
||||
<%~endloop%>
|
||||
</ul>
|
||||
<%endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/include_common_head.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/include_common_head.html,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.7
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.7</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/include_common_head.html 4 Jun 2005 05:28:32 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/include_common_head.html 24 Jun 2005 20:13:32 -0000 1.7</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
return;
|
||||
var cookies = document.cookie.split(';');
|
||||
for (var i = 0; i < cookies.length; i++) {
|
||||
<font color="#6a5acd">- if (cookies[i].match(/<%config.user_cookie_prefix%>s=[0-9a-f]+/)) {</font>
|
||||
<font color="#008b8b">+ if (cookies[i].match(/^\s*<%config.user_cookie_prefix%>s=[0-9a-f]{32}\s*$/)) {</font>
|
||||
loginlink.href = '<%config.db_cgi_url%>/user.cgi?logout=1';
|
||||
loginlink.className = 'in';
|
||||
loginlink.firstChild.nodeValue = 'Logout';
|
||||
<font color="#2e8b57"><b>Index: luna/jump_frame.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/jump_frame.html,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.7
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.7</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/jump_frame.html 7 Apr 2005 07:50:05 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/jump_frame.html 4 Jul 2005 23:12:23 -0000 1.7</b></font>
|
||||
<font color="#a52a2a"><b>@@ -22,7 +22,7 @@</b></font>
|
||||
<a href="<%config.db_cgi_url%>/review.cgi?ID=<%ID%>;add_review=1">Review Link</a>
|
||||
<a href="<%config.db_cgi_url%>/rate.cgi?ID=<%ID%>">Rate Link</a>
|
||||
<%if config.bookmark_enabled%><a href="<%config.db_cgi_url%>/bookmark.cgi?action=link_add;ID=<%ID%>">Bookmark Link</a><%endif%>
|
||||
<font color="#6a5acd">- <a href="<%URL%>">Remove Frame</a></font>
|
||||
<font color="#008b8b">+ <a href="<%escape_html URL%>">Remove Frame</a></font>
|
||||
</div>
|
||||
<%endif%>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/link.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link.html 22 Mar 2005 02:01:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link.html 5 Jul 2005 00:40:02 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -10,7 +10,7 @@</b></font>
|
||||
<%if isFree%><span class="free-item"><span>free</span></span><%endif%>
|
||||
<%~endif%>
|
||||
</h4>
|
||||
<font color="#6a5acd">- <%if URL ne 'http://'%><p class="linkurl"><%if isValidated eq 'Yes'%><a href="<%config.db_cgi_url%>/jump.cgi?ID=<%ID%>"><%endif%><%if highlight%><%Links::Tools::highlight($URL, $query)%><%else%><%URL%><%endif%><%if isValidated eq 'Yes'%></a><%endif%></p><%endif%></font>
|
||||
<font color="#008b8b">+ <%if URL ne 'http://'%><p class="linkurl"><%if isValidated eq 'Yes'%><a href="<%config.db_cgi_url%>/jump.cgi?ID=<%ID%>"><%endif%><%if highlight%><%set equery = escape_html $query%><%set eURL = escape_html $URL%><%Links::Tools::highlight($eURL, $equery)%><%else%><%escape_html URL%><%endif%><%if isValidated eq 'Yes'%></a><%endif%></p><%endif%></font>
|
||||
|
||||
<p class="linkrating">
|
||||
<%~if Votes%>
|
||||
<font color="#2e8b57"><b>Index: luna/modify_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/modify_success.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify_success.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify_success.html 4 Jul 2005 23:12:23 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -34,7 +34,7 @@</b></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">URL:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%URL%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html URL%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Category:</label>
|
||||
<font color="#2e8b57"><b>Index: luna/search_results.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/search_results.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/search_results.html 11 May 2005 22:35:47 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/search_results.html 5 Jul 2005 00:40:02 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
<h2>Search Results</h2>
|
||||
|
||||
<p>
|
||||
<font color="#6a5acd">- Your search<%if query%> for <%if highlight%><%Links::Tools::highlight($query, $query)%><%else%><strong><%query%></strong><%endif%><%endif%> returned <strong><%cat_hits%></strong> categor<%if cat_hits != 1%>ies<%else%>y<%endif%> and <strong><%link_hits%></strong> link<%if link_hits != 1%>s<%endif%></font>
|
||||
<font color="#008b8b">+ Your search<%if query%> for <%if highlight%><%set equery = escape_html $query%><%Links::Tools::highlight($equery, $equery)%><%else%><strong><%escape_html query%></strong><%endif%><%endif%> returned <strong><%cat_hits%></strong> categor<%if cat_hits != 1%>ies<%else%>y<%endif%> and <strong><%link_hits%></strong> link<%if link_hits != 1%>s<%endif%></font>
|
||||
</p>
|
||||
|
||||
<%if category_results_loop.length~%>
|
||||
<font color="#2e8b57"><b>Index: luna/subcategory.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/subcategory.html,v
|
||||
retrieving revision 1.3
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.3 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/subcategory.html 13 Apr 2005 02:06:35 -0000 1.3</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/subcategory.html 4 Jul 2005 23:12:23 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,2 +1,2 @@</b></font>
|
||||
<font color="#6a5acd">-<dt><a href="<%URL%>"><%Name%><%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%> <span class="new-item"><span>new</span></span><%endif%><%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>updated</span></span><%endif%></dt></font>
|
||||
<font color="#008b8b">+<dt><a href="<%escape_html URL%>"><%if RelationName%><%RelationName%><%else%><%Name%><%endif%><%if Related%>@<%endif%></a> (<%Number_of_Links%>)<%if Has_New_Links eq 'Yes'%> <span class="new-item"><span>new</span></span><%endif%><%if Has_Changed_Links eq 'Yes'%> <span class="updated-item"><span>updated</span></span><%endif%></dt></font>
|
||||
<%if Description%><dd><%Description%></dd><%endif%>
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,36 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.4 -> 3.1.0 "luna" template set CSS diff</title>
|
||||
<meta name="Generator" content="Vim/6.4">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna_core.css</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/html/static/luna/luna_core.css,v
|
||||
retrieving revision 1.28
|
||||
retrieving revision 1.30
|
||||
<font color="#2e8b57"><b>diff -u -r1.28 -r1.30</b></font>
|
||||
<font color="#2e8b57"><b>--- luna_core.css 18 May 2005 23:26:59 -0000 1.28</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna_core.css 5 Jan 2006 20:56:24 -0000 1.30</b></font>
|
||||
<font color="#a52a2a"><b>@@ -493,7 +493,7 @@</b></font>
|
||||
.paging {
|
||||
text-align: right;
|
||||
}
|
||||
<font color="#6a5acd">-.paging img, .paging select {</font>
|
||||
<font color="#008b8b">+.paging img, .paging select, .paging input {</font>
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
<font color="#a52a2a"><b>@@ -535,8 +535,6 @@</b></font>
|
||||
#content ul {
|
||||
margin: 10px 0px 0px 20px;
|
||||
padding: 0px;
|
||||
<font color="#6a5acd">-}</font>
|
||||
<font color="#6a5acd">-#content li {</font>
|
||||
font-size: 12px;
|
||||
list-style: none;
|
||||
}
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,416 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.0.4 -> 3.1.0 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/6.4">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_folder_view.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/bookmark_folder_view.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_folder_view.html 11 May 2005 22:35:47 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_folder_view.html 4 Jan 2006 04:58:06 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -4,12 +4,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: Bookmarks: <%my_folder_username%><%if my_folder_name%>: <%my_folder_name%><%else%>'s Bookmarks<%endif%></title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="bookmark_folder_view">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#a52a2a"><b>@@ -35,6 +29,8 @@</b></font>
|
||||
<%~endif%>
|
||||
</p>
|
||||
|
||||
<font color="#008b8b">+<%if paging.num_hits%><div class="paging"><%Links::Utils::paging()%></div><%endif%></font>
|
||||
<font color="#008b8b">+</font>
|
||||
<%if Folders.length~%>
|
||||
<ul class="folders">
|
||||
<%~loop Folders%>
|
||||
<font color="#a52a2a"><b>@@ -46,8 +42,6 @@</b></font>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
|
||||
<font color="#6a5acd">-<%if paging.num_hits%><div class="paging"><%Links::Utils::paging()%></div><%endif%></font>
|
||||
<font color="#6a5acd">-</font>
|
||||
<%if Bookmarks.length~%>
|
||||
<%~loop Bookmarks%>
|
||||
<p class="category"><%Links::Utils::format_title($title_loop, separator => $category_separator, no_escape_separator => $no_escape_category_separator, include_home => 0, link_type => 1)%></p>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/bookmark_list.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_list.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_list.html 4 Jan 2006 01:38:36 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -4,12 +4,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: <%if my_folder_name%>Bookmarks: <%my_folder_name%><%else%>My Bookmarks<%endif%></title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="bookmark_list">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#a52a2a"><b>@@ -35,6 +29,8 @@</b></font>
|
||||
<%~endif%>
|
||||
</p>
|
||||
|
||||
<font color="#008b8b">+<%if paging.num_hits%><div class="paging"><%Links::Utils::paging()%></div><%endif%></font>
|
||||
<font color="#008b8b">+</font>
|
||||
<%if Folders.length~%>
|
||||
<ul class="folders">
|
||||
<%~loop Folders%>
|
||||
<font color="#a52a2a"><b>@@ -51,8 +47,6 @@</b></font>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
|
||||
<font color="#6a5acd">-<%if paging.num_hits%><div class="paging"><%Links::Utils::paging()%></div><%endif%></font>
|
||||
<font color="#6a5acd">-</font>
|
||||
<%if Bookmarks.length~%>
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="links_manage" />
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_users.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/bookmark_users.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_users.html 11 May 2005 22:35:47 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_users.html 19 Aug 2005 20:07:57 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -4,12 +4,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: Bookmarks: User List</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="bookmark_users">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/category.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/category.html,v
|
||||
retrieving revision 1.28
|
||||
retrieving revision 1.29
|
||||
<font color="#2e8b57"><b>diff -u -r1.28 -r1.29</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/category.html 4 Jul 2005 23:12:23 -0000 1.28</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/category.html 19 Aug 2005 20:07:57 -0000 1.29</b></font>
|
||||
<font color="#a52a2a"><b>@@ -5,12 +5,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: <%category_name%></title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="category">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/cool.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/cool.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/cool.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/cool.html 19 Aug 2005 20:07:57 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,12 +3,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: What's Cool</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="cool">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/language.txt</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/language.txt,v
|
||||
retrieving revision 1.18
|
||||
retrieving revision 1.19
|
||||
<font color="#2e8b57"><b>diff -u -r1.18 -r1.19</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/language.txt 12 May 2005 20:51:55 -0000 1.18</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/language.txt 19 Jan 2006 21:43:09 -0000 1.19</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,6 +3,7 @@</b></font>
|
||||
'ADD_BADSTATUS' => 'Your link could not be added because it is not accessible: %s.',
|
||||
'ADD_ILLEGALVAL' => '%s can not contain the value \'%s\'',
|
||||
'ADD_INVALIDCAT' => 'Unable to find category with ID \'%s\'.',
|
||||
<font color="#008b8b">+ 'ADD_NOCATEGORIES' => 'There are no categories to add a link to.',</font>
|
||||
'ADD_NOCATEGORY' => 'You did not specify a category for this link.',
|
||||
'ADD_NOTNULL' => 'Column %s can not be left blank.',
|
||||
'ADD_SELCAT' => 'Please first visit the category you wish to add your link to, then click on Add.',
|
||||
<font color="#2e8b57"><b>Index: luna/link.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link.html 5 Jul 2005 00:40:02 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link.html 10 Feb 2006 01:26:18 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -17,7 +17,7 @@</b></font>
|
||||
<%~set intRating = $Rating i/ 1%>
|
||||
<img src="<%Links::Utils::image_url("stars-10-${intRating}.gif")%>" alt="<%intRating%> out of 10 stars" title="<%intRating%> out of 10 stars" /> (<%Votes%> vote<%if Votes != 1%>s<%endif%>)
|
||||
<%~endif%>
|
||||
<font color="#6a5acd">- <%~if paymentsEnabled and ExpiryDateFormatted and not isFree%></font>
|
||||
<font color="#008b8b">+ <%~if paymentsEnabled and ExpiryDateFormatted and wasPaid%></font>
|
||||
<%if isNotify or isExpired%><span class="linkexpired"><%endif%><%if isExpired%>Expired on:<%else%>Expiry date:<%endif%> <%ExpiryDateFormatted%><%if isNotify or isExpired%></span><%endif%>
|
||||
<%~endif%>
|
||||
</p>
|
||||
<font color="#a52a2a"><b>@@ -32,6 +32,6 @@</b></font>
|
||||
<%if config.bookmark_enabled%><a href="<%config.db_cgi_url%>/bookmark.cgi?action=link_add;ID=<%ID%>">Bookmark It</a><%endif%>
|
||||
<%if isLinkOwner%><a href="<%config.db_cgi_url%>/modify.cgi?LinkID=<%ID%>">Edit this link</a><%endif%>
|
||||
<%~endif%>
|
||||
<font color="#6a5acd">- <%if paymentsEnabled%><a href="<%config.db_cgi_url%>/modify.cgi?do=payment_linked;process_payment=1;modify=1;ID=<%ID%>"><%if isUnpaid or isFree%>New Payment<%else%>Renewal Payment<%endif%></a><%endif%></font>
|
||||
<font color="#008b8b">+ <%if paymentsEnabled%><a href="<%config.db_cgi_url%>/modify.cgi?do=payment_linked;process_payment=1;modify=1;ID=<%ID%>"><%if not wasPaid%>New Payment<%else%>Renewal Payment<%endif%></a><%endif%></font>
|
||||
</p>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/link_added.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link_added.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_added.eml 14 Mar 2005 23:13:40 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_added.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Contact_Email%><%if Contact_Name%><%Contact_Name%> <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Contact_Email%><%if Contact_Name%>"<%Contact_Name%>" <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your link has been approved
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/link_expired.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link_expired.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.7
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.7</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_expired.eml 14 Mar 2005 23:13:40 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_expired.eml 27 Oct 2005 23:25:24 -0000 1.7</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Expiry Notification
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/link_expiry_notify.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link_expiry_notify.eml,v
|
||||
retrieving revision 1.7
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.7 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_expiry_notify.eml 21 Apr 2005 19:49:17 -0000 1.7</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_expiry_notify.eml 27 Oct 2005 23:25:24 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Expiry Notification
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/link_modified.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link_modified.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_modified.eml 14 Mar 2005 23:13:40 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_modified.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Contact_Email%><%if Contact_Name%><%Contact_Name%> <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Contact_Email%><%if Contact_Name%>"<%Contact_Name%>" <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your link has been successfully updated
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/link_rejected.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/link_rejected.eml,v
|
||||
retrieving revision 1.3
|
||||
retrieving revision 1.4
|
||||
<font color="#2e8b57"><b>diff -u -r1.3 -r1.4</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_rejected.eml 15 Feb 2005 20:31:38 -0000 1.3</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_rejected.eml 27 Oct 2005 23:25:24 -0000 1.4</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Contact_Email%><%if Contact_Name%><%Contact_Name%> <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Contact_Email%><%if Contact_Name%>"<%Contact_Name%>" <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your <%if modify%>change<%else%>link<%endif%> has been rejected
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/modify_select.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/modify_select.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify_select.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify_select.html 19 Aug 2005 20:07:57 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,12 +3,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: Modify a Link</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="modify_select">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/new.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/new.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/new.html 11 May 2005 22:35:47 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/new.html 19 Aug 2005 20:07:57 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,12 +3,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: New Links</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="new">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/password.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/password.eml,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.4 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/password.eml 15 Feb 2005 20:31:38 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/password.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your password you requested
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/payment_received.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/payment_received.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_received.eml 14 Mar 2005 23:13:40 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_received.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Contact_Email%><%if Contact_Name%><%Contact_Name%> <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Contact_Email%><%if Contact_Name%>"<%Contact_Name%>" <<%Contact_Email%>><%else%><%Contact_Email%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Payment has been received and your link has been added
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/review_added.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/review_added.eml,v
|
||||
retrieving revision 1.7
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.7 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_added.eml 15 Apr 2005 00:07:25 -0000 1.7</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_added.eml 27 Oct 2005 23:25:24 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Review_GuestEmail%><%if Review_GuestName%><%Review_GuestName%> <<%Review_GuestEmail%>><%else%><%Review_GuestEmail%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Review_GuestEmail%><%if Review_GuestName%>"<%Review_GuestName%>" <<%Review_GuestEmail%>><%else%><%Review_GuestEmail%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your review has been approved
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/review_rejected.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/review_rejected.eml,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.4 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_rejected.eml 14 Mar 2005 23:13:40 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_rejected.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Review_GuestEmail%><%if Review_GuestName%><%Review_GuestName%> <<%Review_GuestEmail%>><%else%><%Review_GuestEmail%><%endif%><%elsif Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Review_GuestEmail%><%if Review_GuestName%>"<%Review_GuestName%>" <<%Review_GuestEmail%>><%else%><%Review_GuestEmail%><%endif%><%elsif Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your review has been rejected
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/review_search_results.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/review_search_results.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_search_results.html 11 May 2005 22:35:47 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_search_results.html 19 Aug 2005 20:07:57 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,12 +3,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: Reviews</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="review_search_results">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/search_results.html</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/search_results.html,v
|
||||
retrieving revision 1.18
|
||||
retrieving revision 1.19
|
||||
<font color="#2e8b57"><b>diff -u -r1.18 -r1.19</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/search_results.html 5 Jul 2005 00:40:02 -0000 1.18</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/search_results.html 19 Aug 2005 20:07:57 -0000 1.19</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,12 +3,6 @@</b></font>
|
||||
<head>
|
||||
<title><%site_title%>: Search Results</title>
|
||||
<%include include_common_head.html%>
|
||||
<font color="#6a5acd">- <script type="text/javascript" src="<%config.build_static_url%>/utils.js"></script></font>
|
||||
<font color="#6a5acd">- <script type="text/javascript"></font>
|
||||
<font color="#6a5acd">- //<![CDATA[</font>
|
||||
<font color="#6a5acd">-registerEvent(window, 'onload', function () { hideObjects('paging_button', 'paging_button2') });</font>
|
||||
<font color="#6a5acd">- //!]]></font>
|
||||
<font color="#6a5acd">- </script></font>
|
||||
</head>
|
||||
<body id="search_results">
|
||||
<%include include_accessibility.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/validate.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: /cvs/gossamer/glinks/cgi/admin/templates/luna/validate.eml,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.4 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/validate.eml 14 Mar 2005 23:13:40 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/validate.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,4 +1,4 @@</b></font>
|
||||
<font color="#6a5acd">-To: <%if Name%><%Name%> <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
<font color="#008b8b">+To: <%if Name%>"<%Name%>" <<%Email%>><%else%><%Email%><%endif%></font>
|
||||
From: <%config.db_admin_email%>
|
||||
Subject: Your validation code
|
||||
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,97 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.1.0 -> 3.2.0 "luna" template set CSS diff</title>
|
||||
<meta name="Generator" content="Vim/7.0">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna_core.css</b></font>
|
||||
===================================================================
|
||||
RCS file: /glinks/html/static/luna/luna_core.css,v
|
||||
retrieving revision 1.30
|
||||
retrieving revision 1.38
|
||||
<font color="#2e8b57"><b>diff -u -r1.30 -r1.38</b></font>
|
||||
<font color="#2e8b57"><b>--- luna_core.css 5 Jan 2006 20:56:24 -0000 1.30</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna_core.css 11 Aug 2006 04:30:25 -0000 1.38</b></font>
|
||||
<font color="#a52a2a"><b>@@ -22,7 +22,7 @@</b></font>
|
||||
There are a few CSS filters/hacks used in this file to fix bugs in various
|
||||
browsers. Here is a list of them:
|
||||
|
||||
<font color="#6a5acd">-- Star html selector bug (css rule only applies to ie/win)</font>
|
||||
<font color="#008b8b">+- Star html selector bug (css rule only applies to ie)</font>
|
||||
http://www.info.com.ph/~etan/w3pantheon/style/starhtmlbug.html
|
||||
eg. * html <selector> {}
|
||||
- Simplified box model hack (hide css from ie5-5.5/win)
|
||||
<font color="#a52a2a"><b>@@ -316,7 +316,7 @@</b></font>
|
||||
margin-right: -200px;
|
||||
padding: 10px 10px 10px 0px;
|
||||
width: 190px;
|
||||
<font color="#6a5acd">- float: left;</font>
|
||||
<font color="#008b8b">+ float: right;</font>
|
||||
position: relative;
|
||||
}
|
||||
#contentwrapper {
|
||||
<font color="#a52a2a"><b>@@ -538,6 +538,9 @@</b></font>
|
||||
font-size: 12px;
|
||||
list-style: none;
|
||||
}
|
||||
<font color="#008b8b">+#content ul.categories {</font>
|
||||
<font color="#008b8b">+ margin: 0px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
|
||||
/* forms */
|
||||
.row {
|
||||
<font color="#a52a2a"><b>@@ -590,6 +593,50 @@</b></font>
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
<font color="#008b8b">+/* treecats */</font>
|
||||
<font color="#008b8b">+#content .treecats-selection-summary ul, #content .treecats-selection ul {</font>
|
||||
<font color="#008b8b">+ margin: 0px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-selection-summary li a, .treecats-selection li a {</font>
|
||||
<font color="#008b8b">+ margin-top: 2px;</font>
|
||||
<font color="#008b8b">+ margin-left: 5px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-selection-summary a, .treecats-selection a {</font>
|
||||
<font color="#008b8b">+ font-size: 9px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-selection-summary a:visited, .treecats-selection a:visited {</font>
|
||||
<font color="#008b8b">+ color: #212126;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-selection-current {</font>
|
||||
<font color="#008b8b">+ font-weight: bold;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-category-info img {</font>
|
||||
<font color="#008b8b">+ border: 0px;</font>
|
||||
<font color="#008b8b">+ padding: 2px;</font>
|
||||
<font color="#008b8b">+ vertical-align: middle;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-children {</font>
|
||||
<font color="#008b8b">+ padding-left: 15px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-selected span, li.treecats-selected {</font>
|
||||
<font color="#008b8b">+ font-weight: bold;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-category a:link, .treecats-category a:visited {</font>
|
||||
<font color="#008b8b">+ color: #212126;</font>
|
||||
<font color="#008b8b">+ text-decoration: none;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-category a:hover {</font>
|
||||
<font color="#008b8b">+ text-decoration: underline;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+#content ul.treecats-links {</font>
|
||||
<font color="#008b8b">+ padding-left: 15px;</font>
|
||||
<font color="#008b8b">+ margin: 0px;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+.treecats-links li {</font>
|
||||
<font color="#008b8b">+ line-height: 1.25em;</font>
|
||||
<font color="#008b8b">+ list-style: circle;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
<font color="#008b8b">+</font>
|
||||
/* search highlighting */
|
||||
.searchhl-1, .searchhl-2, .searchhl-3, .searchhl-4, .searchhl-5 {
|
||||
font-weight: bold;
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,57 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.2.0 -> 3.3.0 "luna" template set CSS diff</title>
|
||||
<meta name="Generator" content="Vim/7.2">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna_core.css</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/html/static/luna/luna_core.css,v
|
||||
retrieving revision 1.38
|
||||
retrieving revision 1.41
|
||||
<font color="#2e8b57"><b>diff -u -r1.38 -r1.41</b></font>
|
||||
<font color="#2e8b57"><b>--- luna_core.css 11 Aug 2006 04:30:25 -0000 1.38</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna_core.css 14 Nov 2007 20:55:40 -0000 1.41</b></font>
|
||||
<font color="#a52a2a"><b>@@ -4,7 +4,7 @@</b></font>
|
||||
*
|
||||
* Website : http://gossamer-threads.com/
|
||||
* Support : http://gossamer-threads.com/scripts/support/
|
||||
<font color="#6a5acd">- * Revision : $Id: 3.2.0-3.3.0.css.diff.html,v 1.2 2009/04/17 00:50:28 brewt Exp $</font>
|
||||
<font color="#008b8b">+ * Revision : $Id: 3.2.0-3.3.0.css.diff.html,v 1.2 2009/04/17 00:50:28 brewt Exp $</font>
|
||||
*
|
||||
* Copyright (c) 2005 Gossamer Threads Inc. All Rights Reserved.
|
||||
* Redistribution in part or in whole strictly prohibited. Please
|
||||
<font color="#a52a2a"><b>@@ -122,6 +122,7 @@</b></font>
|
||||
#logo a {
|
||||
text-decoration: none;
|
||||
display: block;
|
||||
<font color="#008b8b">+ outline: none;</font>
|
||||
}
|
||||
#header {
|
||||
background: transparent url(images/swirls.gif) top right no-repeat;
|
||||
<font color="#a52a2a"><b>@@ -386,6 +387,8 @@</b></font>
|
||||
margin: 15px 15px 20px 20px;
|
||||
}
|
||||
.linklisting h4.linktitle, .linklisting p.linkurl, .linklisting p.linkrating {
|
||||
<font color="#008b8b">+ overflow: hidden;</font>
|
||||
<font color="#008b8b">+ width: 100%;</font>
|
||||
margin: 2px 0px;
|
||||
}
|
||||
.linklisting h4.linktitle a {
|
||||
<font color="#a52a2a"><b>@@ -541,6 +544,12 @@</b></font>
|
||||
#content ul.categories {
|
||||
margin: 0px;
|
||||
}
|
||||
<font color="#008b8b">+#content ul.default {</font>
|
||||
<font color="#008b8b">+ margin: 0px 0px 1em 0px;</font>
|
||||
<font color="#008b8b">+ padding-left: 3.6em;</font>
|
||||
<font color="#008b8b">+ font-size: 11px;</font>
|
||||
<font color="#008b8b">+ list-style: disc;</font>
|
||||
<font color="#008b8b">+}</font>
|
||||
|
||||
/* forms */
|
||||
.row {
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,808 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links 3.2.0 -> 3.3.0 "luna" template set diff</title>
|
||||
<meta name="Generator" content="Vim/7.2">
|
||||
</head>
|
||||
<body bgcolor="#ffffff" text="#000000">
|
||||
<pre>
|
||||
<font color="#2e8b57"><b>Index: luna/add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/add_success.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/add_success.html 23 Aug 2006 20:53:31 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/add_success.html 6 Sep 2007 01:36:04 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -46,15 +46,15 @@</b></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Description:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Description%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Description%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Contact Name:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Contact_Name%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Contact_Name%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Contact E-mail:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Contact_Email%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Contact_Email%></div></font>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_folder_view.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/bookmark_folder_view.html,v
|
||||
retrieving revision 1.18
|
||||
retrieving revision 1.19
|
||||
<font color="#2e8b57"><b>diff -u -r1.18 -r1.19</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_folder_view.html 23 Aug 2006 20:53:31 -0000 1.18</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_folder_view.html 6 Sep 2007 01:36:04 -0000 1.19</b></font>
|
||||
<font color="#a52a2a"><b>@@ -2,7 +2,7 @@</b></font>
|
||||
<%~set secondarynav = "bookmark_nav.html"%>
|
||||
<html>
|
||||
<head>
|
||||
<font color="#6a5acd">- <title><%site_title%>: Bookmarks: <%my_folder_username%><%if my_folder_name%>: <%my_folder_name%><%else%>'s Bookmarks<%endif%></title></font>
|
||||
<font color="#008b8b">+ <title><%site_title%>: Bookmarks: <%escape_html my_folder_username%><%if my_folder_name%>: <%my_folder_name%><%else%>'s Bookmarks<%endif%></title></font>
|
||||
<%include include_common_head.html%>
|
||||
</head>
|
||||
<body id="bookmark_folder_view">
|
||||
<font color="#a52a2a"><b>@@ -21,13 +21,13 @@</b></font>
|
||||
<%include include_content_top.html%>
|
||||
|
||||
<div class="crumb"><%Links::Utils::format_title($main_title_loop, separator => $crumb_separator, no_escape_separator => $no_escape_crumb_separator, include_home => 1, link_type => 2)%></div>
|
||||
<font color="#6a5acd">-<h2><%my_folder_username%><%if my_folder_name%>: <%my_folder_name%><%else%>'s Bookmarks<%endif%></h2></font>
|
||||
<font color="#008b8b">+<h2><%escape_html my_folder_username%><%if my_folder_name%>: <%my_folder_name%><%else%>'s Bookmarks<%endif%></h2></font>
|
||||
|
||||
<p>
|
||||
<%~if my_folder_name%>
|
||||
There <%if link_count != 1%>are<%else%>is<%endif%> <%link_count%> link<%if link_count != 1%>s<%endif%> in this folder.
|
||||
<%~else%>
|
||||
<font color="#6a5acd">- <%if my_folder_username eq $user.Username%>You have<%else%><%my_folder_username%> has<%endif%> <%folder_count%> folder<%if folder_count != 1%>s<%endif%> with <%link_count%> link<%if link_count != 1%>s<%endif%>.</font>
|
||||
<font color="#008b8b">+ <%if my_folder_username eq $user.Username%>You have<%else%><%escape_html my_folder_username%> has<%endif%> <%folder_count%> folder<%if folder_count != 1%>s<%endif%> with <%link_count%> link<%if link_count != 1%>s<%endif%>.</font>
|
||||
<%~endif%>
|
||||
</p>
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_link.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/bookmark_link.html,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.4 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_link.html 17 Feb 2005 01:28:34 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_link.html 6 Sep 2007 01:36:04 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -3,8 +3,8 @@</b></font>
|
||||
<%include link.html%>
|
||||
<%~if editable or my_comment%>
|
||||
<p class="comments">
|
||||
<font color="#6a5acd">- <label><%if my_folder_user_username_fk eq $user.Username%>My<%else%><%my_folder_user_username_fk%>'s<%endif%> Comments</font>
|
||||
<font color="#6a5acd">- <%~if editable%> <span>(<a href="<%config.db_cgi_url%>/bookmark.cgi?action=edit_bookmark;id=<%my_link_id_fk%>">edit</a>)</span><%endif~%></font>
|
||||
<font color="#008b8b">+ <label><%if my_folder_user_username_fk eq $user.Username%>My<%else%><%escape_html my_folder_user_username_fk%>'s<%endif%> Comments</font>
|
||||
<font color="#008b8b">+ <%~if editable%> <span>(<a href="<%config.db_cgi_url%>/bookmark.cgi?action=edit_bookmark;my_id=<%my_id%>">edit</a>)</span><%endif~%></font>
|
||||
:</label> <%if my_comment%><%my_comment%><%else%><em>none</em><%endif%>
|
||||
</p>
|
||||
<%~endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_link_edit.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/bookmark_link_edit.html,v
|
||||
retrieving revision 1.18
|
||||
retrieving revision 1.19
|
||||
<font color="#2e8b57"><b>diff -u -r1.18 -r1.19</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_link_edit.html 23 Aug 2006 20:53:31 -0000 1.18</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_link_edit.html 26 Oct 2006 19:44:23 -0000 1.19</b></font>
|
||||
<font color="#a52a2a"><b>@@ -33,7 +33,7 @@</b></font>
|
||||
|
||||
<form action="<%config.db_cgi_url%>/bookmark.cgi" method="post">
|
||||
<input type="hidden" name="action" value="edit_bookmark" />
|
||||
<font color="#6a5acd">- <input type="hidden" name="id" value="<%escape_html ID%>" /></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="my_id" value="<%escape_html my_id%>" /></font>
|
||||
<div class="row clear">
|
||||
<label for="my_comment" class="name">Comments:</label>
|
||||
<div class="value">
|
||||
<font color="#a52a2a"><b>@@ -47,7 +47,7 @@</b></font>
|
||||
<input type="hidden" name="my_folder_id_fk" value="<%escape_html Folders.0.my_folder_id%>" /><%Folders.0.my_folder_name%>
|
||||
<%~else%>
|
||||
<select id="my_folder_id_fk" name="my_folder_id_fk">
|
||||
<font color="#6a5acd">- <%loop Folders%><option value="<%escape_html my_folder_id%>"<%if my_folder_default%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
<font color="#008b8b">+ <%loop Folders%><option value="<%escape_html my_folder_id%>"<%if my_folder_id_fk == $my_folder_id%> selected="selected"<%endif%>><%my_folder_name%></option><%endloop%></font>
|
||||
</select>
|
||||
<%~endif%>
|
||||
</div>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/bookmark_list.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_list.html 23 Aug 2006 20:53:31 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_list.html 26 Oct 2006 19:44:23 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -54,7 +54,7 @@</b></font>
|
||||
<input type="hidden" name="action" value="links_manage" />
|
||||
<input type="hidden" name="my_folder_id" value="<%escape_html my_folder_id%>" />
|
||||
<%~loop Bookmarks%>
|
||||
<font color="#6a5acd">- <input type="checkbox" name="m-id" value="<%escape_html ID%>" class="checkbox" /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" name="my_id" value="<%escape_html my_id%>" class="checkbox" /></font>
|
||||
<%~set editable = 1%>
|
||||
<%include bookmark_link.html%>
|
||||
<%~endloop%>
|
||||
<font color="#2e8b57"><b>Index: luna/bookmark_users.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/bookmark_users.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/bookmark_users.html 23 Aug 2006 20:53:31 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/bookmark_users.html 6 Sep 2007 01:36:04 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -36,7 +36,7 @@</b></font>
|
||||
<%if users~%>
|
||||
<ul>
|
||||
<%~loop users%>
|
||||
<font color="#6a5acd">- <li><a href="<%config.db_cgi_url%>/bookmark.cgi?action=users_folder;my_folder_username=<%my_folder_user_username_fk%>"><%my_folder_user_username_fk%></a> (<%public_folders%> folder<%if public_folders != 1%>s<%endif%> with <%public_links%> link<%if public_links != 1%>s<%endif%>)</li></font>
|
||||
<font color="#008b8b">+ <li><a href="<%config.db_cgi_url%>/bookmark.cgi?action=users_folder;my_folder_username=<%escape_url my_folder_user_username_fk%>"><%escape_html my_folder_user_username_fk%></a> (<%public_folders%> folder<%if public_folders != 1%>s<%endif%> with <%public_links%> link<%if public_links != 1%>s<%endif%>)</li></font>
|
||||
<%~endloop%>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/category.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/category.html,v
|
||||
retrieving revision 1.31
|
||||
retrieving revision 1.32
|
||||
<font color="#2e8b57"><b>diff -u -r1.31 -r1.32</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/category.html 23 Aug 2006 20:53:31 -0000 1.31</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/category.html 6 Sep 2007 01:36:04 -0000 1.32</b></font>
|
||||
<font color="#a52a2a"><b>@@ -66,7 +66,7 @@</b></font>
|
||||
<h3>Editors</h3>
|
||||
<ul>
|
||||
<%~loop editors_loop%>
|
||||
<font color="#6a5acd">- <li><%Username%></li></font>
|
||||
<font color="#008b8b">+ <li><%escape_html Username%></li></font>
|
||||
<%~endloop%>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/detailed.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/detailed.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/detailed.html 23 Aug 2006 20:53:31 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/detailed.html 6 Sep 2007 01:36:04 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -46,7 +46,7 @@</b></font>
|
||||
<%if Description%><p class="description"><%Description%></p><%endif%>
|
||||
|
||||
<p class="info">
|
||||
<font color="#6a5acd">- Submitted by: <%LinkOwner%><br /></font>
|
||||
<font color="#008b8b">+ Submitted by: <%escape_html LinkOwner%><br /></font>
|
||||
Hits: <%Hits%><br />
|
||||
Added: <%Add_Date%><br />
|
||||
<%if Add_Date ne $Mod_Date%>Last Modified: <%Mod_Date%><br /><%endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/include_form.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/include_form.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/include_form.html 19 Aug 2006 03:23:10 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/include_form.html 15 Nov 2007 01:41:26 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -11,7 +11,7 @@</b></font>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row<%unless category_loop_selected%> required<%endunless%> clear">
|
||||
<font color="#6a5acd">- <label for="CatLinks.CategoryID" class="name">Category:<%unless category_loop_selected%> <span>*</span><%endunless%></label></font>
|
||||
<font color="#008b8b">+ <label class="name">Category:<%unless category_loop_selected%> <span>*</span><%endunless%></label></font>
|
||||
<div class="value wrappedtext">
|
||||
<%~if config.db_gen_category_list == 2%>
|
||||
<script type="text/javascript" src="<%config.build_static_url%>/treecats.js"></script>
|
||||
<font color="#a52a2a"><b>@@ -31,7 +31,7 @@</b></font>
|
||||
</noscript>
|
||||
<div id="treecats"></div>
|
||||
<script type="text/javascript">
|
||||
<font color="#6a5acd">- var tc = new treecats({ <%-- selectionMode : 'multiple', --%> cgiURL : '<%config.db_cgi_url%>', imageURL : '<%config.build_static_url%>/<%t%>/images' });</font>
|
||||
<font color="#008b8b">+ var tc = new treecats({ <%-- selectionMode : 'multiple', --%> cgiURL : '<%config.db_cgi_url%>', cgiQueryString : '<%url_hidden%>', imageURL : '<%config.build_static_url%>/<%t%>/images' });</font>
|
||||
tc.load();
|
||||
</script>
|
||||
<%~elsif category_loop_selected%>
|
||||
<font color="#2e8b57"><b>Index: luna/include_header.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/include_header.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/include_header.html 18 Apr 2005 21:39:36 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/include_header.html 19 Dec 2007 07:06:36 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,15 +1,15 @@</b></font>
|
||||
<div id="header">
|
||||
<div id="loginbar"><a href="<%config.db_cgi_url%>/user.cgi<%if user.Username%>?logout=1<%endif%>" class="<%if user.Username%>in<%else%>out<%endif%>"><%if user.Username%>Logout<%else%>Login/Register<%endif%></a></div>
|
||||
<font color="#6a5acd">- <div id="logo"><h1><a href="<%config.build_root_url%>"><%site_title%></a></h1></div></font>
|
||||
<font color="#008b8b">+ <div id="logo"><h1><a href="<%config.build_root_url%>/<%home_index%>"><%site_title%></a></h1></div></font>
|
||||
</div>
|
||||
<div class="navbar clear">
|
||||
<ul class="primarynav">
|
||||
<font color="#6a5acd">- <li class="home"><a href="<%config.build_root_url%>">Home</a></li></font>
|
||||
<font color="#008b8b">+ <li class="home"><a href="<%config.build_root_url%>/<%home_index%>">Home</a></li></font>
|
||||
<li><a href="<%config.db_cgi_url%>/add.cgi<%if category_id%>?ID=<%category_id%><%endif%>">Add a Link</a></li>
|
||||
<li><a href="<%config.db_cgi_url%>/modify.cgi<%if category_id%>?ID=<%category_id%><%endif%>">Modify a Link</a></li>
|
||||
<font color="#6a5acd">- <li><a href="<%config.build_root_url%>/New/">New Links</a></li></font>
|
||||
<font color="#6a5acd">- <li><a href="<%config.build_root_url%>/Cool/">Cool Links</a></li></font>
|
||||
<font color="#6a5acd">- <li><a href="<%config.build_root_url%>/Ratings/">Top Rated</a></li></font>
|
||||
<font color="#008b8b">+ <li><a href="<%config.build_new_url%>/">New Links</a></li></font>
|
||||
<font color="#008b8b">+ <li><a href="<%config.build_cool_url%>/">Cool Links</a></li></font>
|
||||
<font color="#008b8b">+ <li><a href="<%config.build_ratings_url%>/">Top Rated</a></li></font>
|
||||
<li><a href="<%config.db_cgi_url%>/jump.cgi?ID=random<%if config.build_detailed%>;Detailed=1<%endif%>">Random Link</a></li>
|
||||
<%if config.newsletter_enabled%><li><a href="<%config.db_cgi_url%>/subscribe.cgi">Newsletter</a></li><%endif%>
|
||||
<%if config.bookmark_enabled%><li><a href="<%config.db_cgi_url%>/bookmark.cgi">Bookmarks</a></li><%endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/jump.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/jump.html,v
|
||||
retrieving revision 1.2
|
||||
retrieving revision 1.3
|
||||
<font color="#2e8b57"><b>diff -u -r1.2 -r1.3</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/jump.html 25 Feb 2005 06:05:50 -0000 1.2</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/jump.html 6 Sep 2007 01:36:04 -0000 1.3</b></font>
|
||||
<font color="#a52a2a"><b>@@ -4,7 +4,7 @@</b></font>
|
||||
<title><%site_title%>: <%Title%></title>
|
||||
</head>
|
||||
<frameset id="jump" rows="40,*">
|
||||
<font color="#6a5acd">- <frame src="<%config.db_cgi_url%>/jump.cgi?action=jump_frame;ID=<%ID%>" scrolling="no" noresize="noresize" /></font>
|
||||
<font color="#008b8b">+ <frame src="<%config.db_cgi_url%>/jump.cgi?action=jump_frame;ID=<%escape_html ID%>" scrolling="no" noresize="noresize" /></font>
|
||||
<frame src="<%destination%>" />
|
||||
<noframes>
|
||||
<body>
|
||||
<font color="#2e8b57"><b>Index: luna/jump_frame.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/jump_frame.html,v
|
||||
retrieving revision 1.7
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.7 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/jump_frame.html 4 Jul 2005 23:12:23 -0000 1.7</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/jump_frame.html 19 Dec 2007 07:06:36 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -7,7 +7,7 @@</b></font>
|
||||
</head>
|
||||
<body id="jump_frame">
|
||||
<div class="jumpwrapper">
|
||||
<font color="#6a5acd">- <a href="<%config.build_root_url%>"><img src="<%Links::Utils::image_url('logo-small.gif')%>" class="jumplogo" alt="<%site_title%>" /></a></font>
|
||||
<font color="#008b8b">+ <a href="<%config.build_root_url%>/<%home_index%>"><img src="<%Links::Utils::image_url('logo-small.gif')%>" class="jumplogo" alt="<%site_title%>" /></a></font>
|
||||
|
||||
<%if error%>
|
||||
<p class="errormessage">
|
||||
<font color="#2e8b57"><b>Index: luna/link_added.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/link_added.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_added.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_added.eml 19 Dec 2007 07:06:36 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,13 +16,13 @@</b></font>
|
||||
|
||||
You can see your new listing at:
|
||||
|
||||
<font color="#6a5acd">- <%config.build_root_url%></font>
|
||||
<font color="#008b8b">+ <%config.build_root_url%>/<%home_index%></font>
|
||||
|
||||
Should you have any questions, please don't hesitate to ask.
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : link_added.eml
|
||||
<font color="#2e8b57"><b>Index: luna/link_expired.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/link_expired.eml,v
|
||||
retrieving revision 1.7
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.7 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_expired.eml 27 Oct 2005 23:25:24 -0000 1.7</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_expired.eml 26 Aug 2006 03:22:15 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : link_expired.eml
|
||||
<font color="#2e8b57"><b>Index: luna/link_expiry_notify.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/link_expiry_notify.eml,v
|
||||
retrieving revision 1.8
|
||||
retrieving revision 1.9
|
||||
<font color="#2e8b57"><b>diff -u -r1.8 -r1.9</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_expiry_notify.eml 27 Oct 2005 23:25:24 -0000 1.8</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_expiry_notify.eml 26 Aug 2006 03:22:15 -0000 1.9</b></font>
|
||||
<font color="#a52a2a"><b>@@ -15,7 +15,7 @@</b></font>
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : link_expiry_notify.eml
|
||||
<font color="#2e8b57"><b>Index: luna/link_modified.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/link_modified.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_modified.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_modified.eml 19 Dec 2007 07:06:36 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,13 +16,13 @@</b></font>
|
||||
|
||||
You can see your updated listing at:
|
||||
|
||||
<font color="#6a5acd">- <%config.build_root_url%></font>
|
||||
<font color="#6a5acd">- </font>
|
||||
<font color="#008b8b">+ <%config.build_root_url%>/<%home_index%></font>
|
||||
<font color="#008b8b">+</font>
|
||||
Should you have any questions, please don't hesitate to ask.
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : link_modified.eml
|
||||
<font color="#2e8b57"><b>Index: luna/link_rejected.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/link_rejected.eml,v
|
||||
retrieving revision 1.4
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.4 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/link_rejected.eml 27 Oct 2005 23:25:24 -0000 1.4</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/link_rejected.eml 26 Aug 2006 03:22:15 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
|
||||
If you have any questions, please don't hesitate to ask.
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : link_rejected.eml
|
||||
<font color="#2e8b57"><b>Index: luna/login.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/login.html,v
|
||||
retrieving revision 1.21
|
||||
retrieving revision 1.24
|
||||
<font color="#2e8b57"><b>diff -u -r1.21 -r1.24</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/login.html 23 Aug 2006 20:53:31 -0000 1.21</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/login.html 5 Jan 2009 21:19:34 -0000 1.24</b></font>
|
||||
<font color="#a52a2a"><b>@@ -1,7 +1,10 @@</b></font>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<font color="#6a5acd">-<%~if logout and error%></font>
|
||||
<font color="#6a5acd">- <%~set message = $error%></font>
|
||||
<font color="#6a5acd">- <%~set error = ''%></font>
|
||||
<font color="#008b8b">+<%~if error%></font>
|
||||
<font color="#008b8b">+ <%~-- Move $error into $message. Done for backwards compatibility with Links SQL 2.x templates. --%></font>
|
||||
<font color="#008b8b">+ <%~if logout or send_pass or send_validate%></font>
|
||||
<font color="#008b8b">+ <%~set message = $error%></font>
|
||||
<font color="#008b8b">+ <%~set error = ''%></font>
|
||||
<font color="#008b8b">+ <%~endif%></font>
|
||||
<%~endif%>
|
||||
<%~if url and not error%>
|
||||
<%~set error = 'You must first login before you can access that.'%>
|
||||
<font color="#a52a2a"><b>@@ -51,7 +54,7 @@</b></font>
|
||||
<div class="row clear">
|
||||
<label for="Remember" class="name">Remember Me:</label>
|
||||
<div class="value">
|
||||
<font color="#6a5acd">- <input type="checkbox" id="Remember" name="Remember" class="checkbox" /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" id="Remember" name="Remember"<%if Remember%> checked="checked"<%endif%> class="checkbox" /></font>
|
||||
</div>
|
||||
</div>
|
||||
<%~endif%>
|
||||
<font color="#a52a2a"><b>@@ -62,7 +65,9 @@</b></font>
|
||||
|
||||
<p>
|
||||
If you don't have an account, please <a href="<%config.db_cgi_url%>/user.cgi?signup_form=1">register</a>.<br />
|
||||
<font color="#008b8b">+<%~if config.user_allow_pass%></font>
|
||||
If you've forgotten your password, we can <a href="<%config.db_cgi_url%>/user.cgi?email_pass=1">e-mail it to you</a>.
|
||||
<font color="#008b8b">+<%~endif%></font>
|
||||
</p>
|
||||
|
||||
<%include include_content_bottom.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/modify.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/modify.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.20
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.20</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify.html 23 Aug 2006 20:53:31 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify.html 6 Sep 2007 01:36:04 -0000 1.20</b></font>
|
||||
<font color="#a52a2a"><b>@@ -26,8 +26,11 @@</b></font>
|
||||
<input type="hidden" name="modify" value="1" />
|
||||
<%~if LinkID%>
|
||||
<input type="hidden" name="LinkID" value="<%escape_html LinkID%>" />
|
||||
<font color="#008b8b">+ <input type="hidden" name="Current_ID" value="<%escape_html LinkID%>" /></font>
|
||||
<%~else%>
|
||||
<font color="#008b8b">+ <%~if config.db_gen_category_list == 2%></font>
|
||||
<noscript>
|
||||
<font color="#008b8b">+ <%~endif%></font>
|
||||
<p>
|
||||
Please enter the URL of the link you wish to modify. Make sure it is identical to the one already in the database:
|
||||
</p>
|
||||
<font color="#a52a2a"><b>@@ -37,13 +40,14 @@</b></font>
|
||||
<input type="text" name="Current_URL" value="<%if Current_URL%><%escape_html Current_URL%><%endif%>" class="text" />
|
||||
</div>
|
||||
</div>
|
||||
<font color="#008b8b">+ <%~if config.db_gen_category_list == 2%></font>
|
||||
</noscript>
|
||||
<div id="LinkID" class="row required clear" style="display: none">
|
||||
<label class="name">Link: <span>*</span></label>
|
||||
<div class="value wrappedtext">
|
||||
<font color="#6a5acd">-<%~if Current_ID%></font>
|
||||
<font color="#6a5acd">- <input type="hidden" name="Current_ID" value="<%Current_ID%>" /></font>
|
||||
<font color="#6a5acd">-<%~endif%></font>
|
||||
<font color="#008b8b">+ <%~if Current_ID%></font>
|
||||
<font color="#008b8b">+ <input type="hidden" name="Current_ID" value="<%escape_html Current_ID%>" /></font>
|
||||
<font color="#008b8b">+ <%~endif%></font>
|
||||
<script type="text/javascript" src="<%config.build_static_url%>/treecats.js"></script>
|
||||
<div id="treecats-links"></div>
|
||||
<script type="text/javascript">
|
||||
<font color="#a52a2a"><b>@@ -55,6 +59,7 @@</b></font>
|
||||
<script type="text/javascript">
|
||||
document.getElementById('LinkID').style.display = '';
|
||||
</script>
|
||||
<font color="#008b8b">+ <%~endif%></font>
|
||||
<p>
|
||||
Enter the new information (all of it, not just the changes) below:
|
||||
</p>
|
||||
<font color="#2e8b57"><b>Index: luna/modify_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/modify_success.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/modify_success.html 23 Aug 2006 20:53:31 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/modify_success.html 6 Sep 2007 01:36:04 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -50,15 +50,15 @@</b></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Description:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Description%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Description%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Contact Name:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Contact_Name%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Contact_Name%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Contact E-mail:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Contact_Email%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Contact_Email%></div></font>
|
||||
</div>
|
||||
|
||||
<%if not config.user_direct_mod and payment_term ne free%><p>Thank you! We will send you an e-mail once your link has been validated.</p><%endif%>
|
||||
<font color="#2e8b57"><b>Index: luna/newsletter_list.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/newsletter_list.html,v
|
||||
retrieving revision 1.16
|
||||
retrieving revision 1.17
|
||||
<font color="#2e8b57"><b>diff -u -r1.16 -r1.17</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/newsletter_list.html 23 Aug 2006 20:53:31 -0000 1.16</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/newsletter_list.html 6 Sep 2007 01:36:04 -0000 1.17</b></font>
|
||||
<font color="#a52a2a"><b>@@ -41,7 +41,7 @@</b></font>
|
||||
<input type="hidden" name="page" value="newsletter_list" />
|
||||
<%if subscribed.length > 1%><input type="checkbox" id="checkall" class="checkbox" /> <label for="checkall"><strong>Select All</strong></label><br /><%endif%>
|
||||
<%loop subscribed~%>
|
||||
<font color="#6a5acd">- <input type="checkbox" id="ID-<%CategoryID%>" name="ID" value="<%escape_html CategoryID%>" class="checkbox" /> <label for="ID-<%CategoryID%>"><%Full_Name%></label><br /></font>
|
||||
<font color="#008b8b">+ <input type="checkbox" id="ID-<%escape_html CategoryID%>" name="ID" value="<%escape_html CategoryID%>" class="checkbox" /> <label for="ID-<%escape_html CategoryID%>"><%Full_Name%></label><br /></font>
|
||||
<%~endloop%>
|
||||
<input type="submit" value="Unsubscribe" class="submit" />
|
||||
</form>
|
||||
<font color="#2e8b57"><b>Index: luna/password.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/password.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/password.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/password.eml 26 Aug 2006 03:22:15 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -14,7 +14,7 @@</b></font>
|
||||
|
||||
Hope that helps,
|
||||
|
||||
<font color="#6a5acd">-Link Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : password.eml
|
||||
<font color="#2e8b57"><b>Index: luna/payment_direct.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/payment_direct.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_direct.html 23 Aug 2006 20:53:31 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_direct.html 19 Dec 2007 07:05:20 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -2,7 +2,7 @@</b></font>
|
||||
<html>
|
||||
<head>
|
||||
<title><%site_title%>: Payment Confirmation</title>
|
||||
<font color="#6a5acd">- <meta http-equiv="refresh" content="5;url=<%Links::transform_url($config.build_root_url, '', '&')%>" /></font>
|
||||
<font color="#008b8b">+ <meta http-equiv="refresh" content="5;url=<%Links::transform_url("${config.build_root_url}$home_index", '', '&')%>" /></font>
|
||||
<%include include_common_head.html%>
|
||||
</head>
|
||||
<body id="payment_direct">
|
||||
<font color="#a52a2a"><b>@@ -26,7 +26,7 @@</b></font>
|
||||
<p>
|
||||
Your payment has been approved, and your link enabled. You will be redirected
|
||||
to the main page shortly. If this does not happen, click
|
||||
<font color="#6a5acd">- <a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+ <a href="<%config.build_root_url%>/<%build_index%>">here</a>.</font>
|
||||
</p>
|
||||
|
||||
<%include include_content_bottom.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_manual_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/payment_manual_include.html,v
|
||||
retrieving revision 1.3
|
||||
retrieving revision 1.5
|
||||
<font color="#2e8b57"><b>diff -u -r1.3 -r1.5</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_manual_include.html 4 Mar 2005 00:45:17 -0000 1.3</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_manual_include.html 19 Dec 2007 07:06:36 -0000 1.5</b></font>
|
||||
<font color="#a52a2a"><b>@@ -6,7 +6,7 @@</b></font>
|
||||
with your payment:
|
||||
</p>
|
||||
<p>
|
||||
<font color="#6a5acd">- Link ID: <%ID%><br /></font>
|
||||
<font color="#6a5acd">- Payment ID: <%unique_id%></font>
|
||||
<font color="#008b8b">+ Link ID: <%escape_html ID%><br /></font>
|
||||
<font color="#008b8b">+ Payment ID: <%escape_html unique_id%></font>
|
||||
</p>
|
||||
<font color="#6a5acd">-<input type="button" value="Done" onclick="window.location='<%Links::transform_url($config.build_root_url)%>'" /></font>
|
||||
<font color="#008b8b">+<input type="button" value="Done" onclick="window.location='<%Links::transform_url("${config.build_root_url}$home_index")%>'" /></font>
|
||||
<font color="#2e8b57"><b>Index: luna/payment_received.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/payment_received.eml,v
|
||||
retrieving revision 1.6
|
||||
retrieving revision 1.8
|
||||
<font color="#2e8b57"><b>diff -u -r1.6 -r1.8</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_received.eml 27 Oct 2005 23:25:24 -0000 1.6</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_received.eml 19 Dec 2007 07:06:36 -0000 1.8</b></font>
|
||||
<font color="#a52a2a"><b>@@ -16,13 +16,13 @@</b></font>
|
||||
|
||||
You can see your new listing at:
|
||||
|
||||
<font color="#6a5acd">- <%config.build_root_url%></font>
|
||||
<font color="#008b8b">+ <%config.build_root_url%>/<%home_index%></font>
|
||||
|
||||
Should you have any questions, please don't hesitate to ask.
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : payment_received.eml
|
||||
<font color="#2e8b57"><b>Index: luna/payment_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/payment_success.html,v
|
||||
retrieving revision 1.14
|
||||
retrieving revision 1.15
|
||||
<font color="#2e8b57"><b>diff -u -r1.14 -r1.15</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/payment_success.html 23 Aug 2006 20:53:31 -0000 1.14</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/payment_success.html 19 Dec 2007 07:05:20 -0000 1.15</b></font>
|
||||
<font color="#a52a2a"><b>@@ -2,7 +2,7 @@</b></font>
|
||||
<html>
|
||||
<head>
|
||||
<title><%site_title%>: Payment Confirmation</title>
|
||||
<font color="#6a5acd">- <meta http-equiv="refresh" content="5;url=<%Links::transform_url($config.build_root_url, '', '&')%>" /></font>
|
||||
<font color="#008b8b">+ <meta http-equiv="refresh" content="5;url=<%Links::transform_url("${config.build_root_url}$home_index", '', '&')%>" /></font>
|
||||
<%include include_common_head.html%>
|
||||
</head>
|
||||
<body id="payment_success">
|
||||
<font color="#a52a2a"><b>@@ -25,7 +25,7 @@</b></font>
|
||||
|
||||
<p>
|
||||
Your payment has been approved. You will be redirected to the main page shortly.
|
||||
<font color="#6a5acd">- If this does not happen, click <a href="<%Links::transform_url($config.build_root_url)%>">here</a>.</font>
|
||||
<font color="#008b8b">+ If this does not happen, click <a href="<%config.build_root_url%>/<%home_index%>">here</a>.</font>
|
||||
</p>
|
||||
|
||||
<%include include_content_bottom.html%>
|
||||
<font color="#2e8b57"><b>Index: luna/review_add_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/review_add_success.html,v
|
||||
retrieving revision 1.17
|
||||
retrieving revision 1.18
|
||||
<font color="#2e8b57"><b>diff -u -r1.17 -r1.18</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_add_success.html 23 Aug 2006 20:53:31 -0000 1.17</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_add_success.html 6 Sep 2007 01:36:04 -0000 1.18</b></font>
|
||||
<font color="#a52a2a"><b>@@ -29,29 +29,29 @@</b></font>
|
||||
<%~if Review_Rating%>
|
||||
<div class="row clear">
|
||||
<label class="name">Rating:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Rating%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_Rating%></div></font>
|
||||
</div>
|
||||
<%~endif%>
|
||||
<div class="row clear">
|
||||
<label class="name">Subject:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Subject%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_Subject%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">By Line:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_ByLine%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_ByLine%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Review:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Contents%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%if config.review_convert_br_tags%><%Review_Contents%><%else%><%escape_html Review_Contents%><%endif%></div></font>
|
||||
</div>
|
||||
<%~if not config.user_review_required and not user.Username%>
|
||||
<div class="row clear">
|
||||
<label class="name">Name:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_GuestName%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_GuestName%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">E-mail:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_GuestEmail%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_GuestEmail%></div></font>
|
||||
</div>
|
||||
<%~endif%>
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/review_added.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/review_added.eml,v
|
||||
retrieving revision 1.9
|
||||
retrieving revision 1.10
|
||||
<font color="#2e8b57"><b>diff -u -r1.9 -r1.10</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_added.eml 15 Aug 2006 00:21:19 -0000 1.9</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_added.eml 26 Aug 2006 03:22:15 -0000 1.10</b></font>
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : review_added.eml
|
||||
<font color="#2e8b57"><b>Index: luna/review_edit_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/review_edit_success.html,v
|
||||
retrieving revision 1.12
|
||||
retrieving revision 1.13
|
||||
<font color="#2e8b57"><b>diff -u -r1.12 -r1.13</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_edit_success.html 23 Aug 2006 20:53:31 -0000 1.12</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_edit_success.html 6 Sep 2007 01:36:04 -0000 1.13</b></font>
|
||||
<font color="#a52a2a"><b>@@ -26,21 +26,23 @@</b></font>
|
||||
We have received the following review:
|
||||
</p>
|
||||
|
||||
<font color="#008b8b">+<%~if Review_Rating%></font>
|
||||
<div class="row clear">
|
||||
<label class="name">Rating:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Rating%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_Rating%></div></font>
|
||||
</div>
|
||||
<font color="#008b8b">+<%~endif%></font>
|
||||
<div class="row clear">
|
||||
<label class="name">Subject:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Subject%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_Subject%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">By Line:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_ByLine%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%escape_html Review_ByLine%></div></font>
|
||||
</div>
|
||||
<div class="row clear">
|
||||
<label class="name">Review:</label>
|
||||
<font color="#6a5acd">- <div class="value wrappedtext"><%Review_Contents%></div></font>
|
||||
<font color="#008b8b">+ <div class="value wrappedtext"><%if config.review_convert_br_tags%><%Review_Contents%><%else%><%escape_html Review_Contents%><%endif%></div></font>
|
||||
</div>
|
||||
|
||||
<p>
|
||||
<font color="#2e8b57"><b>Index: luna/review_include.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/review_include.html,v
|
||||
retrieving revision 1.15
|
||||
retrieving revision 1.16
|
||||
<font color="#2e8b57"><b>diff -u -r1.15 -r1.16</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_include.html 27 Jul 2006 04:29:57 -0000 1.15</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_include.html 6 Sep 2007 01:36:04 -0000 1.16</b></font>
|
||||
<font color="#a52a2a"><b>@@ -6,13 +6,13 @@</b></font>
|
||||
<%~set ID = ''%>
|
||||
<%~endif%>
|
||||
<h4 class="reviewsubject">
|
||||
<font color="#6a5acd">- <%Review_Subject%><%if Review_CanModify%> <span class="hsmall">(<a href="<%config.db_cgi_url%>/review.cgi?edit_review=1;ID=<%Review_LinkID%>;ReviewID=<%ReviewID%>;confirmed=1">edit</a>)</span><%endif%></font>
|
||||
<font color="#008b8b">+ <%escape_html Review_Subject%><%if Review_CanModify%> <span class="hsmall">(<a href="<%config.db_cgi_url%>/review.cgi?edit_review=1;ID=<%Review_LinkID%>;ReviewID=<%ReviewID%>;confirmed=1">edit</a>)</span><%endif%></font>
|
||||
<img src="<%Links::Utils::image_url("stars-5-${Review_Rating}.gif")%>" alt="<%Review_Rating%> out of 5 stars" title="<%Review_Rating%> out of 5 stars" />
|
||||
<%if Review_IsNew%><span class="new-item"><span>new</span></span><%endif%>
|
||||
</h4>
|
||||
<%~if Review_ByLine%>
|
||||
<h5 class="reviewbyline">
|
||||
<font color="#6a5acd">- <%Review_ByLine%></font>
|
||||
<font color="#008b8b">+ <%escape_html Review_ByLine%></font>
|
||||
</h5>
|
||||
<%~endif%>
|
||||
<p class="reviewer">
|
||||
<font color="#a52a2a"><b>@@ -20,7 +20,11 @@</b></font>
|
||||
</p>
|
||||
<%~if Review_Contents%>
|
||||
<div class="reviewcontent">
|
||||
<font color="#008b8b">+ <%~if config.review_convert_br_tags%></font>
|
||||
<%Review_Contents%>
|
||||
<font color="#008b8b">+ <%~else%></font>
|
||||
<font color="#008b8b">+ <%escape_html Review_Contents%></font>
|
||||
<font color="#008b8b">+ <%~endif%></font>
|
||||
</div>
|
||||
<%~endif%>
|
||||
<div class="reviewhelpful clear">
|
||||
<font color="#2e8b57"><b>Index: luna/review_rejected.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/review_rejected.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/review_rejected.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/review_rejected.eml 26 Aug 2006 03:22:15 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -19,7 +19,7 @@</b></font>
|
||||
|
||||
If you have any questions, please don't hesitate to ask.
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : review_rejected.eml
|
||||
<font color="#2e8b57"><b>Index: luna/signup_success.html</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/signup_success.html,v
|
||||
retrieving revision 1.13
|
||||
retrieving revision 1.14
|
||||
<font color="#2e8b57"><b>diff -u -r1.13 -r1.14</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/signup_success.html 23 Aug 2006 20:53:31 -0000 1.13</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/signup_success.html 6 Sep 2007 01:36:04 -0000 1.14</b></font>
|
||||
<font color="#a52a2a"><b>@@ -27,7 +27,7 @@</b></font>
|
||||
<%~if Validation%>
|
||||
Thanks for signing up, an e-mail has been sent to you with a validation code. Once you receive it, you'll need to enter a <a href="<%config.db_cgi_url%>/user.cgi?validate=1">validation code</a>
|
||||
<%~else%>
|
||||
<font color="#6a5acd">- You are now logged into <%site_title%> as '<%user.Username%>'.</font>
|
||||
<font color="#008b8b">+ You are now logged into <%site_title%> as '<%escape_html user.Username%>'.</font>
|
||||
<%~endif%>
|
||||
</p>
|
||||
|
||||
<font color="#2e8b57"><b>Index: luna/validate.eml</b></font>
|
||||
===================================================================
|
||||
RCS file: glinks/cgi/admin/templates/luna/validate.eml,v
|
||||
retrieving revision 1.5
|
||||
retrieving revision 1.6
|
||||
<font color="#2e8b57"><b>diff -u -r1.5 -r1.6</b></font>
|
||||
<font color="#2e8b57"><b>--- luna/validate.eml 27 Oct 2005 23:25:24 -0000 1.5</b></font>
|
||||
<font color="#2e8b57"><b>+++ luna/validate.eml 26 Aug 2006 03:22:15 -0000 1.6</b></font>
|
||||
<font color="#a52a2a"><b>@@ -7,7 +7,7 @@</b></font>
|
||||
Thank you for registering. To activate your account, simply go to:
|
||||
|
||||
<%config.db_cgi_url%>/user.cgi?validate=1
|
||||
<font color="#6a5acd">- </font>
|
||||
<font color="#008b8b">+</font>
|
||||
and enter the following code:
|
||||
|
||||
<%Validation%>
|
||||
<font color="#a52a2a"><b>@@ -16,7 +16,7 @@</b></font>
|
||||
|
||||
Sincerely,
|
||||
|
||||
<font color="#6a5acd">-Links Manager</font>
|
||||
<font color="#008b8b">+<%site_title%></font>
|
||||
|
||||
<%~--
|
||||
File : validate.eml
|
||||
</pre>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,2 @@
|
||||
These are admin templates and control the look and feel of your admin panel. You should not normally need to change these.
|
||||
|
@ -0,0 +1,10 @@
|
||||
<div class="lnks clearfix">
|
||||
<span class="action-pos">Show Position <select name="Position-<%ID%>"><option value="hide">Hide</option><%loop 1 .. 10 %><option value="<%loop_value%>"<%if selected == $loop_value%> selected="selected"<%endif%>><%loop_value%></option><%endloop%></select></span>
|
||||
<span class="action-lnks">
|
||||
#<%ID%>:
|
||||
<a href="admin.cgi?do=plugin;plugin=Widgets;func=modify;ID=<%ID%><%if in.page%>;page=<%in.page%><%endif%>">Edit</a>
|
||||
<%~if not no_links%>
|
||||
| <a href="admin.cgi?do=plugin;plugin=Widgets;func=delete;ID=<%ID%><%if in.page%>;page=<%in.page%><%endif%>" rel="delete">Delete</a>
|
||||
<%~endif%>
|
||||
</span>
|
||||
</div>
|
@ -0,0 +1,39 @@
|
||||
<div class="widget-row">
|
||||
<%~if Widget eq 'poll'%>
|
||||
<div id="poll_widget" data="<%Forum%>"></div>
|
||||
<%~elsif Widget eq 'feature_threads'%>
|
||||
<%include ../twitch/_widget_threads.html%>
|
||||
<%~else%>
|
||||
<div class="widget<%if Widget eq 'feature_article'%> widget-fullwidth<%elsif Widget eq 'collapse'%> collapse widget-full<%endif%>">
|
||||
<%if Widget eq 'collapse'%>
|
||||
<a rel="hottopic"<%if TitleStyle%> style="<%TitleStyle%>"<%endif%> class="lnk"><%Title%> <i class="sprite-arrow-down-b"></i></a>
|
||||
<div class="tagwidget">
|
||||
<%~if Subtitle%><%Subtitle%><%endif%>
|
||||
<%if Image%><%if URL%><a href="<%URL%>"><%endif%><img width="300" height="166" src="<%Image_URL%>" class="img-responsive" /><%if URL%></a><%endif%><%endif%>
|
||||
<%if Button%><br /><div class="center"><a href="<%URL%>" class="btn"><%Button%></a></div><%endif%>
|
||||
</div>
|
||||
<%else%>
|
||||
<h2<%if TitleStyle%> style="<%TitleStyle%>"<%endif%>><%Title%></h2>
|
||||
<%~if Subtitle%><div class="description"><%Subtitle%></div><%endif%>
|
||||
<%~if Widget eq 'newsletter'%>
|
||||
<%include ../twitch/_widget_newsletter.html%>
|
||||
<%~elsif Widget eq 'calculators'%>
|
||||
<%include ../twitch/_widget_calculators.html%>
|
||||
<%~elsif Widget eq 'local_listings'%>
|
||||
<%include ../twitch/_widget_local_listings.html%>
|
||||
<%~elsif Widget eq 'category_list'%>
|
||||
<%include ../twitch/_widget_category_list.html%>
|
||||
<%~elsif Widget eq 'editors_pick'%>
|
||||
<%include ../twitch/_widget_editors_pick.html%>
|
||||
<%~elsif Widget eq 'feature_article'%>
|
||||
<%include ../twitch/_widget_feature_article.html%>
|
||||
<%elsif Widget eq 'most_popular'%>
|
||||
<%include ../twitch/_widget_most_popular.html%>
|
||||
<%elsif Widget eq 'external'%>
|
||||
<%include ../twitch/_widget_external.html%>
|
||||
<%~endif%>
|
||||
<%endif%>
|
||||
</div><!-- end widget -->
|
||||
<%~endif%>
|
||||
<%include _widget_actions.html%>
|
||||
</div>
|
@ -0,0 +1,9 @@
|
||||
<div class="widget-row">
|
||||
<div class="widget widget-fullwidth">
|
||||
<%if Title%><h2<%if TitleStyle%> style="<%TitleStyle%>"<%endif%>><%Title%></h2><%endif%>
|
||||
<%if Subtitle%><div class="description"><%Subtitle%></div><%endif%>
|
||||
<%if Image%><%if URL%><a href="<%URL%>"><%endif%><img width="300" height="166" src="<%Image_URL%>" class="img-responsive" /><%if URL%></a><%endif%><%endif%>
|
||||
<%if Button%><br /><div class="center"><a href="<%URL%>" class="btn"><%Button%></a></div><%endif%>
|
||||
</div>
|
||||
<%include _widget_actions.html%>
|
||||
</div>
|
@ -0,0 +1,17 @@
|
||||
<div class="widget-pages">
|
||||
<p>This widget will appear on: <b><%pages.length || 0%></b> page(s)</p>
|
||||
<%~if pages.length%>
|
||||
<ul>
|
||||
<%~loop pages%>
|
||||
<%~if Page > 0%>
|
||||
<%~set cat = Plugins::UI::fetch_category($Page)%>
|
||||
<%~if cat%>
|
||||
<li><a href="admin.cgi?do=plugin;plugin=Widgets;func=widgets;page=<%Page%>"><%cat.Full_Name%></a></li>
|
||||
<%~endif%>
|
||||
<%~else%>
|
||||
<li><a href="admin.cgi?do=plugin;plugin=Widgets;func=widgets;page=<%Page%>"><%if Page eq 'home'%>Home<%elsif Page eq 'category'%>Category<%elsif Page eq 'subcategory'%>Subcategory<%elsif Page 'Article'%>Article<%endif%> Page</a></li>
|
||||
<%~endif%>
|
||||
<%~endloop%>
|
||||
</ul>
|
||||
<%~endif%>
|
||||
</div>
|
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build</title>
|
||||
</head>
|
||||
|
||||
<frameset framespacing="0" border="0" cols="150,*" frameborder="0">
|
||||
<frame name="left" scrolling="auto" src="admin.cgi?page=build_nav.html">
|
||||
<frame name="content" scrolling="auto" src="admin.cgi?page=build_help.html">
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<p>Gossamer Links requires a frames compatible browser.</p>
|
||||
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
|
||||
</html>
|
@ -0,0 +1,128 @@
|
||||
<%Links::Tools::editor_size%>
|
||||
<%set font_tag = '<font face="Tahoma,Arial,Helvetica" size="2">'%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links - Build - CSS Editor</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
<%if not css_dir or css_dir contains '..' or css_dir contains '/' or css_dir contains '\\'%>
|
||||
<%set css_dir = Links::template_set%>
|
||||
<%endif%>
|
||||
<!--
|
||||
-->
|
||||
<%set demo = 0%>
|
||||
<%set setcookie = 'set-cookie'%>
|
||||
<%if action eq 'load'%>
|
||||
<%Links::Tools::css_editor(
|
||||
action => 'load',
|
||||
css_dir => $css_dir,
|
||||
css_file => $css_file
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to load CSS: $error"%>
|
||||
<%else%>
|
||||
<%set displaying_css = 1%>
|
||||
<%endif%>
|
||||
<%elsif action eq 'save'%>
|
||||
<%if save_as%>
|
||||
<%set css_file = $save_as%>
|
||||
<%endif%>
|
||||
<%if css_file ne 'luna_core.css'%>
|
||||
<%Links::Tools::css_editor(
|
||||
action => 'save',
|
||||
css_dir => $css_dir,
|
||||
css_file => $css_file,
|
||||
css => $css,
|
||||
demo => $demo
|
||||
)%>
|
||||
<%else%>
|
||||
<%set error = "You should not be modifying this file, please save your changes in the luna.css file."%>
|
||||
<%endif%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to save CSS: $error"%>
|
||||
<%set displaying_css = 1%>
|
||||
<%else%>
|
||||
<%set success_message = "CSS file saved sucessfully"%>
|
||||
<%Links::Tools::css_editor(
|
||||
action => 'load',
|
||||
css_dir => $css_dir,
|
||||
css_file => $css_file
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to load CSS: $error"%>
|
||||
<%else%>
|
||||
<%set displaying_css = 1%>
|
||||
<%endif%>
|
||||
<%endif%>
|
||||
<%elsif action eq 'delete'%>
|
||||
<%Links::Tools::css_editor(
|
||||
action => 'delete',
|
||||
css_dir => $css_dir,
|
||||
css_file => $css_file,
|
||||
demo => $demo
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to delete CSS: $error"%>
|
||||
<%else%>
|
||||
<%set success_message = "CSS deleted successfully"%>
|
||||
<%endif%>
|
||||
<%elsif in.$setcookie%>
|
||||
<%set displaying_css = 1%>
|
||||
<%endif%>
|
||||
<%set css_dir_exists = 0%>
|
||||
<%Links::Tools::file_select($config.build_static_path, '(?:\.\.?|CVS|admin|browser|fileman)', '', 'd')%>
|
||||
<%if not file_loop.length%>
|
||||
<%set error_message = "Could not find CSS files. Perhaps your build_static_path is incorrect?"%>
|
||||
<%endif%>
|
||||
<body bgcolor="#ffffff">
|
||||
<table border="1" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table bgcolor="#ffffff" border="0" cellpadding="3" cellspacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td align="left" bgcolor="navy">
|
||||
<b><%font_tag%><font color="white">CSS Editor</font></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p align="center"><b><%font_tag%>CSS Editor</font></b></p>
|
||||
<p><%font_tag%>From here you can quickly edit the CSS files for your templates.</font>
|
||||
<%if success_message%><p><%font_tag%><font color="green"><b><%success_message%></b></font></font></p><%endif%>
|
||||
<%if error_message%><p><%font_tag%><font color="red"><b><%error_message%></b></font></font></p><%endif%>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="admin.cgi" method="post" style="margin: 0px">
|
||||
<input type="hidden" name="do" value="page">
|
||||
<input type="hidden" name="page" value="build_css.html">
|
||||
|
||||
<%if file_loop.length%>
|
||||
<table border="1" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table bgcolor="#ffffff" border="0" cellpadding="3" cellspacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td>
|
||||
<p><%font_tag%>Template set: <select id="css_dir" name="css_dir"><%loop file_loop%><option<%if loop_value eq $css_dir%> selected<%set css_dir_exists = 1%><%endif%>><%loop_value%></option><%endloop%></select> <input type="submit" name="action=load_tpl" value="Change"></font></p>
|
||||
<%unless css_dir_exists%><%set css_dir = $file_loop.0%><%endunless%>
|
||||
<%Links::Tools::file_select("${config.build_static_path}/$css_dir", '', '.*\.css', 'f')%>
|
||||
<p><%font_tag%>CSS files: <select id="css_file" name="css_file"><option value="">---</option><%loop file_loop%><option<%if loop_value eq $css_file%> selected<%endif%>><%loop_value%></option><%endloop%></select> <input type="submit" name="action=load" value="Load"> <input type="submit" name="action=delete" value="Delete" onclick="return confirm('Are you sure you want to delete \'' + document.getElementById('css_file').value + '\' from the \'' + document.getElementById('css_dir').value + '\' template set?')"></font></p>
|
||||
<textarea rows="<%editor_rows%>" name="css" cols="<%editor_cols%>" wrap="off"><%if displaying_css%><%escape_html css%><%endif%></textarea>
|
||||
<br>
|
||||
<p><%font_tag%>Save file as: <input type="text" name="save_as" value="<%if css_file%><%css_file%><%endif%>" size="20"><input type="submit" name="action=save" value="Save"></font></p>
|
||||
<p><%font_tag%>Resize Textarea to: <input type="text" name="cookie-editor_rows" value="<%editor_rows%>" size="3"> rows, <input type="text" name="cookie-editor_cols" value="<%editor_cols%>" size="3"> columns <input type="submit" name="set-cookie" value="Change"></font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<%endif%>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,208 @@
|
||||
<%Links::Tools::editor_size%>
|
||||
<%set font_tag = '<font face="Tahoma,Arial,Helvetica" size="2">'%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Email Templates</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
<%set template_root = $config.admin_root_path%>
|
||||
<%set template_root .= "/templates"%>
|
||||
<%set setcookie = 'set-cookie'%>
|
||||
<%if save_template%>
|
||||
<%if save_as%>
|
||||
<%set template_file = $save_as%>
|
||||
<%set tpl_file = $save_as%>
|
||||
<%else%>
|
||||
<%set template_file = $tpl_file%>
|
||||
<%endif%>
|
||||
<!--
|
||||
-->
|
||||
<%GT::Mail::Editor::tpl_save(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $template_file,
|
||||
header => To => $header_To,
|
||||
header => Subject => $header_Subject,
|
||||
header => From => $header_From,
|
||||
extra_headers => $extra_headers,
|
||||
body => $body
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to save template: $error"%>
|
||||
<%set display_template = 1%><%-- All the variables will still be there, left over from whatever we just submitted --%>
|
||||
<%else%>
|
||||
<%set save_as = ""%>
|
||||
<%set success_message = "Template saved successfully"%>
|
||||
<%GT::Mail::Editor::tpl_load(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $template_file,
|
||||
header => To,
|
||||
header => Subject,
|
||||
header => From
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to load template: $error"%>
|
||||
<%else%>
|
||||
<%set displaying_template = 1%>
|
||||
<%endif%>
|
||||
<%endif%>
|
||||
<%elsif load_template%>
|
||||
<%if not tpl_file%>
|
||||
<%set error_message = "Unable to load template: No template selected"%>
|
||||
<%else%>
|
||||
<%GT::Mail::Editor::tpl_load(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $tpl_file,
|
||||
header => To,
|
||||
header => From,
|
||||
header => Subject
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to load template: $error"%>
|
||||
<%else%>
|
||||
<%set displaying_template = 1%>
|
||||
<%endif%>
|
||||
<%endif%>
|
||||
<%elsif restore_template%>
|
||||
<%if not tpl_file%>
|
||||
<%set error_message = "Unable to restore template: No template specified"%>
|
||||
<%else%>
|
||||
<!--
|
||||
-->
|
||||
<%GT::Mail::Editor::tpl_delete(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $tpl_file,
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to restore template: $error"%>
|
||||
<%set displaying_template = 1%>
|
||||
<%else%>
|
||||
<%set success_message = "Template restored successfully"%>
|
||||
<%endif%>
|
||||
|
||||
<%GT::Mail::Editor::tpl_load(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $tpl_file,
|
||||
header => To,
|
||||
header => Subject,
|
||||
header => From
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to load template: $error"%>
|
||||
<%else%>
|
||||
<%set displaying_template = 1%>
|
||||
<%endif%>
|
||||
<%endif%>
|
||||
<%elsif delete_template%>
|
||||
<%if not tpl_file%>
|
||||
<%set error_message = "Unable to delete template: No template specified"%>
|
||||
<%else%>
|
||||
<!--
|
||||
-->
|
||||
<%GT::Mail::Editor::tpl_delete(
|
||||
dir => $template_root,
|
||||
template => $tpl_dir,
|
||||
file => $tpl_file,
|
||||
)%>
|
||||
<%if error%>
|
||||
<%set error_message = "Unable to delete template: $error"%>
|
||||
<%set displaying_template = 1%>
|
||||
<%else%>
|
||||
<%set success_message = "Template deleted successfully"%>
|
||||
<%endif%>
|
||||
<%endif%>
|
||||
<%elsif in.$setcookie%>
|
||||
<%set displaying_template = 1%>
|
||||
<%endif%>
|
||||
|
||||
<body bgcolor="#ffffff">
|
||||
<table border="1" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table bgcolor="#ffffff" border="0" cellpadding="3" cellspacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td align="left" bgcolor="navy">
|
||||
<b><%font_tag%><font color="white">Email Templates</font></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p align="center"><b><%font_tag%>Email Templates</font></b></p>
|
||||
<p><%font_tag%>From here you can quickly edit the e-mail templates for any e-mails sent.</font>
|
||||
<%if success_message%><p><%font_tag%><font color="green"><b><%success_message%></b></font></font></p><%endif%>
|
||||
<%if error_message%><p><%font_tag%><font color="red"><b><%error_message%></b></font></font></p><%endif%>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<form action="admin.cgi" method="post" style="margin: 0px">
|
||||
<input type="hidden" name="do" value="page">
|
||||
<input type="hidden" name="page" value="build_email.html">
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0">
|
||||
<tr>
|
||||
<td>
|
||||
<table bgcolor="#ffffff" border="0" cellpadding="3" cellspacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td>
|
||||
<%Links::Tools::tpl_dir_select($tpl_dir, 'browser')%>
|
||||
<%Links::Tools::tpl_file_select($tpl_dir, '', '.*\.eml')%>
|
||||
<p><%font_tag%>Currently working on template set: <select name="tpl_dir"><%loop template_set_loop%><option<%if dir_selected%> selected<%endif%>><%directory%></option><%endloop%></select> <input type="submit" value="Change" name="change"></font></p>
|
||||
<p><%font_tag%>Available templates: <select name="tpl_file"><option value="">---</option><%loop template_loop%><option value="<%filename%>"<%if filename eq $tpl_file%> selected<%set tpl_local = $local%><%set tpl_new_local = $new_local%><%endif%>><%filename%><%if local and new_local%> *<%elsif local%> +<%endif%></option><%endloop%></select> <input type="submit" value="Load" name="load_template"></font></p>
|
||||
<p><%font_tag%>* modified template<br>
|
||||
+ non-default template</font></p>
|
||||
<%if tpl_local%><p><%font_tag%>Template actions: <%if tpl_new_local%><a href="admin.cgi?do=fileman_diff;cmd_do=cmd_diff;txt_input=local/<%tpl_file%>;c_edit=<%tpl_file%>;work_path=<%tpl_dir%>;hide_back_button=1" target="_blank">diff</a> or <a href="admin.cgi?do=page;page=build_email.html;restore_template=<%escape_url tpl_file%>;tpl_dir=<%escape_url tpl_dir%>;tpl_file=<%escape_url tpl_file%>" onClick="return confirm('Are you sure you want to restore the <%tpl_file%> template?')">Restore</a><%else%><a href="admin.cgi?do=page;page=build_email.html;delete_template=<%escape_url tpl_file%>;tpl_dir=<%escape_url tpl_dir%>;tpl_file=<%escape_url tpl_file%>" onClick="return confirm('Are you sure you want to delete the <%tpl_file%> template?')">Delete</a><%endif%></font></p><%endif%>
|
||||
<table border="0" cellpadding="0" cellspacing="2" width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<%font_tag%>To:</font>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" size="<%editor_cols%>" name="header_To" value="<%if displaying_template%><%escape_html header_To%><%endif%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<%font_tag%>From:</font>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" size="<%editor_cols%>" name="header_From" value="<%if displaying_template%><%escape_html header_From%><%endif%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<%font_tag%>Subject:</font>
|
||||
</td>
|
||||
<td>
|
||||
<input type="text" size="<%editor_cols%>" name="header_Subject" value="<%if displaying_template%><%escape_html header_Subject%><%endif%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<%font_tag%>Extra Headers:<br></font>
|
||||
<textarea name="extra_headers" rows="3" cols="<%editor_cols%>"><%if displaying_template%><%loop extra_headers%><%escape_html name%>: <%escape_html value%>
|
||||
<%endloop%><%endif%></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<%font_tag%>Body:<br></font>
|
||||
<textarea rows="<%editor_rows%>" name="body" cols="<%editor_cols%>" wrap="off"><%if displaying_template%><%escape_html body%><%endif%></textarea>
|
||||
<br>
|
||||
<p><%font_tag%>Save template as: <input type="text" name="save_as" value="<%if tpl_file%><%tpl_file%><%endif%>" size="20"><input type="submit" value="Save" name="save_template"></font></p>
|
||||
<p><%font_tag%>Resize Textarea to: <input type="text" name="cookie-editor_rows" value="<%editor_rows%>" size="3"> rows, <input type="text" name="cookie-editor_cols" value="<%editor_cols%>" size="3"> columns <input type="submit" name="set-cookie" value="Change"></font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,57 @@
|
||||
<%Links::Tools::global_editor%>
|
||||
<%Links::Tools::tpl_dir_select($tpl_dir, '(?:browser|admin)')%>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Globals</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0"><tr><td>
|
||||
<table bgColor="#ffffff" border="0" cellPadding="3" cellSpacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td align="left" bgColor="navy"><b><font color="#ffffff" size="2" face="Tahoma,Arial,Helvetica">Edit
|
||||
Globals</font></b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p align="center"><b><font color="#000000" size="2" face="Tahoma,Arial,Helvetica">Edit
|
||||
Globals</font></b></p>
|
||||
<p><font size="2" face="Tahoma,Arial,Helvetica">From here you can
|
||||
quickly edit globals that can be used in any template.</font>
|
||||
<%if message%>
|
||||
<p><font size="2" color="red" face="Tahoma,Arial,Helvetica"><%message%></font></p>
|
||||
<%endif%>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<form action="admin.cgi" method="POST">
|
||||
<input type="hidden" name="do" value="page">
|
||||
<input type="hidden" name="page" value="build_global.html">
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0"><tr><td>
|
||||
<table bgColor="#ffffff" border="0" cellPadding="3" cellSpacing="3" width="500" valign="top">
|
||||
<tr><td>
|
||||
|
||||
<p><font size="2" face="Tahoma,Arial,Helvetica">Currently working on template set: <select name="tpl_dir"><%loop template_set_loop%><option<%if dir_selected%> selected<%endif%>><%directory%></option><%endloop%></select> <input type="submit" value="Change" name="change"></font></p>
|
||||
|
||||
<p><%global_table%></p>
|
||||
|
||||
<p><center><input type="submit" value="Save Changes" name="save"></font></center></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
@ -0,0 +1,33 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Help</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<table border="0" cellpadding="2" width="80%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
|
||||
<p><font face="Verdana,Arial,Helvetica" size="4">Build</font></p>
|
||||
|
||||
<hr>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">At its heart, Gossamer Links
|
||||
generates HTML pages. It builds one or more separate HTML pages for each
|
||||
category, plus other pages like a What's New listing, a What's Cool
|
||||
listing, Top Rated pages and many more. From here, you can build the html
|
||||
pages, and control how the pages will look.</font></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">Your template editor lets
|
||||
you easily change any aspect of how your directory looks. Gossamer Links comes
|
||||
with one template set, but please feel free to modify and create your own.
|
||||
It's as easy as editing HTML pages. </font></p>
|
||||
<p> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<p> </p>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,47 @@
|
||||
<%Links::Tools::language_editor%>
|
||||
<%Links::Tools::tpl_dir_select($tpl_dir, '(?:browser|admin)')%>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Languages</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<%Links::header ('Edit Language','From here you can quickly edit the language settings of your templates.')%>
|
||||
|
||||
<br>
|
||||
<form action="admin.cgi" method="POST">
|
||||
<input type="hidden" name="do" value="page">
|
||||
<input type="hidden" name="page" value="build_lang.html">
|
||||
<%if prefix%><input type="hidden" name="prefix" value="<%prefix%>"><%endif%>
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0"><tr><td>
|
||||
<table bgColor="#ffffff" border="0" cellPadding="3" cellSpacing="3" width="500" valign="top">
|
||||
<tr><td>
|
||||
<p><font size="2" face="Tahoma,Arial,Helvetica">Currently working on template set: <select name="tpl_dir"><%loop template_set_loop%><option<%if dir_selected%> selected<%endif%>><%directory%></option><%endloop%></select> <input type="submit" value="Change" name="change"></font></p>
|
||||
|
||||
<%if message%>
|
||||
<p><font size="2" color="red" face="Tahoma,Arial,Helvetica"><%message%></font></p>
|
||||
<%endif%>
|
||||
|
||||
<%ifnot prefix%>
|
||||
<p><font size="2" face="Tahomai,Arial,Helvetica">The languages have been broken up into categories, please pick the category you wish
|
||||
to edit first.
|
||||
<%endif%>
|
||||
|
||||
<p><font size="2" face="Tahoma,Arial,Helvetica"><%prefix_list%></font></p>
|
||||
|
||||
<%if prefix%>
|
||||
<p><%language_table%></p>
|
||||
<%endif%>
|
||||
<p><center><input type="submit" value="Save Changes" name="save"></font></center></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,51 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Nav</title>
|
||||
<base target="content">
|
||||
<%include include_style.html%>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="left-nav">
|
||||
<h1>HTML Pages</h1>
|
||||
<ul>
|
||||
<li><a href="nph-build.cgi?do=changed">Build Changed</a></li>
|
||||
<li><a href="nph-build.cgi?do=all">Build All</a></li>
|
||||
<li><a href="nph-build.cgi?do=staggered">Build Staggered</a></li>
|
||||
</ul>
|
||||
<h1>Templates</h1>
|
||||
<ul>
|
||||
<li><a href="admin.cgi?do=page;page=build_tpl.html">User Templates</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=build_email.html">Email Templates</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=build_css.html">CSS Editor</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=build_lang.html">User Language</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=build_global.html">Template Globals</a></li>
|
||||
<li><a href="javascript:var myrand = Math.random(); var mysql = window.open('admin.cgi?do=fileman', 'fileman', 'scrollbars=yes,resizable=yes,toolbar=yes,status=yes,location=yes,menubar=yes'); mysql.focus(); void(0);">FileMan</a></li>
|
||||
</ul>
|
||||
<h1>Template Diffs</h1>
|
||||
<ul>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.0-3.0.1.diff.html">3.0.0 - 3.0.1</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.1-3.0.2.diff.html">3.0.1 - 3.0.2</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.2-3.0.3.diff.html">3.0.2 - 3.0.3</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.3-3.0.4.diff.html">3.0.3 - 3.0.4</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.4-3.1.0.diff.html">3.0.4 - 3.1.0</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.1.0-3.2.0.diff.html">3.1.0 - 3.2.0</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.2.0-3.3.0.diff.html">3.2.0 - 3.3.0</a></li>
|
||||
</ul>
|
||||
<h1>CSS Diffs</h1>
|
||||
<ul>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.0-3.0.1.css.diff.html">3.0.0 - 3.0.1</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.1-3.0.2.css.diff.html">3.0.1 - 3.0.2</a></li>
|
||||
<li title="No changes were made">3.0.2 - 3.0.3</li>
|
||||
<li title="No changes were made">3.0.3 - 3.0.4</li>
|
||||
<li><a href="admin.cgi?do=page;page=3.0.4-3.1.0.css.diff.html">3.0.4 - 3.1.0</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.1.0-3.2.0.css.diff.html">3.1.0 - 3.2.0</a></li>
|
||||
<li><a href="admin.cgi?do=page;page=3.2.0-3.3.0.css.diff.html">3.2.0 - 3.3.0</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,97 @@
|
||||
<%Links::Tools::template_editor%>
|
||||
<%Links::Tools::tpl_dir_select($tpl_dir, '(?:browser|admin)')%>
|
||||
<%Links::Tools::tpl_file_select($tpl_dir, '(?:\..*|.*\.eml|globals\.txt|language\.txt)')%>
|
||||
<%set font_tag = '<font face="Tahoma,Arial,Helvetica" size="2">'%>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Build - Templates</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
<table border="1" cellpadding="0" cellspacing="0"><tr><td>
|
||||
<table bgColor="#ffffff" border="0" cellPadding="3" cellSpacing="3" width="500" valign="top">
|
||||
<tr>
|
||||
<td align="left" bgColor="navy"><b><font color="#ffffff" size="2" face="Tahoma,Arial,Helvetica">Edit
|
||||
Templates</font></b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p align="center"><b><font color="#000000" size="2" face="Tahoma,Arial,Helvetica">Edit
|
||||
Templates</font></b></p>
|
||||
<p><%font_tag%>From here you can quickly edit any of your user templates. <b>Note:</b> If you edit your
|
||||
templates manually, be sure to read the <a href="admin.cgi?do=help&topic=help_templates.html" target="_blank">template
|
||||
help</a> for where to save your templates!</font>
|
||||
<%if success_message%>
|
||||
<p><%font_tag%><font color="green"><b><%success_message%></b></font></font></p>
|
||||
<%endif%>
|
||||
<%if error_message%>
|
||||
<p><%font_tag%><font color="red"><b><%error_message%></b></font></font></p>
|
||||
<%endif%>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<form action="admin.cgi" method="POST">
|
||||
<input type="hidden" name="do" value="page">
|
||||
<input type="hidden" name="page" value="build_tpl.html">
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0"><tr><td>
|
||||
<table bgColor="#ffffff" border="0" cellPadding="3" cellSpacing="3" width="500" valign="top">
|
||||
<tr><td>
|
||||
|
||||
<p><%font_tag%>Currently working on template set: <select name="tpl_dir"><%loop template_set_loop%><option<%if dir_selected%> selected<%endif%>><%directory%></option><%endloop%></select> <input type="submit" value="Change" name="change"></font></p>
|
||||
|
||||
<p><%font_tag%>Available templates: <select name="tpl_file"><option value="">---</option><%loop template_loop%><option value="<%filename%>"<%if filename eq $tpl_file%> selected<%set tpl_local = $local%><%set tpl_new_local = $new_local%><%endif%>><%filename%><%if local and new_local%> *<%elsif local%> +<%endif%></option><%endloop%></select> <input type="submit" value="Load" name="load"></font></p>
|
||||
<p><%font_tag%>* modified template<br>
|
||||
+ non-default template</font></p>
|
||||
|
||||
<%if tpl_file%>
|
||||
<table cellpadding=0 cellspacing=0 bgcolor=black border=0 width="100%"><tr><td>
|
||||
<table border=0 cellspacing=1 cellpadding=3 width="100%">
|
||||
<tr>
|
||||
<td colspan="2"><%font_tag%><font color=white><b><u>File information:</u></b></font></font></td>
|
||||
</tr>
|
||||
<td bgcolor="#AAAAAA" width="1%"><%font_tag%>Admin path:</font></td>
|
||||
<td bgcolor="white"><%font_tag%><%file_path%></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#AAAAAA"><%font_tag%>File size:</font></td>
|
||||
<td bgcolor="white" id="size"><%font_tag%><%file_size%> bytes</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#AAAAAA"><%font_tag%>Status:</font></td>
|
||||
<td bgcolor="white" id="status"><%font_tag%>
|
||||
<%if file_local%>
|
||||
<% if file_restore%>Modified from system default (<a href="admin.cgi?do=fileman_diff;template=<%tpl_dir%>;file=<%tpl_file%>" target="_blank">diff</a>) - <a href="admin.cgi?do=page;page=build_tpl.html;restore=<%escape_url tpl_file%>;tpl_dir=<%escape_url tpl_dir%>;tpl_file=<%escape_url tpl_file%>" onClick="return confirm('Are you sure you want to restore the <%tpl_file%> template?')">Restore</a>
|
||||
<% else%>Custom template - <a href="admin.cgi?do=page;page=build_tpl.html;delete=<%escape_url tpl_file%>;tpl_dir=<%escape_url tpl_dir%>" onClick="return confirm('Are you sure you want to delete the <%tpl_file%> template?')">Delete</a>
|
||||
<% endif%>
|
||||
<%else%>Default system template
|
||||
<%endif%>
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#AAAAAA"><%font_tag%>Last modified:</font></td>
|
||||
<td bgcolor="white" id="last_mod"><%font_tag%><%file_mod_time%></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr></table>
|
||||
<%endif%>
|
||||
|
||||
<p><textarea rows="<%editor_rows%>" name="tpl_text" cols="<%editor_cols%>" wrap="off"><%tpl_text%></textarea>
|
||||
</p>
|
||||
<p><%font_tag%>Save template as: <input type="text" name="tpl_name" value="<%tpl_name%>" size="20">
|
||||
<input type="submit" value="Save" name="saveas"></font></p>
|
||||
<p><%font_tag%>Resize Textarea to: <input type="text" name="cookie-editor_rows" value="<%editor_rows%>" size="3"> rows, <input type="text" name="cookie-editor_cols" value="<%editor_cols%>" size=3> columns <input type="submit" name="set-cookie" value="Change"></font></p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,2 @@
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2"><b>Copyright 2006 <a href="http://gossamer-threads.com/">Gossamer
|
||||
Threads Inc.</a></b> </font></p>
|
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Database</title>
|
||||
</head>
|
||||
|
||||
<frameset framespacing="0" border="0" cols="150,*" frameborder="0">
|
||||
<frame name="left" scrolling="auto" src="admin.cgi?page=db_nav.html">
|
||||
<frame name="content" scrolling="auto" src="admin.cgi?page=db_help.html">
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<p>Gossamer Links requires a frames compatible browser.</p>
|
||||
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
|
||||
</html>
|
@ -0,0 +1,29 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Database - Help</title>
|
||||
<base target="_self">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<table border="0" cellpadding="2" width="80%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<p><font face="Verdana,Arial,Helvetica" size="4">Database</font></p>
|
||||
<hr>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">All the information in
|
||||
Gossamer Links is stored in an SQL database. The Database screen provides a
|
||||
quick easy way to access the three main tables in Gossamer Links: Links,
|
||||
Categories and Users. From there you can quickly search for an individual
|
||||
link, or add new records quickly. </font></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">You'll also find a number
|
||||
of tools to help keep your database in check. From our popular MySQLMan
|
||||
tool, to a sophisticated Link checker.</font></p>
|
||||
<p> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,122 @@
|
||||
<%Links::SQL::load%>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links - Database - Nav</title>
|
||||
<base target="content">
|
||||
<script language="Javascript">
|
||||
<!--
|
||||
var field_clear = 1;
|
||||
|
||||
function setid (myform) {
|
||||
var opts = 'do';
|
||||
var action = myform.todo.options[myform.todo.selectedIndex].value;
|
||||
var table = myform.db.options[myform.db.selectedIndex].text;
|
||||
var key = myform.keyid.value;
|
||||
if (key == 'id')
|
||||
key = '';
|
||||
|
||||
myform[opts].value = action;
|
||||
myform.keyword.value = '';
|
||||
myform.Username.value = '';
|
||||
myform.ID.value = '';
|
||||
myform.ReviewID.value = '';
|
||||
if (action == 'search_results') {
|
||||
myform[opts].value = 'search_results';
|
||||
myform.keyword.value = '*';
|
||||
}
|
||||
else if (key) {
|
||||
if (table == 'Users')
|
||||
myform.Username.value = key;
|
||||
else if (table == 'Reviews')
|
||||
myform.ReviewID.value = key;
|
||||
else
|
||||
myform.ID.value = key;
|
||||
|
||||
if (action == 'modify_search_form')
|
||||
myform[opts].value = 'modify_search_results';
|
||||
else if (action == 'delete_search_form')
|
||||
myform[opts].value = 'delete_search_results';
|
||||
else if (action == 'search_form')
|
||||
myform[opts].value = 'search_results';
|
||||
}
|
||||
myform.keyid.value = '';
|
||||
}
|
||||
// -->
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<form method="GET" action="admin.cgi" onSubmit="setid(this)" name="searchform" target="content">
|
||||
<input type="hidden" name="keyword" value="">
|
||||
<input type="hidden" name="Username" value="">
|
||||
<input type="hidden" name="ID" value="">
|
||||
<input type="hidden" name="ReviewID" value="">
|
||||
<input type="hidden" name="do" value="">
|
||||
<input type="hidden" name="ID-opt" value="=">
|
||||
<input type="hidden" name="Username-opt" value="=">
|
||||
<input type="hidden" name="ReviewID-opt" value="=">
|
||||
<table border="1" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2"> Editor</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br>
|
||||
<select size="1" name="db">
|
||||
<option>Category</option>
|
||||
<option>Links</option>
|
||||
<option>Users</option>
|
||||
<option>Reviews</option>
|
||||
</select><br>
|
||||
<select size="1" name="todo">
|
||||
<option value="add_form">Add</option>
|
||||
<option value="modify_search_form">Modify</option>
|
||||
<option value="delete_search_form">Delete</option>
|
||||
<option value="search_form">Search</option>
|
||||
<option value="search_results">List All</option>
|
||||
<option value="editor_table_form">Properties</option>
|
||||
</select><br>
|
||||
<nobr><input type=text name="keyid" value="id" onFocus="if (field_clear) { searchform.keyid.value=''; field_clear = 0; }" size=5> <input type="submit" value="Go"> <font face="Tahoma,Arial,Helvetica" size="2"></font></nobr>
|
||||
<font face="Tahoma,Arial,Helvetica" size="2">
|
||||
<br>
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2"> Tools</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size="2">
|
||||
<a href="admin.cgi?do=page&page=tools_validate.html">Validate Links</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_validate_changes.html">Validate Changes</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_validate_reviews.html">Validate Reviews</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_search_logs.html">View Search Logs</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_verify.html">Verify Links</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_status.html">Link Status</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_duplicate.html">Check Duplicates</a><br>
|
||||
<a href="admin.cgi?do=page&page=tools_expired_purge.html">Purge Expired Links</a><br>
|
||||
<a href="nph-import.cgi">Import/Export</a><br>
|
||||
<%if driver eq 'mysql'%>
|
||||
<a href="admin.cgi?do=page&page=tools_mysqlman.html">MySQLMan</a><br>
|
||||
<%endif%>
|
||||
<a href="admin.cgi?do=page&page=tools_sql_monitor.html">SQL Monitor</a><br>
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2">
|
||||
Repair</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size="2">
|
||||
<a href="admin.cgi?page=update_cat_tree.html">Rebuild Cat. tree</a><br>
|
||||
<a href="nph-build.cgi?do=repair">Repair Tables</a><br>
|
||||
<a href="nph-index.cgi">Rebuild Search</a><br>
|
||||
</font></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,34 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links Email: Confirm Cancel Mailing</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<h2>Confirm Mailing <%Verbtion%></h2>
|
||||
You must confirm before the following email is <%verbed%><br>
|
||||
<form method=POST action="admin.cgi">
|
||||
<input type=hidden name=action value=confirmed_cancel_mailing>
|
||||
<input type=hidden name=mailing value="<%id%>">
|
||||
<input type=hidden name=verbed value="<%verbed%>">
|
||||
<input type=submit value="Confirm Mailing <%Verbtion%>">
|
||||
</form>
|
||||
<form method=GET action="admin.cgi">
|
||||
<input type=hidden name=action value=mailings>
|
||||
<input type=submit value="Abort Mailing <%Verbtion%>">
|
||||
</form>
|
||||
<br><br>
|
||||
<h3>Mailing details</h3>
|
||||
<br>
|
||||
<u>Mailing ID:</u> <%id%><br>
|
||||
<%if finished%><u>Mailing Completed:</u> <%finished%><br>
|
||||
<%endif%><br>
|
||||
<u>To:</u> <a href="admin.cgi?action=list_addresses&emailsto=<%id%>" target=_blank><%count%> recipients</a><br>
|
||||
<u>From:</u> "<%name%>" <<%mailfrom%>><br>
|
||||
<u>Subject</u>: <%subject%><br>
|
||||
<u>Message</u> (format: <%messageformat%>):<br>
|
||||
<hr>
|
||||
<%message%>
|
||||
<hr>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,19 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links Email: Confirm Delete All Mailings</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<h2>Confirm Delete All Mailings</h2>
|
||||
You must confirm before all <%count%> mailings are cancelled deleted.<br>
|
||||
<form method=POST action="admin.cgi">
|
||||
<input type=hidden name=action value=confirmed_delete_all_mailings>
|
||||
<input type=submit value="Confirm Delete All Mailings">
|
||||
</form>
|
||||
<form method=GET action="admin.cgi">
|
||||
<input type=hidden name=action value=mailings>
|
||||
<input type=submit value="Abort Deleting of all Mailings">
|
||||
</form>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,20 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links Email: Confirm Delete All Finished Mailings</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<h2>Confirm Delete All Finished Mailings</h2>
|
||||
You must confirm before the <%count%> finished mailings will be deleted.
|
||||
Currently pending mailings will not be affected.<br>
|
||||
<form method=POST action="admin.cgi">
|
||||
<input type=hidden name=action value=confirmed_delete_finished_mailings>
|
||||
<input type=submit value="Confirm Delete All Finished Mailings">
|
||||
</form>
|
||||
<form method=GET action="admin.cgi">
|
||||
<input type=hidden name=action value=mailings>
|
||||
<input type=submit value="Abort Deleting of all Finished Mailings">
|
||||
</form>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,48 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links</title>
|
||||
<base target="main">
|
||||
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<table border="1" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2"> Mass Mail
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size="2">
|
||||
<a href="admin.cgi?action=email_everyone">All Users</a><br>
|
||||
<a href="admin.cgi?action=all_links">All Links</a><br>
|
||||
<a href="admin.cgi?action=selected_users">Selected Users</a><br>
|
||||
<a href="admin.cgi?action=selected_links">Selected Links</a><br>
|
||||
<a href="admin.cgi?<%if config.newsletter_global_subscribe%>action=email_newsletter<%else%>page=email_newsletter_browse.html<%endif%>">Newsletter</a><br>
|
||||
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2"> </font><font face="Tahoma,Arial,Helvetica" size="2">Custom
|
||||
Lists
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size="2">
|
||||
<a href="admin.cgi?action=list_list">List</a><br>
|
||||
<a href="admin.cgi?action=list_add">Add</a><br>
|
||||
<a href="admin.cgi?action=list_modify">Modify</a><br>
|
||||
<a href="admin.cgi?action=list_delete">Delete</a><br>
|
||||
<a href="admin.cgi?action=list_mail">Mail</a><br>
|
||||
</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td bgcolor="#DDDDDD"><font face="Tahoma,Arial,Helvetica" size="2"> Current
|
||||
Mailings</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size="2"> <a href="admin.cgi?action=mailings">View</a> <a href="http://"><br>
|
||||
</a> </font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,25 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links <%version%></title>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<table border="0" cellpadding="2" width="80%">
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<p><font face="Verdana,Arial,Helvetica" size="4">Email</font></p>
|
||||
<hr>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">Included in Gossamer Links
|
||||
is everything you need to keep in touch with your users. You are able
|
||||
to send out newsletters to users that have subscribed letting them
|
||||
know what's new with your site. You can send out custom emails,
|
||||
letting each link owner know the current status of their link. You can
|
||||
send targeted message to individual users, and much more.</font></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">Also, is a powerful
|
||||
list management tool that lets you maintain separate mailing lists
|
||||
that you can send messages to.</font></p>
|
||||
<p> </td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=3>
|
||||
<b><big><big>An error has occurred:</big></big></b><br><br>
|
||||
</font><font face="Tahoma,Arial,Helvetica" size=3 color=red>
|
||||
<%error%>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,126 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: All Users</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=post action=admin.cgi>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
All Users</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>All Users</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to all users who are flagged to receive e-mail.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<input type=hidden name=emailsto value=EVERYONE>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email will go out to <a href="admin.cgi?action=list_addresses&emailsto=EVERYONE" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<select size=1 name=name>
|
||||
<%templates%>
|
||||
</select><br>
|
||||
<input type=hidden name=previous value=email_everyone>
|
||||
<input type=submit name=action value=Load>
|
||||
<input type=submit name=action value=Save>
|
||||
<input type=submit name=action value="Save as...">
|
||||
<input type=submit name=action value=Delete></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message format:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=submit name="action=Send" value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,21 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links: Email</title>
|
||||
|
||||
<base target="main">
|
||||
|
||||
</head>
|
||||
<frameset framespacing="0" border="0" cols="150,*" frameborder="0">
|
||||
<frame name="contents" scrolling="auto" src="admin.cgi?page=email_contents.html">
|
||||
<frame name="main" scrolling="auto" src="admin.cgi?page=email_default.html">
|
||||
<noframes>
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<p>Gossamer Links requires a frames compatible browser.</p>
|
||||
|
||||
</body>
|
||||
</noframes>
|
||||
</frameset>
|
||||
|
||||
</html>
|
@ -0,0 +1,125 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: All Link Owners</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
|
||||
<form method=post action=admin.cgi>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
All Link Owners</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>All Link Owners</b></font></center></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to all link owners who have selected to receive e-mail.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
|
||||
<input type=hidden name=emailsto value=LINKOWNERS>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email will go out to <a href="admin.cgi?action=list_addresses&emailsto=LINKOWNERS" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<select size=1 name=name>
|
||||
<%templates%>
|
||||
</select><br>
|
||||
<input type=hidden name=previous value=all_links>
|
||||
<input type=submit name=action value=Load>
|
||||
<input type=submit name=action value=Save>
|
||||
<input type=submit name=action value="Save as...">
|
||||
<input type=submit name=action value=Delete></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message format:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=submit name="action=Send" value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,15 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Address list</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%addresses%>
|
||||
</font>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,88 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Add Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Add Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Add Mailing List</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Add a list of e-mail addresses to the list of mailing lists.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%if message%>
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2 color=red><%message%></font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
List name:<br><input type=text name=name><br><br>
|
||||
Enter addresses, separated by spaces or new lines:<br>
|
||||
<textarea name=addresses cols=50 rows=8><%addresses%></textarea><br>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=add_new_list>
|
||||
<input type=submit value="Add List">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,29 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Added Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Added Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Added Mailing List</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2><%status%><br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,71 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Delete Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Delete Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Delete Mailing List</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Completely delete a custom mailing list.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
Select a list to delete<br><br>
|
||||
<%list%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=list_delete_list>
|
||||
<input type=submit value="Delete List">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,29 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: List deleted</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
List deleted</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>List deleted</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Table <%Name%> has been deleted.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,15 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<font size=4><u><%Name%></u></font><br>
|
||||
<br>
|
||||
<b>Created:</b> <%DateCreated%><br>
|
||||
<b>Last modified:</b> <%DateModified%><br>
|
||||
<hr>
|
||||
<%addresses%>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,71 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Mail to Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Mail to Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Mail to Mailing List</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an email message to all members of a custom mailing list.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
Select the mailing list to which the E-mail should be sent<br><br>
|
||||
<%list%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=list_mail_list>
|
||||
<input type=submit value=Next>
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,125 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Mail Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=post action="admin.cgi">
|
||||
<input type=hidden name=emailsto value=LINKOWNERS>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Mail Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Mail Mailing List</b></font></center></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an email message to all members of a custom mailing list.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email will go out to <a href="admin.cgi?action=list_addresses&emailsto=CUSTOMLIST&ID=<%ID%>" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<select size=1 name=name>
|
||||
<%templates%>
|
||||
</select><br>
|
||||
<input type=hidden name=previous value=list_mail_list>
|
||||
<input type=hidden name=extra value=ID>
|
||||
<input type=hidden name=ID value="<%ID%>">
|
||||
<input type=submit name=action value=Load>
|
||||
<input type=submit name=action value=Save>
|
||||
<input type=submit name=action value="Save as...">
|
||||
<input type=submit name=action value=Delete></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=submit name="action=list_mail_Send" value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,29 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Modified Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Modified Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Modified Mailing List</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2><%status%><br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,70 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Modify Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Modify Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Modify Mailing List</b></font></center></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Make changes to an existing mailing list<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
Select a list to modify<br><br>
|
||||
<%list%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=list_modify_list>
|
||||
<input type=submit value=Modify>
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,73 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Modify Mailing List</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Modify Mailing List</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Modify Mailing List</b></font></center></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Make changes to an existing mailing list<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
List name:<br><u><%Name%></u><br><br>
|
||||
Enter addresses, separated by spaces or new lines:<br>
|
||||
<textarea name=addresses cols=50 rows=8><%addresses%></textarea><br>
|
||||
<input type=hidden name=ID value="<%ID%>">
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=list_modify_existing_list>
|
||||
<input type=submit value="Modify List">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,45 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links Email: List of Mailing Lists</title>
|
||||
</head>
|
||||
<body bgcolor=white>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
List of Mailing Lists</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>List of Mailing Lists</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>View existing mailing lists and the date created/last modified of the lists.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%lists%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,21 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links</title>
|
||||
</head>
|
||||
<body bgcolor="#FFFFFF">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<h2>Mailing details</h2>
|
||||
<br>
|
||||
<u>Mailing ID:</u> <%id%><br>
|
||||
<%if finished%><u>Mailing Completed:</u> <%finished%><br>
|
||||
<%endif%><br>
|
||||
<u>To</u>: <a href="admin.cgi?action=list_addresses&emailsto=<%id%>" target=_blank><%count%> recipients</a><br>
|
||||
<u>From</u>: "<%name%>" <<%mailfrom%>><br>
|
||||
<u>Subject</u>: <%subject%><br>
|
||||
<u>Message</u> (Message format: <%messageformat%>):<br>
|
||||
<hr>
|
||||
<%message%>
|
||||
<hr>
|
||||
</font>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,77 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: View Mailings</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
View Mailings</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>View Mailings</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>View/send/delete currently queued mailings and completed mailings.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<br>
|
||||
<br>
|
||||
<ul>
|
||||
<%mailings%>
|
||||
</ul>
|
||||
<br><br>
|
||||
<a href="admin.cgi?action=delete_finished_mailings">Delete all completed mailings</a>
|
||||
|
|
||||
<a href="admin.cgi?action=delete_all_mailings">Cancel/Delete all mailings</a>
|
||||
</font>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,122 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Newsletter</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=post action=admin.cgi>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Newsletter</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Newsletter</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail consisting of all New links to all users who are configured to receive the newsletter.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
|
||||
<%if ID%><input type=hidden name=ID value=<%ID%>><%endif%>
|
||||
<input type=hidden name=emailsto value=NEWSLETTER>
|
||||
<input type=hidden name=previous value=email_newsletter>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email will go out to <a href="admin.cgi?action=list_addresses&emailsto=NEWSLETTER<%if ID%>;ID=<%ID%><%endif%>" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="10%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font></td>
|
||||
<td width="90%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<a href="admin.cgi?action=email_newsletter_edit_template">Edit newsletter template</a>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=Send><input type=submit value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,94 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%Links::Newsletter::admin_browse%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Newsletter</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<%include include_style.html%>
|
||||
<style type="text/css">
|
||||
/*<![CDATA[*/
|
||||
td {
|
||||
font-size: 13px;
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif
|
||||
}
|
||||
.info {
|
||||
font-size: 9px;
|
||||
vertical-align: super;
|
||||
cursor: pointer;
|
||||
cursor: hand;
|
||||
}
|
||||
.category-data {
|
||||
font-size: 11px;
|
||||
padding-left: 20px;
|
||||
display: none;
|
||||
}
|
||||
.d1 {
|
||||
padding-left: 40px;
|
||||
}
|
||||
.d2 {
|
||||
padding-left: 80px;
|
||||
}
|
||||
.d3 {
|
||||
padding-left: 120px;
|
||||
}
|
||||
.d4 {
|
||||
padding-left: 160px;
|
||||
}
|
||||
.d5 {
|
||||
padding-left: 200px;
|
||||
}
|
||||
.d6 {
|
||||
padding-left: 240px;
|
||||
}
|
||||
.d7 {
|
||||
padding-left: 280px;
|
||||
}
|
||||
.d8 {
|
||||
padding-left: 320px;
|
||||
}
|
||||
.d9 {
|
||||
padding-left: 360px;
|
||||
}
|
||||
.d10 {
|
||||
padding-left: 400px;
|
||||
}
|
||||
/*]]>*/
|
||||
</style>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
function expand(id, self) {
|
||||
var data = document.getElementById(id);
|
||||
if (data.style.display == 'none' || data.style.display == '') {
|
||||
data.style.display = 'block';
|
||||
self.firstChild.nodeValue = '[-]';
|
||||
}
|
||||
else {
|
||||
data.style.display = 'none';
|
||||
self.firstChild.nodeValue = '[+]';
|
||||
}
|
||||
}
|
||||
//]]>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<%set header_title = 'Newsletter'%>
|
||||
<%set header_details = "Click the [+] beside a desired category to see information on that category's subscribers. You will have the option of sending a newsletter to that category's subscribers. Direct subscribers are those who have signed up specifically for that category's newsletter. The number of total subscribers represents all direct subscribers as well as those who have signed up for the parent category\'s newsletter. Click on the number of either total or direct subscribers to see a list of those e-mail addresses. Categories that match the maximum depth setting in the User Options Setup menu will be linked to lists of further sub-categories."%>
|
||||
<%include include_header.html%>
|
||||
<table>
|
||||
<tr>
|
||||
<td>
|
||||
<%if PPID ne ''%><a href="admin.cgi?page=email_newsletter_browse.html;root=<%PPID%>">Back to <%PPName%></a><br /><%endif%>
|
||||
<%loop category%>
|
||||
<div class="category d<%CatDepth%>">
|
||||
<%if HasMoreChildren%><a href="admin.cgi?page=email_newsletter_browse.html;root=<%ID%>"><%endif%><%Name%><%if HasMoreChildren%></a><%endif%> <span onclick="expand('category-data-<%ID%>', this)" class="info">[+]</span><br />
|
||||
<div id="category-data-<%ID%>" class="category-data">
|
||||
Subscribers: <%if Subscribers%><a href="admin.cgi?page=email_newsletter_subscribers.html;ID=<%ID%>"><%endif%><%Subscribers%><%if Subscribers%></a><%endif%> / <%if DirectSubscribers%><a href="admin.cgi?page=email_newsletter_subscribers.html;ID=<%ID%>;direct=1"><%endif%><%DirectSubscribers%><%if DirectSubscribers%></a><%endif%> (Total/Direct)<br />
|
||||
<%if Subscribers%><a href="admin.cgi?action=email_newsletter;ID=<%ID%>">Send newsletter to this category</a><br /><%endif%>
|
||||
</div>
|
||||
</div>
|
||||
<%endloop%>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,139 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Edit Newsletter Template</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=post action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Edit Newsletter Template</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Edit Newsletter Template</b></font></center></p>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Change the template for the newsletter<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if bad_email%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<font color=red>All fields must be entered as well as have a valid e-mail address entered. Correct it before saving the template.</font>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>From (name):</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<input type=text name=fromname value="<%fromname%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>From (email):</font>
|
||||
</td>
|
||||
<td>
|
||||
<input type=text name=from value="<%from%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Subject:</font>
|
||||
</td>
|
||||
<td>
|
||||
<input type=text name=subject value="<%subject%>">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Message format:</font>
|
||||
</td>
|
||||
<td>
|
||||
<select name=messageformat><%messageformat%></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Message:</font>
|
||||
</td>
|
||||
<td>
|
||||
<textarea name=message cols=47 rows=8><%message%></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Newsitem Template:</font>
|
||||
</td>
|
||||
<td>
|
||||
<textarea name=template cols=47 rows=8><%template%></textarea>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
</table>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=newslettermessage value=1>
|
||||
<input type=hidden name=action value=email_newsletter_save_template>
|
||||
<input type=submit value="Save Newsletter Template">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
|
||||
</form>
|
||||
|
||||
</html>
|
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%Links::Newsletter::subscriber_info%>
|
||||
<html>
|
||||
<head>
|
||||
<title>Newsletter Subscribers</title>
|
||||
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
||||
<style type="text/css">
|
||||
/*<![CDATA[*/
|
||||
p {
|
||||
font-family: Tahoma, Arial, Helvetica, sans-serif;
|
||||
font-size: 13px;
|
||||
}
|
||||
/*]]>*/
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<p>
|
||||
<%loop subscribers%>
|
||||
<%Email%><br />
|
||||
<%endloop%>
|
||||
</p>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,97 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: New Template Save As...</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form action="admin.cgi" method=POST>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
New Template Save As...</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>New Template Save As...</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Enter a name for the new template<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%if notes%>
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font color=red face="Tahoma,Arial,Helvetica" size=2>
|
||||
<h3>Error:</h3>
|
||||
<%notes%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
Enter template name: <input type=text name=name size=25 maxlength=50><br>
|
||||
<input type=hidden name=fromname value="<%fromname%>">
|
||||
<input type=hidden name=from value="<%from%>">
|
||||
<input type=hidden name=subject value="<%subject%>">
|
||||
<input type=hidden name=message value="<%message%>">
|
||||
<input type=hidden name=messageformat value="<%messageformat%>">
|
||||
<input type=hidden name=previous value="<%previous%>">
|
||||
<%hidden_fields%>
|
||||
<%if extra%><input type=hidden name="<%extra%>" value="<%extraval%>">
|
||||
<%endif%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=action value=email_newtemp>
|
||||
<input type=submit value="Add Template">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,74 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer Links Email: Selected Link Owners</title>
|
||||
</head>
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=get action="admin.cgi">
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Selected Link Owners</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Selected Link Owners</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to the owners of the results of a link search. Links whose owners are set to not receive mail will not be included in the results of the search.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%if message%>
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%message%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%endif%>
|
||||
|
||||
<%form%>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=mh value=-1>
|
||||
<input type=hidden name=action value=selected_links_search>
|
||||
<input type=submit value=Search>
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,124 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Selected Link Owners</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=POST action="admin.cgi">
|
||||
<input type=hidden name=emailsto value=SELECTEDLINKS>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Selected Link Owners</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Selected Link Owners</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to the owners of the results of a link search. Links whose owners are set to not receive mail will not be included in the results of the search.<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email has been selected to go to <a href="<%address_list_url%>" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<%hidden_fields%>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<select size=1 name=name>
|
||||
<%templates%>
|
||||
</select><br>
|
||||
<input type=hidden name=previous value=selected_links_search>
|
||||
<input type=submit name=action value=Load>
|
||||
<input type=submit name=action value=Save>
|
||||
<input type=submit name=action value="Save as...">
|
||||
<input type=submit name=action value=Delete></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=submit name="action=selected_links_send" value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,79 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Selected Users</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=get action=admin.cgi>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Selected Users</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Selected Users</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to the results of a user search<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%if message%>
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%message%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<%endif%>
|
||||
|
||||
<%form%>
|
||||
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=hidden name=mh value=-1>
|
||||
<input type=hidden name=action value=selected_users_search>
|
||||
<input type=submit value="Search for Users">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,127 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<title>Gossamer Links Email: Selected Users</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
|
||||
<form method=post action=admin.cgi>
|
||||
<input type=hidden name=emailsto value=SELECTEDUSERS>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500><tr><td>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td align=left bgColor=navy><font face=Arial color="#ffffff" size=2><b>Email:
|
||||
Selected Users</b></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<p><center><font face=Arial color="#000000" size=2><b>Selected Users</b></font></center></p>
|
||||
|
||||
<p><font face="Tahoma,Arial,Helvetica" size=2>Send an e-mail to the results of a user search<br>
|
||||
</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%if error%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>
|
||||
<%error%>
|
||||
</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<%endif%>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0 width=500>
|
||||
<tr>
|
||||
<td width="100%">
|
||||
<table border=0 cellpadding=3>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<font face="Tahoma,Arial,Helvetica" size=2><br>
|
||||
This email has been selected to go to <a href="<%address_list_url%>" target=_blank><b><%number%> address<%ifnot number == 1%>es<%endif%></b></a>.<br>
|
||||
</font>
|
||||
<%hidden_fields%>
|
||||
<table border=0 cellpadding=2 cellspacing=3 width="100%">
|
||||
<tr>
|
||||
<td width="15%">
|
||||
<font face="Tahoma,Arial,Helvetica" size=2>Template:</font>
|
||||
</td>
|
||||
<td width="85%">
|
||||
<select size=1 name=name>
|
||||
<%templates%>
|
||||
</select><br>
|
||||
<input type=hidden name=previous value=selected_users_search>
|
||||
<input type=submit name=action value=Load>
|
||||
<input type=submit name=action value=Save>
|
||||
<input type=submit name=action value="Save as...">
|
||||
<input type=submit name=action value=Delete></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (name):</font></td>
|
||||
<td><input type=text name=fromname size=30 value="<%fromname%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>From (email):</font></td>
|
||||
<td><input type=text name=from size=30 value="<%from%>"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Subject:</font></td>
|
||||
<td><input type=text name=subject size=30 value="<%subject%>"></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message format:</font></td>
|
||||
<td><select name=messageformat><%messageformat%></select></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><font face="Tahoma,Arial,Helvetica" size=2>Message:</font></td>
|
||||
<td><textarea rows=8 name=message cols=47><%message%></textarea></font></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
|
||||
<table border=1 cellpadding=0 cellspacing=0>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<table border=0 width=500>
|
||||
<tr>
|
||||
<td align=center>
|
||||
<center><font face="Tahoma,Arial,Helvetica" size=2 color="#000000">
|
||||
<input type=submit name="action=selected_users_send" value="Send Email<%ifnot number == 1%>s<%endif%>">
|
||||
</font></center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -0,0 +1,18 @@
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<title>Gossamer Links <%cfg_version%>: Error</title>
|
||||
</head>
|
||||
|
||||
<body bgcolor=white>
|
||||
<font face="Tahoma,Arial,Helvetica" size="3"><b>Gossamer Links Error:</b></font>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">The following error occurred:</font></p>
|
||||
<pre><font color=red><%error%></font></pre>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">The following is some debugging
|
||||
information that may help:</font></p>
|
||||
<pre><%Links::environment%></pre>
|
||||
<p><font face="Tahoma,Arial,Helvetica" size="2">For support, please visit:
|
||||
<a href="http://gossamer-threads.com/scripts/support/">http://gossamer-threads.com/scripts/support/</a>.</font></p>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -0,0 +1,5 @@
|
||||
<html>
|
||||
<link rel="stylesheet" href="<%html_url%>/<%scheme%>.css">
|
||||
<BODY>
|
||||
</BODY>
|
||||
</html>
|
@ -0,0 +1,8 @@
|
||||
<link rel='stylesheet' href='<%html_url%>/<%scheme%>.css'>
|
||||
<body bgcolor='white' leftmargin=5 topmargin=5><script>function check_input() {if (!document.frm_footer.txt_input.value) {return 'Please enter the command you wish to execute'}return}</script><form name=frm_footer action='<%http_ref%>' method=post target='mainfrm' onsubmit='return top.check_command()'>
|
||||
<HR NOSHADE width=100%><table border='0' cellpadding='3' cellspacing='0' width='100%'>
|
||||
<tr><td width='10%'><%font%><b>Status:</b></td><td width='90%'>Please enter the command you wish to execute</font></td></tr>
|
||||
<tr><td width='10%'><%font%><b>Command:</font></b></td><td width='90%'>
|
||||
<input name=txt_input size=80%><input type=submit name=submit value='Execute'></td></tr></table>
|
||||
<input type=hidden name=work_path value=''>
|
||||
<input type=hidden name=cmd_do value='cmd_command'></form></body><textare></texteare>
|
@ -0,0 +1,7 @@
|
||||
<html>
|
||||
<link rel="stylesheet" href="<%html_url%>/<%scheme%>.css">
|
||||
<body class='bg_frames' leftmargin=5 topmargin=5>
|
||||
<span id='fm_commandbar'></span><span id='fm_command'></span>
|
||||
</body>
|
||||
</html>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,89 @@
|
||||
<html>
|
||||
<head><title>Button</title>
|
||||
<style><%include editor_dialog.css%></style>
|
||||
<script>
|
||||
|
||||
var name, value, initial, tab;
|
||||
function initDialog() {
|
||||
name = document.getElementById('name');
|
||||
value = document.getElementById('value');
|
||||
tab = document.getElementById('tab');
|
||||
type = document.getElementById('type');
|
||||
}
|
||||
|
||||
function done () {
|
||||
/* ---------------------------------------------------------
|
||||
* When the user hits done this fucntion is called to
|
||||
* produce the html from the div tags. It then inserts
|
||||
* it into the edit window and closes this window.
|
||||
*/
|
||||
var html = '<input';
|
||||
if (name.value)
|
||||
html += ' name="' + name.value + '"';
|
||||
if (value.value)
|
||||
html += ' value="' + value.value + '"';
|
||||
if (tab.value)
|
||||
html += ' tabindex="' + tab.value + '"';
|
||||
html += ' type=';
|
||||
if (type.value == 2) {
|
||||
html += '"reset"';
|
||||
}
|
||||
else if (type.value == 1) {
|
||||
html += '"submit"';
|
||||
}
|
||||
else {
|
||||
html += '"button"';
|
||||
}
|
||||
html += '>';
|
||||
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
function check_type (title, val) {
|
||||
/* ---------------------------------------------------------
|
||||
* When the type radio is changed this is called to see if
|
||||
* the value in the Value/label field should be changed.
|
||||
*/
|
||||
value.value = title;
|
||||
type.value = val
|
||||
}
|
||||
|
||||
</script>
|
||||
<body class=body onload="initDialog()">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class="td">
|
||||
<td>Name:</td><td><input id=name size=30></input></td>
|
||||
</tr>
|
||||
<tr class="td">
|
||||
<td>Value/label:</td><td><input id=value size=30 value="Button"></input></td>
|
||||
</tr>
|
||||
<tr class="td">
|
||||
<td>Button type:</td>
|
||||
<td>
|
||||
<table border=0>
|
||||
<tr class="td">
|
||||
<td>
|
||||
<input type=radio id=type name=type onclick="check_type('Button', '0');" value="0" checked> Normal
|
||||
</td>
|
||||
<td>
|
||||
<input type=radio id=type name=type onclick="check_type('Submit', '1');" value="1"> Submit
|
||||
</td>
|
||||
<td>
|
||||
<input type=radio id=type name=type onclick="check_type('Reset', '2');" value="2"> Reset
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="td">
|
||||
<td>Tab order:</td><td><input id=tab size=3></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,72 @@
|
||||
<html>
|
||||
<title>Checkbox</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
<script>
|
||||
|
||||
var name, value, initial, tab;
|
||||
function initDialog() {
|
||||
name = document.getElementById('name');
|
||||
value = document.getElementById('value');
|
||||
initial= document.getElementById('initial');
|
||||
tab = document.getElementById('tab');
|
||||
}
|
||||
|
||||
function done () {
|
||||
/* ---------------------------------------------------------
|
||||
* When the user hits done this fucntion is called to
|
||||
* produce the html from the div tags. It then inserts
|
||||
* it into the edit window and closes this window.
|
||||
*/
|
||||
var html = '<input type="checkbox"';
|
||||
if (name.value)
|
||||
html += ' name="' + name.value + '"';
|
||||
if (value.value)
|
||||
html += ' value="' + value.value + '"';
|
||||
if (tab.value)
|
||||
html += ' tabindex="' + tab.value + '"';
|
||||
if (initial.checked)
|
||||
html += ' checked';
|
||||
html += '>';
|
||||
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
// -->
|
||||
</script>
|
||||
<body class=body onLoad="initDialog()">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td>Name:</td><td><input id=name size=30></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Value:</td><td><input id=value size=30></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Initial State:</td>
|
||||
<td>
|
||||
<table border=0>
|
||||
<tr class=body>
|
||||
<td>
|
||||
<input value=on type=radio id=initial name=initial> Selected
|
||||
</td>
|
||||
<td>
|
||||
<input value=off type=radio id=initial name=initial> Not Selected
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Tab order:</td><td><input id=tab size=3></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,408 @@
|
||||
<html>
|
||||
<head>
|
||||
<title>Color</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
.colorcell { width: 21px; height: 20px; font-size: 2px };
|
||||
</style>
|
||||
<script>
|
||||
|
||||
var colormap = {
|
||||
'aliceblue' : '#F0F8FF',
|
||||
'antiquewhite' : '#FAEBD7',
|
||||
'aqua' : '#00FFFF',
|
||||
'aquamarine' : '#7FFFD4',
|
||||
'azure' : '#F0FFFF',
|
||||
'beige' : '#F5F5DC',
|
||||
'bisque' : '#FFE4C4',
|
||||
'black' : '#000000',
|
||||
'blanchedalmond' : '#FFEBCD',
|
||||
'blue' : '#0000FF',
|
||||
'blueviolet' : '#8A2BE2',
|
||||
'brown' : '#A52A2A',
|
||||
'burlywood' : '#DEB887',
|
||||
'cadetblue' : '#5F9EA0',
|
||||
'chartreuse' : '#7FFF00',
|
||||
'chocolate' : '#D2691E',
|
||||
'coral' : '#FF7F50',
|
||||
'cornflowerblue' : '#6495ED',
|
||||
'cornsilk' : '#FFF8DC',
|
||||
'crimson' : '#DC143C',
|
||||
'cyan' : '#00FFFF',
|
||||
'darkblue' : '#00008B',
|
||||
'darkcyan' : '#008B8B',
|
||||
'darkgoldenrod' : '#B8860B',
|
||||
'darkgray' : '#A9A9A9',
|
||||
'darkgreen' : '#006400',
|
||||
'darkkhaki' : '#BDB76B',
|
||||
'darkmagenta' : '#8B008B',
|
||||
'darkolivegreen' : '#556B2F',
|
||||
'darkorange' : '#FF8C00',
|
||||
'darkorchid' : '#9932CC',
|
||||
'darkred' : '#8B0000',
|
||||
'darksalmon' : '#E9967A',
|
||||
'darkseagreen' : '#8FBC8F',
|
||||
'darkslateblue' : '#483D8B',
|
||||
'darkslategray' : '#2F4F4F',
|
||||
'darkturquoise' : '#00CED1',
|
||||
'darkviolet' : '#9400D3',
|
||||
'deeppink' : '#FF1493',
|
||||
'deepskyblue' : '#00BFFF',
|
||||
'dimgray' : '#696969',
|
||||
'dodgerblue' : '#1E90FF',
|
||||
'firebrick' : '#B22222',
|
||||
'floralwhite' : '#FFFAF0',
|
||||
'forestgreen' : '#228B22',
|
||||
'fuchsia' : '#FF00FF',
|
||||
'gainsboro' : '#DCDCDC',
|
||||
'ghostwhite' : '#F8F8FF',
|
||||
'gold' : '#FFD700',
|
||||
'goldenrod' : '#DAA520',
|
||||
'gray' : '#808080',
|
||||
'green' : '#008000',
|
||||
'greenyellow' : '#ADFF2F',
|
||||
'honeydew' : '#F0FFF0',
|
||||
'hotpink' : '#FF69B4',
|
||||
'indianred' : '#CD5C5C',
|
||||
'indigo' : '#4B0082',
|
||||
'ivory' : '#FFFFF0',
|
||||
'khaki' : '#F0E68C',
|
||||
'lavender' : '#E6E6FA',
|
||||
'lavenderblush' : '#FFF0F5',
|
||||
'lawngreen' : '#7CFC00',
|
||||
'lemonchiffon' : '#FFFACD',
|
||||
'lightblue' : '#ADD8E6',
|
||||
'lightcoral' : '#F08080',
|
||||
'lightcyan' : '#E0FFFF',
|
||||
'lightgoldenrodyellow' : '#FAFAD2',
|
||||
'lightgreen' : '#90EE90',
|
||||
'lightgrey' : '#D3D3D3',
|
||||
'lightpink' : '#FFB6C1',
|
||||
'lightsalmon' : '#FFA07A',
|
||||
'lightseagreen' : '#20B2AA',
|
||||
'lightskyblue' : '#87CEFA',
|
||||
'lightslategray' : '#778899',
|
||||
'lightsteelblue' : '#B0C4DE',
|
||||
'lightyellow' : '#FFFFE0',
|
||||
'lime' : '#00FF00',
|
||||
'limegreen' : '#32CD32',
|
||||
'linen' : '#FAF0E6',
|
||||
'magenta' : '#FF00FF',
|
||||
'maroon' : '#800000',
|
||||
'mediumaquamarine' : '#66CDAA',
|
||||
'mediumblue' : '#0000CD',
|
||||
'mediumorchid' : '#BA55D3',
|
||||
'mediumpurple' : '#9370DB',
|
||||
'mediumseagreen' : '#3CB371',
|
||||
'mediumslateblue' : '#7B68EE',
|
||||
'mediumspringgreen' : '#00FA9A',
|
||||
'mediumturquoise' : '#48D1CC',
|
||||
'mediumvioletred' : '#C71585',
|
||||
'midnightblue' : '#191970',
|
||||
'mintcream' : '#F5FFFA',
|
||||
'mistyrose' : '#FFE4E1',
|
||||
'moccasin' : '#FFE4B5',
|
||||
'navajowhite' : '#FFDEAD',
|
||||
'navy' : '#000080',
|
||||
'oldlace' : '#FDF5E6',
|
||||
'olive' : '#808000',
|
||||
'olivedrab' : '#6B8E23',
|
||||
'orange' : '#FFA500',
|
||||
'orangered' : '#FF4500',
|
||||
'orchid' : '#DA70D6',
|
||||
'palegoldenrod' : '#EEE8AA',
|
||||
'palegreen' : '#98FB98',
|
||||
'paleturquoise' : '#AFEEEE',
|
||||
'palevioletred' : '#DB7093',
|
||||
'papayawhip' : '#FFEFD5',
|
||||
'peachpuff' : '#FFDAB9',
|
||||
'peru' : '#CD853F',
|
||||
'pink' : '#FFC0CB',
|
||||
'plum' : '#DDA0DD',
|
||||
'powderblue' : '#B0E0E6',
|
||||
'purple' : '#800080',
|
||||
'red' : '#FF0000',
|
||||
'rosybrown' : '#BC8F8F',
|
||||
'royalblue' : '#4169E1',
|
||||
'saddlebrown' : '#8B4513',
|
||||
'salmon' : '#FA8072',
|
||||
'sandybrown' : '#F4A460',
|
||||
'seagreen' : '#2E8B57',
|
||||
'seashell' : '#FFF5EE',
|
||||
'sienna' : '#A0522D',
|
||||
'silver' : '#C0C0C0',
|
||||
'skyblue' : '#87CEEB',
|
||||
'slateblue' : '#6A5ACD',
|
||||
'slategray' : '#708090',
|
||||
'snow' : '#FFFAFA',
|
||||
'springgreen' : '#00FF7F',
|
||||
'steelblue' : '#4682B4',
|
||||
'tan' : '#D2B48C',
|
||||
'teal' : '#008080',
|
||||
'thistle' : '#D8BFD8',
|
||||
'tomato' : '#FF6347',
|
||||
'turquoise' : '#40E0D0',
|
||||
'violet' : '#EE82EE',
|
||||
'wheat' : '#F5DEB3',
|
||||
'white' : '#FFFFFF',
|
||||
'whitesmoke' : '#F5F5F5',
|
||||
'yellow' : '#FFFF00',
|
||||
'yellowgreen' : '#9ACD32'
|
||||
};
|
||||
|
||||
var selectedId;
|
||||
var color;
|
||||
|
||||
function mouseoverBorder (obj) {
|
||||
obj.style.border = '2px outset buttonface';
|
||||
obj.style.padding = '0px';
|
||||
}
|
||||
function mouseoutBorder (obj) {
|
||||
obj.style.border = '1px solid gray';
|
||||
obj.style.padding = '1px';
|
||||
}
|
||||
function selectedBorder (obj) {
|
||||
obj.style.border = '2px inset buttonface';
|
||||
obj.style.padding = '0px';
|
||||
}
|
||||
|
||||
function InitColorPalette() {
|
||||
if (document.getElementsByTagName)
|
||||
var x = document.getElementsByTagName('TD');
|
||||
else if (document.all)
|
||||
var x = document.all.tags('TD');
|
||||
|
||||
for (var i=0;i<x.length;i++) {
|
||||
if (x[i].id != 'sample' && x[i].id != 'button' && x[i].id != 'custom') {
|
||||
x[i].onmouseover = over;
|
||||
x[i].onmouseout = out;
|
||||
x[i].onclick = setColor;
|
||||
x[i].style.backgroundColor = x[i].style.color = x[i].id;
|
||||
mouseoutBorder(x[i]);
|
||||
}
|
||||
}
|
||||
document.getElementById('bok').onclick = returnColor;
|
||||
|
||||
if (opener.dialogWindow.currentColor) {
|
||||
var input = document.getElementById('hexcolor');
|
||||
input.value = opener.dialogWindow.currentColor;
|
||||
setManualColor(input);
|
||||
}
|
||||
}
|
||||
|
||||
function over() {
|
||||
if (this.id == selectedId) {
|
||||
selectedBorder(this);
|
||||
}
|
||||
else {
|
||||
mouseoverBorder(this);
|
||||
}
|
||||
}
|
||||
|
||||
function out() {
|
||||
if (this.id == selectedId) {
|
||||
selectedBorder(this);
|
||||
}
|
||||
else {
|
||||
mouseoutBorder(this);
|
||||
}
|
||||
}
|
||||
|
||||
function textKey (event, textbox) {
|
||||
if (event.keyCode == 13) {
|
||||
textbox.blur();
|
||||
return;
|
||||
}
|
||||
else if (textbox.value.length < 7) {
|
||||
return event.keyCode;
|
||||
}
|
||||
}
|
||||
|
||||
function setColor() {
|
||||
if (selectedId)
|
||||
mouseoutBorder(document.getElementById(selectedId));
|
||||
|
||||
selectedId = this.id;
|
||||
if (selectedId) {
|
||||
color = selectedId;
|
||||
selectedBorder(this);
|
||||
document.getElementById('source').style.color = color;
|
||||
document.getElementById('hexcolor').value = color;
|
||||
}
|
||||
}
|
||||
|
||||
function setManualColor (textbox) {
|
||||
var newColor = textbox.value.toLowerCase();
|
||||
|
||||
if (colormap[newColor])
|
||||
newColor = colormap[newColor];
|
||||
|
||||
newColor = newColor.toUpperCase();
|
||||
|
||||
if (newColor.substring(0, 1) != '#')
|
||||
newColor = '#' + newColor;
|
||||
|
||||
// Turn a 3-digit hex color such as '#a62' into the 6 digit equivelant '#aa6622'
|
||||
if (/^#[0-9A-F]{3}$/.test(newColor)) {
|
||||
newColor = '#' +
|
||||
newColor.substring(1,2) + newColor.substring(1,2) +
|
||||
newColor.substring(2,3) + newColor.substring(2,3) +
|
||||
newColor.substring(3,4) + newColor.substring(3,4);
|
||||
alert("newcolor: " + newColor);
|
||||
}
|
||||
|
||||
if (!/^#[0-9A-F]{6}$/.test(newColor)) {
|
||||
textbox.value = '';
|
||||
return;
|
||||
}
|
||||
else {
|
||||
if (selectedId)
|
||||
mouseoutBorder(document.getElementById(selectedId));
|
||||
|
||||
var have;
|
||||
if (have = document.getElementById(newColor)) {
|
||||
selectedBorder(have);
|
||||
selectedId = newColor;
|
||||
}
|
||||
|
||||
color = newColor;
|
||||
document.getElementById('source').style.color = color;
|
||||
textbox.value = color;
|
||||
}
|
||||
}
|
||||
|
||||
function returnColor() {
|
||||
if (color) {
|
||||
opener.dialogWindow.returnFunc(color);
|
||||
window.close();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body class="body" onLoad="InitColorPalette()">
|
||||
<table border="1" cellpadding="1" cellspacing="1" align="center">
|
||||
<tr>
|
||||
<td class="colorcell" id="#FFFFFF"> </td>
|
||||
<td class="colorcell" id="#FFBFBF"> </td>
|
||||
<td class="colorcell" id="#FFDFBF"> </td>
|
||||
<td class="colorcell" id="#FFFFBF"> </td>
|
||||
<td class="colorcell" id="#EFFFBF"> </td>
|
||||
<td class="colorcell" id="#BFFFBF"> </td>
|
||||
<td class="colorcell" id="#BFFFEF"> </td>
|
||||
<td class="colorcell" id="#BFFFFF"> </td>
|
||||
<td class="colorcell" id="#BFDFFF"> </td>
|
||||
<td class="colorcell" id="#BFBFFF"> </td>
|
||||
<td class="colorcell" id="#DFBFFF"> </td>
|
||||
<td class="colorcell" id="#FFBFFF"> </td>
|
||||
<td class="colorcell" id="#FFBFDF"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#E0E0E0"> </td>
|
||||
<td class="colorcell" id="#FF8080"> </td>
|
||||
<td class="colorcell" id="#FFBF80"> </td>
|
||||
<td class="colorcell" id="#FFFF80"> </td>
|
||||
<td class="colorcell" id="#CFFF80"> </td>
|
||||
<td class="colorcell" id="#80FF80"> </td>
|
||||
<td class="colorcell" id="#80FFCF"> </td>
|
||||
<td class="colorcell" id="#80FFFF"> </td>
|
||||
<td class="colorcell" id="#80BFFF"> </td>
|
||||
<td class="colorcell" id="#8080FF"> </td>
|
||||
<td class="colorcell" id="#BF80FF"> </td>
|
||||
<td class="colorcell" id="#FF80FF"> </td>
|
||||
<td class="colorcell" id="#FF80BF"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#C0C0C0"> </td>
|
||||
<td class="colorcell" id="#FF4040"> </td>
|
||||
<td class="colorcell" id="#FFA040"> </td>
|
||||
<td class="colorcell" id="#FFFF40"> </td>
|
||||
<td class="colorcell" id="#B0FF40"> </td>
|
||||
<td class="colorcell" id="#40FF40"> </td>
|
||||
<td class="colorcell" id="#40FFB0"> </td>
|
||||
<td class="colorcell" id="#40FFFF"> </td>
|
||||
<td class="colorcell" id="#40A0FF"> </td>
|
||||
<td class="colorcell" id="#4040FF"> </td>
|
||||
<td class="colorcell" id="#A040FF"> </td>
|
||||
<td class="colorcell" id="#FF40FF"> </td>
|
||||
<td class="colorcell" id="#FF40A0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#808080"> </td>
|
||||
<td class="colorcell" id="#FF0000"> </td>
|
||||
<td class="colorcell" id="#FF8000"> </td>
|
||||
<td class="colorcell" id="#FFFF00"> </td>
|
||||
<td class="colorcell" id="#80FF00"> </td>
|
||||
<td class="colorcell" id="#00FF00"> </td>
|
||||
<td class="colorcell" id="#00FF80"> </td>
|
||||
<td class="colorcell" id="#00FFFF"> </td>
|
||||
<td class="colorcell" id="#0080FF"> </td>
|
||||
<td class="colorcell" id="#0000FF"> </td>
|
||||
<td class="colorcell" id="#8000FF"> </td>
|
||||
<td class="colorcell" id="#FF00FF"> </td>
|
||||
<td class="colorcell" id="#FF0080"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#646464"> </td>
|
||||
<td class="colorcell" id="#BF0000"> </td>
|
||||
<td class="colorcell" id="#BF6000"> </td>
|
||||
<td class="colorcell" id="#BFBF00"> </td>
|
||||
<td class="colorcell" id="#80BF00"> </td>
|
||||
<td class="colorcell" id="#00BF00"> </td>
|
||||
<td class="colorcell" id="#00BF80"> </td>
|
||||
<td class="colorcell" id="#00BFBF"> </td>
|
||||
<td class="colorcell" id="#0060BF"> </td>
|
||||
<td class="colorcell" id="#0000BF"> </td>
|
||||
<td class="colorcell" id="#6000BF"> </td>
|
||||
<td class="colorcell" id="#BF00BF"> </td>
|
||||
<td class="colorcell" id="#BF0060"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#484848"> </td>
|
||||
<td class="colorcell" id="#800000"> </td>
|
||||
<td class="colorcell" id="#804000"> </td>
|
||||
<td class="colorcell" id="#808000"> </td>
|
||||
<td class="colorcell" id="#588000"> </td>
|
||||
<td class="colorcell" id="#008000"> </td>
|
||||
<td class="colorcell" id="#008058"> </td>
|
||||
<td class="colorcell" id="#008080"> </td>
|
||||
<td class="colorcell" id="#004080"> </td>
|
||||
<td class="colorcell" id="#000080"> </td>
|
||||
<td class="colorcell" id="#400080"> </td>
|
||||
<td class="colorcell" id="#800080"> </td>
|
||||
<td class="colorcell" id="#800040"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="colorcell" id="#000000"> </td>
|
||||
<td class="colorcell" id="#500000"> </td>
|
||||
<td class="colorcell" id="#502800"> </td>
|
||||
<td class="colorcell" id="#505000"> </td>
|
||||
<td class="colorcell" id="#385000"> </td>
|
||||
<td class="colorcell" id="#005000"> </td>
|
||||
<td class="colorcell" id="#005028"> </td>
|
||||
<td class="colorcell" id="#005050"> </td>
|
||||
<td class="colorcell" id="#002850"> </td>
|
||||
<td class="colorcell" id="#000050"> </td>
|
||||
<td class="colorcell" id="#280050"> </td>
|
||||
<td class="colorcell" id="#500050"> </td>
|
||||
<td class="colorcell" id="#500028"> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<table cellpadding="1" cellspacing="1" border="0" width="100%">
|
||||
<tr>
|
||||
<td id="sample" class="body" width="80">
|
||||
<div id="source" style="width: 80px; border: 1px solid #000000; background: #ffffff" align="center">Sample</div>
|
||||
</td>
|
||||
<td id="custom" width="80">
|
||||
<input type="text" id="hexcolor" maxlength="20" onchange="setManualColor(this)" onkeydown="textKey(event, this)" style="width: 80px" title="Enter a custom color (e.g. '#FF0000' or 'red') here">
|
||||
</td>
|
||||
<td align="right" id="button" style="padding-right: 3px">
|
||||
<nobr>
|
||||
<input type="button" id="bok" class="button" value=" Ok ">
|
||||
<input type="button" class="button" value="Cancel" onclick="window.close()">
|
||||
</nobr>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,53 @@
|
||||
/* ==================================================================
|
||||
* Gossamer Threads Module Library - http://gossamer-threads.com/
|
||||
*
|
||||
* dialog
|
||||
* Author : Scott Beck
|
||||
* $Id: editor_dialog.css,v 1.3 2004/01/23 00:47:15 bao Exp $
|
||||
*
|
||||
* Copyright (c) 2000 Gossamer Threads Inc. All Rights Reserved.
|
||||
* ==================================================================
|
||||
*
|
||||
* Description: Style sheet for dialog pop-ups.
|
||||
*/
|
||||
|
||||
BODY {
|
||||
font-family : "MS Sans Serif";
|
||||
font-size : 8pt;
|
||||
background-color : buttonface;
|
||||
margin : 0;
|
||||
}
|
||||
|
||||
TD {
|
||||
font-family : "MS Sans Serif";
|
||||
font-size : 8pt;
|
||||
}
|
||||
|
||||
.sample {
|
||||
font-family : "MS Sans Serif";
|
||||
border-left : buttonshadow solid 1px;
|
||||
border-bottom : buttonhighlight solid 1px;
|
||||
border-right : buttonhighlight solid 1px;
|
||||
border-top : buttonshadow solid 1px;
|
||||
overflow : hidden;
|
||||
background-color : buttonface;
|
||||
}
|
||||
|
||||
.button {
|
||||
font-family : "MS Sans Serif";
|
||||
background-color : buttonface;
|
||||
font-size : 8pt;
|
||||
width : 80px;
|
||||
}
|
||||
|
||||
select {
|
||||
font-family : "MS Sans Serif";
|
||||
font-size : 8pt;
|
||||
border-bottom : buttonhighlight solid 2px;
|
||||
border-left : buttonshadow solid 2px;
|
||||
border-right : buttonhighlight solid 2px;
|
||||
border-top : buttonshadow solid 2px;
|
||||
overflow : hidden;
|
||||
cursor : default;
|
||||
}
|
||||
|
@ -0,0 +1,15 @@
|
||||
<html>
|
||||
<head>
|
||||
<script>
|
||||
var host = window.location.protocol + '//' + window.location.hostname
|
||||
document.write('<base href="' + host + '">');
|
||||
</script>
|
||||
<style>
|
||||
body {
|
||||
font-family : "<%if advanced_editor_font%><%advanced_editor_font%><%else%>Verdana,Arial,sans-serif<%endif%>";
|
||||
font-size : "x-small"; <%-- font sizes 1-7: xx-small,x-small,small,medium,large,x-large,xx-large --%>
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body id="inner_content" bgcolor="<%if advanced_editor_background%><%advanced_editor_background%><%else%>#FFFFFF<%endif%>" onLoad="parent.inner_content_loaded = true"></body>
|
@ -0,0 +1,313 @@
|
||||
<html>
|
||||
<head><title>Select Font</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
<script>
|
||||
|
||||
var ie = false;
|
||||
var ie6 = false;
|
||||
if (window.navigator.appVersion.search('MSIE') > 0) ie = true;
|
||||
|
||||
// Allow for possible future versions of IE, which hopefully will support what IE6 supports
|
||||
if (window.navigator.appVersion.search('MSIE 6') > 0 ||
|
||||
window.navigator.appVersion.search('MSIE 7') > 0 ||
|
||||
window.navigator.appVersion.search('MSIE 8') > 0)
|
||||
ie6 = true;
|
||||
|
||||
var fontList, styleList, sizeList, underline, colorList, fontBox, styleBox, sizeBox, sample, dlg, dialogWindow;
|
||||
|
||||
function initDialog() {
|
||||
fontList = document.getElementById('fontList');
|
||||
styleList = document.getElementById('styleList');
|
||||
sizeList = document.getElementById('sizeList');
|
||||
underline = document.getElementById('underline');
|
||||
fontBox = document.getElementById('fontBox');
|
||||
colorList = document.getElementById('colorList');
|
||||
styleBox = document.getElementById('styleBox');
|
||||
sizeBox = document.getElementById('sizeBox');
|
||||
sample = document.getElementById('sample');
|
||||
dlg = document.getElementById('dlg');
|
||||
|
||||
populateFont();
|
||||
|
||||
opener.fontLoad(fontList, styleList, sizeList, colorList, underline);
|
||||
|
||||
fontList.onchange = loadFont;
|
||||
styleList.onchange = loadFont;
|
||||
sizeList.onchange = loadFont;
|
||||
underline.onclick = loadFont;
|
||||
colorList.onchange = loadFont;
|
||||
|
||||
if (!ie) {
|
||||
// Mozilla's default groove coloring isn't very nice; use a better one:
|
||||
document.getElementById('groove1').style.borderColor = 'ThreeDLightShadow';
|
||||
document.getElementById('groove2').style.borderColor = 'ThreeDLightShadow';
|
||||
|
||||
/* The following Javascript is used to change the styles on the various font
|
||||
* elements under Mozilla to adjust them slightly to look more or less the same
|
||||
* as they do under IE. The specific problem arises because IE considers
|
||||
* positions to be relative to the element excluding the border, but Mozilla
|
||||
* includes the border. Mozilla's approach seems more "correct", but since the
|
||||
* primary user base of the advanced editor is using IE, we do the dynamic
|
||||
* adjustments for Mozilla instead of IE. They are relatively minor tweaks,
|
||||
* and taking them out certainly won't break anything.
|
||||
*/
|
||||
fontBox.style.width = parseInt(fontBox.style.width) + 2 + 'px';
|
||||
fontBox.style.left = parseInt(fontBox.style.left) - 1 + 'px';
|
||||
fontBox.style.top = parseInt(fontBox.style.top) - 1 + 'px';
|
||||
styleBox.style.width = parseInt(styleBox.style.width) + 2 + 'px';
|
||||
styleBox.style.left = parseInt(styleBox.style.left) - 1 + 'px';
|
||||
styleBox.style.top = parseInt(styleBox.style.top) - 1 + 'px';
|
||||
sizeBox.style.width = parseInt(sizeBox.style.width) + 2 + 'px';
|
||||
sizeBox.style.left = parseInt(sizeBox.style.left) - 1 + 'px';
|
||||
sizeBox.style.top = parseInt(sizeBox.style.top) - 1 + 'px';
|
||||
|
||||
var sampleTable = document.getElementById('sampleTable');
|
||||
sampleTable.style.height = parseInt(sampleTable.style.height) + 2 + 'px';
|
||||
sample.style.width = parseInt(sample.style.width) + 4 + 'px';
|
||||
}
|
||||
|
||||
loadFont();
|
||||
}
|
||||
|
||||
function populateFont() {
|
||||
if (ie6) {
|
||||
var fonts = [];
|
||||
for (var i = 1; i <= dlg.fonts.count; i++) fonts[i - 1] = dlg.fonts(i);
|
||||
fonts.sort();
|
||||
for (var i = 0; i < fonts.length; i++) addFont(fontList, fonts[i]);
|
||||
}
|
||||
else {
|
||||
addFont(fontList, 'Arial');
|
||||
addFont(fontList, 'Arial Black');
|
||||
addFont(fontList, 'Arial Narrow');
|
||||
addFont(fontList, 'Century Gothic');
|
||||
addFont(fontList, 'Comic Sans MS');
|
||||
addFont(fontList, 'Courier');
|
||||
addFont(fontList, 'Courier New');
|
||||
addFont(fontList, 'Fixedsys');
|
||||
addFont(fontList, 'Garamond');
|
||||
addFont(fontList, 'Georgia');
|
||||
addFont(fontList, 'Lucida Console');
|
||||
addFont(fontList, 'MS Sans Serif');
|
||||
addFont(fontList, 'MS Serif');
|
||||
addFont(fontList, 'System');
|
||||
addFont(fontList, 'Tahoma');
|
||||
addFont(fontList, 'Times New Roman');
|
||||
addFont(fontList, 'Verdana');
|
||||
addFont(fontList, 'Webdings');
|
||||
addFont(fontList, 'Wingdings');
|
||||
}
|
||||
}
|
||||
|
||||
function addFont (sel, fontName) {
|
||||
var o = document.createElement("OPTION");
|
||||
sel.options.add(o);
|
||||
o.innerHTML = fontName;
|
||||
o.value = fontName;
|
||||
}
|
||||
|
||||
function loadFont() {
|
||||
if (fontList.selectedIndex >= 0) {
|
||||
var font = fontList.options[fontList.selectedIndex].value;
|
||||
fontBox.value = font
|
||||
sample.style.fontFamily = font;
|
||||
}
|
||||
if (styleList.selectedIndex >= 0) {
|
||||
var style = styleList.options[styleList.selectedIndex].value;
|
||||
if (style == 'r') {
|
||||
styleBox.value = 'Regular';
|
||||
sample.style.fontStyle = 'normal';
|
||||
sample.style.fontWeight = 'normal';
|
||||
}
|
||||
else if (style == 'b') {
|
||||
styleBox.value = 'Bold';
|
||||
sample.style.fontStyle = 'normal';
|
||||
sample.style.fontWeight = 'bold';
|
||||
}
|
||||
else if (style == 'i') {
|
||||
styleBox.value = 'Italic';
|
||||
sample.style.fontWeight = 'normal';
|
||||
sample.style.fontStyle = 'italic';
|
||||
}
|
||||
else if (style == 'bi') {
|
||||
styleBox.value = 'Bold Italic';
|
||||
sample.style.fontWeight = 'bold';
|
||||
sample.style.fontStyle = 'italic';
|
||||
}
|
||||
}
|
||||
|
||||
if (sizeList.selectedIndex >= 0) {
|
||||
sizeBox.value = sizeList.options[sizeList.selectedIndex].innerHTML;
|
||||
sample.style.fontSize = sizeList.options[sizeList.selectedIndex].innerHTML;
|
||||
}
|
||||
|
||||
if (colorList.selectedIndex >= 0) {
|
||||
sample.style.color = colorList.options[colorList.selectedIndex].value;
|
||||
}
|
||||
|
||||
if (underline.checked)
|
||||
sample.style.textDecoration = 'underline';
|
||||
else
|
||||
sample.style.textDecoration = 'none';
|
||||
|
||||
|
||||
}
|
||||
|
||||
function colorDialog (do_equals, width, height) {
|
||||
/*------------------------------------------------------------
|
||||
* show dialog window
|
||||
*/
|
||||
var url = opener.baseURL + ';page=' + do_equals + '.html;' + opener.extraURL;
|
||||
if (!dialogWindow) dialogWindow = new Object();
|
||||
|
||||
if (dialogWindow.win && !dialogWindow.win.closed && dialogWindow.url == url) {
|
||||
dialogWindow.win.focus();
|
||||
}
|
||||
else {
|
||||
if (dialogWindow.win && !dialogWindow.win.closed) dialogWindow.win.close();
|
||||
|
||||
dialogWindow.returnFunc = colorReturn;
|
||||
dialogWindow.url = url;
|
||||
dialogWindow.width = width;
|
||||
dialogWindow.height = height;
|
||||
dialogWindow.name = Math.random().toString().replace(/\./, "");
|
||||
|
||||
dialogWindow.left = (screen.width - width) / 2;
|
||||
dialogWindow.top = (screen.height - height) / 2;
|
||||
dialogWindow.attribs = 'left=' + dialogWindow.left + ',' +
|
||||
'top=' + dialogWindow.top + ',' +
|
||||
'resizable=no,statusbar=yes,' +
|
||||
'width=' + dialogWindow.width + ',' +
|
||||
'height=' + dialogWindow.height;
|
||||
|
||||
dialogWindow.currentColor = colorList.value;
|
||||
dialogWindow.win = window.open(dialogWindow.url, dialogWindow.name, dialogWindow.attribs);
|
||||
dialogWindow.win.focus();
|
||||
}
|
||||
}
|
||||
|
||||
function colorReturn(color) {
|
||||
var clr = color.toUpperCase();
|
||||
var select;
|
||||
if (clr == '#000000') select = 'black';
|
||||
else if (clr == '#000080') select = 'navy';
|
||||
else if (clr == '#0000FF') select = 'blue';
|
||||
else if (clr == '#008000') select = 'green';
|
||||
else if (clr == '#008080') select = 'teal';
|
||||
else if (clr == '#00FF00') select = 'lime';
|
||||
else if (clr == '#00FFFF') select = 'aqua';
|
||||
else if (clr == '#800000') select = 'maroon';
|
||||
else if (clr == '#800080') select = 'purple';
|
||||
else if (clr == '#808000') select = 'olive';
|
||||
else if (clr == '#808080') select = 'gray';
|
||||
else if (clr == '#C0C0C0') select = 'silver';
|
||||
else if (clr == '#FF0000') select = 'red';
|
||||
else if (clr == '#FF00FF') select = 'fuchsia';
|
||||
else if (clr == '#FFFF00') select = 'yellow';
|
||||
else if (clr == '#FFFFFF') select = 'white';
|
||||
|
||||
if (select) colorList.value = select;
|
||||
else {
|
||||
colorList.selectedIndex = colorList.options.length - 1;
|
||||
colorList.options[colorList.selectedIndex].value = color;
|
||||
colorList.options[colorList.selectedIndex].innerHTML = color;
|
||||
}
|
||||
|
||||
loadFont();
|
||||
}
|
||||
|
||||
|
||||
function returnFont() {
|
||||
var font, size, color, under, bold, italic;
|
||||
|
||||
if (fontList.selectedIndex >= 0) font = fontList.options[fontList.selectedIndex].value;
|
||||
if (sizeList.selectedIndex >= 0) size = sizeList.options[sizeList.selectedIndex].value;
|
||||
if (colorList.selectedIndex >= 0) color = colorList.options[colorList.selectedIndex].value;
|
||||
var under = underline.checked;
|
||||
var bold = /b/.test(styleList.value);
|
||||
var italic = /i/.test(styleList.value);
|
||||
opener.dialogWindow.returnFunc(font, size, color, bold, italic, under);
|
||||
window.close();
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body onLoad="initDialog()" class="body">
|
||||
|
||||
<!-- In IE6, this object can be used to get a list of system fonts. Using document.write to create it resulted in a crash on some computers -->
|
||||
<object id="dlg" classid="clsid:3050f819-98b5-11cf-bb82-00aa00bdce0b" width="0px" height="0px"></object>
|
||||
|
||||
<div style="position: absolute; top: 7px; left: 10px" >Font:</div>
|
||||
<input type="text" id="fontBox" style="font-size: 8pt; font-family: MS Sans Serif; height: 22px; width: 160px; position: absolute; top: 27px; left: 10px">
|
||||
<select id="fontList" size="7" style="width: 162px; position: absolute; top: 49px; left: 9px"></select>
|
||||
|
||||
<div style="border: 2px groove; position: absolute; top: 175px; left: 10px; height: 100px; width: 160px" id="groove1"><div style="position: relative; top: -9px; left: 5px; width: 3.75em; background-color: ButtonFace"> Effects </div></div>
|
||||
<input type="checkbox" id="underline" style="position: absolute; top: 192px; left: 25px">
|
||||
<div type="text" style="font-family: 'MS Sans Serif'; font-size: 8pt; border-width: 0px; position: absolute; top: 194px; left: 48px; width: 60px" onclick="underline.click()">Underline</div>
|
||||
|
||||
<div style="position: absolute; top: 218px; left: 25px">Color:</div>
|
||||
<select id="colorList" size="1" style="font-face: 8pt; width: 80; position: absolute; top: 238px; left: 25px">
|
||||
<option value="black">Black</option>
|
||||
<option value="gray">Gray</option>
|
||||
<option value="silver">Silver</option>
|
||||
<option value="white">White</option>
|
||||
<option value="lime">Lime</option>
|
||||
<option value="green">Green</option>
|
||||
<option value="yellow">Yellow</option>
|
||||
<option value="olive">Olive</option>
|
||||
<option value="red">Red</option>
|
||||
<option value="maroon">Maroon</option>
|
||||
<option value="fuchsia">Fuchsia</option>
|
||||
<option value="purple">Purple</option>
|
||||
<option value="aqua">Aqua</option>
|
||||
<option value="teal">Teal</option>
|
||||
<option value="navy">Navy</option>
|
||||
<option value="blue">Blue</option>
|
||||
<option value="">Custom</option>
|
||||
</select>
|
||||
<script>
|
||||
document.write('<button style="position: absolute; top: 235px; left: 115px; height: 25px; width: 25px; padding: 0px" onclick="colorDialog(\'editor_color\', 345, 193)" onmousedown="pressColorButton()" onmouseup="releaseColorButton()" onmouseout="releaseColorButton()">' +
|
||||
'<img src="' + opener.imageURL + '/toolbar/font_color.gif" id="colorButtonImage" style="position: relative; ' + (ie ? 'left: -3px' : 'left: -5px') + '; top: -1px; width: 23px; height: 23px; border: 0px"></button>');
|
||||
function pressColorButton () {
|
||||
var img = document.getElementById('colorButtonImage');
|
||||
img.style.left = ie ? '-2px' : '-4px';
|
||||
img.style.top = '0px';
|
||||
}
|
||||
function releaseColorButton () {
|
||||
var img = document.getElementById('colorButtonImage');
|
||||
img.style.left = ie ? '-3px' : '-5px';
|
||||
img.style.top = '-1px';
|
||||
}
|
||||
</script>
|
||||
|
||||
<div style="position: absolute; top: 7px; left: 180px">Style:</div>
|
||||
<input type="text" id="styleBox" style="font-size: 8pt; height: 22px; width: 77px; position: absolute; top: 27px; left: 185px" readonly>
|
||||
<select id="styleList" size="7" style="width: 79px; position: absolute; top: 49px; left: 184px">
|
||||
<option value="r">Regular</option>
|
||||
<option value="b">Bold</option>
|
||||
<option value="i">Italic</option>
|
||||
<option value="bi">Bold Italic</option>
|
||||
</select>
|
||||
|
||||
<div style="position: absolute; top: 7px; left: 277px">Size:</div>
|
||||
<input type="text" id="sizeBox" style="font-size: 8pt; height: 22px; width: 60px; position: absolute; top: 27px; left: 277px" readonly>
|
||||
<select id="sizeList" size="7" style="width: 62px; position: absolute; top: 49px; left: 276px">
|
||||
<option value="1">8</option>
|
||||
<option value="2">10</option>
|
||||
<option value="3">12</option>
|
||||
<option value="4">14</option>
|
||||
<option value="5">18</option>
|
||||
<option value="6">24</option>
|
||||
<option value="7">36</option>
|
||||
</select>
|
||||
|
||||
<div style="border: 2px groove; position: absolute; top: 175px; left: 185px; height: 100px; width: 153px" id="groove2"><div style="position: relative; top: -9px; left: 5px; width: 3.75em; background-color: buttonface"> Sample </div></div>
|
||||
<table width="131" style="position: absolute; top: 189px; left: 195px; height: 76px" cellpadding=0 cellspacing=0 id="sampleTable"><tr><td valign="middle" align="center" class="sample"><div style="overflow: hidden; width: 131px" id="sample">AaBbYyZz</div></td></tr></table>
|
||||
|
||||
<button class="button" onclick="returnFont()" style="position: absolute; top: 26px; left: 345px">OK</button>
|
||||
<button class="button" onclick="window.close()" style="position: absolute; top: 54px; left: 345px">Cancel</button>
|
||||
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,53 @@
|
||||
<html>
|
||||
<head><title>Insert Form</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
<script>
|
||||
|
||||
var name, action, method, encoding;
|
||||
|
||||
function initDialog () {
|
||||
name = document.getElementById('name');
|
||||
action = document.getElementById('action');
|
||||
method = document.getElementById('method');
|
||||
encoding= document.getElementById('encoding');
|
||||
}
|
||||
|
||||
function done () {
|
||||
var html = '<form';
|
||||
if (name.value) html += ' name="' + name.value + '"';
|
||||
if (action.value) html += ' action="' + action.value + '"';
|
||||
html += ' method="' + method.options[method.selectedIndex].value + '"';
|
||||
if (encoding.value) start += ' enctype="' + encoding.value + '"';
|
||||
html += ' style="border: 1px dotted red; padding: 2px"><p><br></p></form>';
|
||||
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
</script>
|
||||
</head>
|
||||
<body class=body onload="initDialog()">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td><font size=1>Name: </font></td><td><input id=name size="30" class=textbox></input></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td><font size=1>Action: </font></td><td><input id=action value="http://" size="30" class=textbox></input></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td><font size=1>Method:</font></td>
|
||||
<td><select id=method class=textbox><option>POST</option><option>GET</option></select></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td><font size=1>Encoding Type:</font></td><td><input id=encoding size="30" class=textbox></input></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,192 @@
|
||||
<html>
|
||||
<head>
|
||||
<style type="text/css" media="screen">
|
||||
<!--
|
||||
body { scrollbar-base-color: #D6D6D6; scrollbar-arrow-color: #000000; }
|
||||
a.menu:link,a.menu:visited { font-size:11; color:black; text-decoration:none; font-face:'Verdana,Helvetica,Arial'; font-weight:600; }
|
||||
a.menu:hover { font-size:11; color:#256A19; text-decoration:underline; font-face:'Verdana,Helvetica,Arial'; font-weight:600; }
|
||||
.submit { background-color:#7a9f54; font-family: Verdana, Arial, Helvetica, sans-serif; font-size:10px; color:white; font-weight:bold; }
|
||||
.button { background-color:#c5e1a3; color: black; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; }
|
||||
a:link { color:#003366; text-decoration:none; font-face:'Verdana,Helvetica,Arial,sans-serif'; }
|
||||
a:visited { color:#333366; text-decoration:none; font-face:'Verdana,Helvetica,Arial,sans-serif'; }
|
||||
a:hover { color:#3366cc; text-decoration:underline; font-face:'Verdana,Helvetica,Arial,sans-serif'; }
|
||||
-->
|
||||
</style>
|
||||
|
||||
<%include editor_style.css%>
|
||||
|
||||
<script language="Javascript">
|
||||
<!--
|
||||
<%include editor.js%>
|
||||
// -->
|
||||
</script>
|
||||
|
||||
<!-- Object used to create a table -->
|
||||
</head>
|
||||
<body leftmargin="0" topmargin="0" bgcolor="#D6D6D6">
|
||||
<script>
|
||||
if (is_ie)
|
||||
document.write('<div class="toolbar" id="File" title="File" onselectstart="return cancel_event();">\n' +
|
||||
'<!--====================================-->\n' +
|
||||
'<span title="Handle" class=tb_handle></span>\n' +
|
||||
'<span id="cut" title="Cut Div" onclick="command(\'Cut\')" class="tb_menu_item">\n' +
|
||||
'<img id="cutImage" title="Cut" class="tb_icon" src="' + imageURL + '/toolbar/cut.gif" alt="Cut">\n' +
|
||||
'</span>\n' +
|
||||
'<span id="copy" title="Copy Div" onclick="command(\'Copy\')" class="tb_menu_item">\n' +
|
||||
'<img id="copyImage" title="Copy" class="tb_icon" src="' + imageURL + '/toolbar/copy.gif" alt="Copy">\n' +
|
||||
'</span>\n' +
|
||||
'<span id="paste" title="Paste Div" onclick="command(\'Paste\')" class="tb_menu_item">\n' +
|
||||
'<img id="pasteImage" title="Paste" class="tb_icon" src="' + imageURL + '/toolbar/paste.gif" alt="Paste">\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n');
|
||||
document.write('<div class="toolbar" id="Restore" title="Restore" onselectstart="return cancel_event();">\n' +
|
||||
'<!--====================================-->\n' +
|
||||
'<span title="Handle" class=tb_handle></span>\n' +
|
||||
'<span id="undo" title="Undo Div" onclick="command(\'undo\')" class="tb_menu_item">\n' +
|
||||
'<img id="undoImage" title="Undo" class="tb_icon" src="' + imageURL + '/toolbar/undo.gif" alt="Undo">\n' +
|
||||
'</span>\n' +
|
||||
'<span id="redo" title="Redo Div" onclick="command(\'redo\')" class="tb_menu_item">\n' +
|
||||
'<img id="redoImage" title="Redo" class="tb_icon" src="' + imageURL + '/toolbar/redo.gif" alt="Redo">\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n' +
|
||||
'<div class="toolbar" id="Format" title="Format" onselectstart="return cancel_event ();">\n' +
|
||||
'<!--=====================================-->\n' +
|
||||
'<span title="Handle" class=tb_handle></span>\n' +
|
||||
'<span id="bold" title="Bold Item" onclick="command(\'Bold\');" class="tb_menu_item">\n' +
|
||||
'<img id="boldImage" title="Bold" class="tb_icon" src="' + imageURL + '/toolbar/bold.gif" alt="Bold"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="italic" title="Italic Item" onclick="command(\'Italic\');" class="tb_menu_item">\n' +
|
||||
'<img id="italicImage" title="Italic" class="tb_icon" src="' + imageURL + '/toolbar/italic.gif" alt="Italic"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="underline" title="Underline Item" onclick="command(\'Underline\');" class="tb_menu_item">\n' +
|
||||
'<img id="underlineImage" title="Underline" class="tb_icon" src="' + imageURL + '/toolbar/under.gif" alt="Underline"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Seperator" class="tb_sep"></span>\n' +
|
||||
'<span id="jleft" title="Left Div" TEXT_MODE=\'no\' onclick="command(\'JustifyLeft\');" class="tb_menu_item">\n' +
|
||||
'<img id="jleftImage" title="Justify Left" class="tb_icon" src="' + imageURL + '/toolbar/left.gif" alt="Justify Left"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="jcenter" title="Center Div" TEXT_MODE=\'no\' onclick="command(\'JustifyCenter\');" class="tb_menu_item">\n' +
|
||||
'<img id="jcenterImage" title="Justify Center" class="tb_icon" src="' + imageURL + '/toolbar/center.gif" alt="Justify Center"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="jright" title="Right Div" TEXT_MODE=\'no\' onclick="command(\'JustifyRight\');" class="tb_menu_item">\n' +
|
||||
'<img id="jrightImage" title="Justify Right" class="tb_icon" src="' + imageURL + '/toolbar/right.gif" alt="Justify Right"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Seperator" class="tb_sep"></span>\n' +
|
||||
'<span id="ol" title="OL Div" TEXT_MODE=\'no\' onclick="command(\'InsertOrderedList\');" class="tb_menu_item">\n' +
|
||||
'<img id="olImage" title="Ordered List" class="tb_icon" src="' + imageURL + '/toolbar/numlist.gif" alt="Ordered List"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="ul" title="UL Div" TEXT_MODE=\'no\' onclick="command(\'InsertUnorderedList\');" class="tb_menu_item">\n' +
|
||||
'<img id="ulImage" title="Unordered List" class="tb_icon" src="' + imageURL + '/toolbar/bullist.gif" alt="Unordered List"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="od" title="Outdent Div" onclick="command(\'Outdent\')" TEXT_MODE=\'no\' class="tb_menu_item">\n' +
|
||||
'<img id ="odImage" title="Outdent" class="tb_icon" src="' + imageURL + '/toolbar/outdent.gif" alt="Outdent"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="id" title="Indent Div" onclick="command(\'Indent\')" TEXT_MODE=\'no\' class="tb_menu_item">\n' +
|
||||
'<img id="idImage" title="Indent" class="tb_icon" src="' + imageURL + '/toolbar/indent.gif" alt="Indent"></img>\n' +
|
||||
'</span>\n' +
|
||||
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Seperator" class="tb_sep"></span>\n' +
|
||||
'<span id="font" title="Font Div" TEXT_MODE=\'no\' onclick="showDialog(\'editor_font\', 434, 285, returnFont)" class="tb_menu_item">\n' +
|
||||
'<img id="fontImage" title="Font Face" class="tb_icon" src="' + imageURL + '/toolbar/font.gif" alt="Font Face"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="fcolor" title="Font Div" TEXT_MODE=\'no\' onclick="colorDialog(\'fcolor\', \'ForeColor\', \'color_iframe\')" class="tb_menu_item">\n' +
|
||||
'<img id="fcolorImage" title="Font Color" class="tb_icon" src="' + imageURL + '/toolbar/font_color.gif" alt="Font Color"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="bgcolor" title="Highlight Color" TEXT_MODE=\'no\' onclick="colorDialog(\'bgcolor\', \'hilitecolor\', \'color_iframe\')" class="tb_menu_item">\n' +
|
||||
'<img id="bgcolorImage" title="<%if is_ie%>Background<%else%>Highlight<%endif%> Color" class="tb_icon" src="' + imageURL + '/toolbar/bgcolor.gif" alt="Highlight Color"></img>\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n' +
|
||||
|
||||
'<div class="toolbar" id="Misc" title="Misc" onselectstart="return cancel_event();">\n' +
|
||||
'<!--=====================================-->\n' +
|
||||
'<span title="Handle" class=tb_handle></span>\n' +
|
||||
'<span id="horRule" title="Horizontal Rule Div" onclick="command(\'InsertHorizontalRule\')" class="tb_menu_item">\n' +
|
||||
'<img id="horRuleImage" title="Horizontal Rule" class="tb_icon" src="' + imageURL + '/toolbar/hr.gif" alt="Horizontal Rule"></img>\n' +
|
||||
'</span> \n' +
|
||||
'<span id="insImage" title="Image Div" onclick="showDialog(\'editor_image\', 370, 200, returnImage)" class="tb_menu_item">\n' +
|
||||
' <img id="insImageImage" title="Image" class="tb_icon" src="' + imageURL + '/toolbar/image.gif" alt="Insert Image"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="link" title="Link Div" onclick="showDialog(\'editor_link\', 363, 80, returnLink)" class="tb_menu_item">\n' +
|
||||
' <img id="linkImage" title="Link" class="tb_icon" src="' + imageURL + '/toolbar/link.gif" alt="Create Link"></img>\n' +
|
||||
'</span>\n');
|
||||
if (is_ie)
|
||||
document.write('</div>\n' +
|
||||
'<div class="toolbar" id="TableDiv" title="Table" onselectstart="return cancel_event ();">\n' +
|
||||
'<!--=====================================-->\n' +
|
||||
'<span title="Handle" class=tb_handle></span>\n' +
|
||||
'<span id="table" title="Insert Table Div" onclick="showDialog(\'editor_table\', 370, 150, returnTable)" class="tb_menu_item">\n' +
|
||||
'<img id="tableImage" title="Insert Table" class="tb_icon" src="' + imageURL + '/toolbar/instable.gif" alt="Insert Table"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Sperator" class="tb_sep"></span>\n' +
|
||||
'<span id="insCell" title="Insert Cell Div" onclick="insert_cell()" class="tb_menu_item">\n' +
|
||||
'<img id="insCellImage" title="Insert Cell" class="tb_icon" src="' + imageURL + '/toolbar/inscell.gif" alt="Insert Cell"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="insRow" title="Insert Row Div" onclick="insert_row()" class="tb_menu_item">\n' +
|
||||
'<img id="insRowImage" title="Insert Row" class="tb_icon" src="' + imageURL + '/toolbar/insrow.gif" alt="Insert Row"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="insCol" title="Insert Col Div" onclick="insert_col()" class="tb_menu_item">\n' +
|
||||
'<img id="insColImage" title="Insert Col" class="tb_icon" src="' + imageURL + '/toolbar/inscol.gif" alt="Insert Col"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Sperator" class="tb_sep"></span>\n' +
|
||||
'<span id="delCell" title="Delete Cells Div" onclick="delete_cell()" class="tb_menu_item">\n' +
|
||||
'<img id="delCellImage" title="Delete Cells" class="tb_icon" src="' + imageURL + '/toolbar/delcell.gif" alt="Delete Cell"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="delRow" title="Delete Rows Div" onclick="delete_row()" class="tb_menu_item">\n' +
|
||||
'<img id="delRowImage" title="Delete Rows" class="tb_icon" src="' + imageURL + '/toolbar/delrow.gif" alt="Delete Row"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="delCol" title="Delete Cols Div" onclick="delete_col()" class="tb_menu_item">\n' +
|
||||
'<img id="delColImage" title="Delete Cols" class="tb_icon" src="' + imageURL + '/toolbar/delcol.gif" alt="Delete Col"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<!----------------------------------------->\n' +
|
||||
'<span title="Sperator" class="tb_sep"></span>\n' +
|
||||
'<span id="merge" title="Merge Cells Div" onclick="merge_cell()" class="tb_menu_item">\n' +
|
||||
'<img id="mergeImage" title="Merge Cells" class="tb_icon" src="' + imageURL + '/toolbar/mrgcell.gif" alt="Merge Cells"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="split" title="Split Cell Div" onclick="split_cell()" class="tb_menu_item">\n' +
|
||||
'<img id="splitImage" title="Split Cell" class="tb_icon" src="' + imageURL + '/toolbar/mrgcell.gif" alt="Split Cell"></img>\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n');
|
||||
else
|
||||
document.write('<span id="table" title="Insert Table Div" onclick="showDialog(\'editor_table\', 370, 150, returnTable)" class="tb_menu_item">\n' +
|
||||
'<img id="tableImage" title="Insert Table" class="tb_icon" src="' + imageURL + '/toolbar/instable.gif" alt="Insert Table"></img>\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n');
|
||||
|
||||
if (formTools)
|
||||
document.write('<div class="toolbar" id="FormDiv" title="Form" onselectstart="return cancel_event();">\n' +
|
||||
'<!--====================================-->\n' +
|
||||
'<span title="Form objects" class="tb_sep"></span>\n' +
|
||||
'<span id="form" title="Form" onclick="showDialog(\'editor_form\', 370, 180, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="formImage" title="Form" class="tb_icon" src="' + imageURL + '/toolbar/form.gif" alt="Form"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="text" title="Text Field" onclick="showDialog(\'editor_text\', 370, 180, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="textImage" title="Text" class="tb_icon" src="' + imageURL + '/toolbar/text.gif" alt="Text Field"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="textarea" title="Textarea" onclick="showDialog(\'editor_textarea\', 370, 220, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="textareaImage" title="Textarea" class="tb_icon" src="' + imageURL + '/toolbar/textarea.gif" alt="Textarea"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="checkbox" title="Checkbox" onclick="showDialog(\'editor_checkbox\', 370, 180, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="checkboxImage" title="Checkbox" class="tb_icon" src="' + imageURL + '/toolbar/checkbox.gif" alt="Checkbox"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="radio" title="Radio" onclick="showDialog(\'editor_radio\', 370, 200, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="radioImage" title="Radio" class="tb_icon" src="' + imageURL + '/toolbar/radio.gif" alt="Checkbox"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="select" title="Select" onclick="showDialog(\'editor_select\', 560, 290, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="selectImage" title="Select" class="tb_icon" src="' + imageURL + '/toolbar/select.gif" alt="Select"></img>\n' +
|
||||
'</span>\n' +
|
||||
'<span id="button" title="Button" onclick="showDialog(\'editor_button\', 370, 200, returnForm)" class="tb_menu_item">\n' +
|
||||
' <img id="buttonImage" title="Button" class="tb_icon" src="' + imageURL + '/toolbar/button.gif" alt="Button"></img>\n' +
|
||||
'</span>\n' +
|
||||
'</div>\n');
|
||||
</script>
|
||||
<iframe width="100%" height="200" name="editor_iframe" id="editor_iframe" style="position: absolute" src=""></iframe>
|
||||
<script>
|
||||
document.getElementById("editor_iframe").src = baseURL + ';page=editor_editor.html;' + extraURL;
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,82 @@
|
||||
<html>
|
||||
<head><title>Insert Image</title>
|
||||
<style><%include editor_dialog.css%></style>
|
||||
<script>
|
||||
function formSubmit() {
|
||||
var img_source = document.getElementById('img_source');
|
||||
var img_title = document.getElementById('img_title');
|
||||
var img_width = document.getElementById('img_width');
|
||||
var img_height = document.getElementById('img_height');
|
||||
var img_border = document.getElementById('img_border');
|
||||
var img_align = document.getElementById('img_align');
|
||||
if (img_source.value != '') {
|
||||
var img = document.createElement('IMG');
|
||||
img.src = img_source.value;
|
||||
|
||||
if (img_title.value) img.title = img_title.value;
|
||||
if (img_width.value) img.width = img_width.value;
|
||||
if (img_height.value) img.height= img_height.value;
|
||||
if (img_border.value) img.height= img_border.value;
|
||||
if (img_align.options[img_align.selectedIndex].value != '') {
|
||||
img.align = img_align.options[img_align.selectedIndex].value;
|
||||
}
|
||||
opener.dialogWindow.returnFunc(img);
|
||||
window.close();
|
||||
}
|
||||
else {
|
||||
alert("Please enter image source");
|
||||
}
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body class=body>
|
||||
<BR>
|
||||
<table border=0 cellpadding=3 align=center width="100%">
|
||||
<tr class="body">
|
||||
<td valign="top"><div>Source:</div></td>
|
||||
<td colspan="2">
|
||||
<input size="37" id="img_source" name="img_source" value="http://">
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="body">
|
||||
<td class="body" width="25%">Title:</td>
|
||||
<td class="body" width="75%" colspan="2">
|
||||
<input type="text" id="img_title" size="37">
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="body">
|
||||
<td class="body" width="25%">Width:</td>
|
||||
<td class="body" width="20%">
|
||||
<input type="text" id="img_width" size="5">
|
||||
</td>
|
||||
<td class="body" align="right">Height:
|
||||
<input type="text" id="img_height" size="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="body">
|
||||
<td class="body" width="25%">Border:</td>
|
||||
<td class="body" width="20%">
|
||||
<input type="text" id="img_border" size="5">
|
||||
</td>
|
||||
<td class="body" align="right">Alignment:
|
||||
<select id="img_align">
|
||||
<option =''>Normal</option>
|
||||
<option ='bottom'>Bottom</option>
|
||||
<option ='left'>Left</option>
|
||||
<option ='middle'>Middle</option>
|
||||
<option ='right'>Right</option>
|
||||
<option ='texttop'>Texttop</option>
|
||||
<option ='top'>Top</option>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td align="right" colspan="3">
|
||||
<HR>
|
||||
<input type="button" class=button onclick="formSubmit()" value="Submit">
|
||||
<input type="button" class=button onclick="window.close(); opener.setFocus();" value="Cancel">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,20 @@
|
||||
<html>
|
||||
<head><title>Create a Link</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
</head>
|
||||
<body class=body>
|
||||
<BR>
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td valign="top"><div>URL:</div></td>
|
||||
<td align="right">
|
||||
<input size="40" id="url" name="url" value="http://"><BR>
|
||||
<input type="button" class=button onclick="opener.dialogWindow.returnFunc(document.getElementById('url').value);window.close();" value="Submit">
|
||||
<input type="button" class=button onclick="window.close();" value="Cancel">
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,70 @@
|
||||
<html>
|
||||
<head><title>Radio</title>
|
||||
<style><%include editor_dialog.css%></style>
|
||||
<script>
|
||||
|
||||
var name, value, initial, tab;
|
||||
function initDialog() {
|
||||
name = document.getElementById('name');
|
||||
value = document.getElementById('value');
|
||||
initial = document.getElementById('initial');
|
||||
tab = document.getElementById('tab');
|
||||
}
|
||||
|
||||
function done () {
|
||||
/* ---------------------------------------------------------
|
||||
* When the user hits done this fucntion is called to
|
||||
* produce the html from the div tags. It then inserts
|
||||
* it into the edit window and closes this window.
|
||||
*/
|
||||
var html = '<input type="radio"';
|
||||
if (name.value)
|
||||
html += ' name="' + name.value + '"';
|
||||
if (value.value)
|
||||
html += ' value="' + value.value + '"';
|
||||
if (tab.value)
|
||||
html += ' tabindex="' + tab.value + '"';
|
||||
if (initial.checked)
|
||||
html += ' checked';
|
||||
html += '>';
|
||||
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
// -->
|
||||
</script>
|
||||
<body class=body onLoad ="initDialog();">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td>Group Name:</td><td><input id=name size=30 class=textbox></input></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Value:</td><td><input id=value size=30 class=textbox></input></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Initial State:</td>
|
||||
<td>
|
||||
<table border=0>
|
||||
<tr class=body>
|
||||
<td>
|
||||
<input value=on type=radio id=initial name="initial" checked> Selected
|
||||
</td>
|
||||
<td>
|
||||
<input value=off type=radio id=initial name="initial"> Not Selected
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Tab order:</td><td><input id=tab size=3 class=textbox></td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,317 @@
|
||||
<html>
|
||||
<head><title>Insert Select Field</title>
|
||||
<style><%include editor_dialog.css%></style>
|
||||
<script>
|
||||
|
||||
var name, tab, height, checked, inner_select, data_table, innerInterval;
|
||||
var edit_row, edit_text, edit_value, edit_selected;
|
||||
var dialogWindow = new Object();
|
||||
|
||||
function initDialog () {
|
||||
name = document.getElementById('name');
|
||||
tab = document.getElementById('tab');
|
||||
height = document.getElementById('height');
|
||||
checked= document.getElementById('checked');
|
||||
data_table = document.getElementById('data_table');
|
||||
innerInterval = setInterval("calcPressed()", 100);
|
||||
}
|
||||
|
||||
function calcPressed() {
|
||||
if (data_table.rows.length == 1) {
|
||||
if (!document.getElementById('bmodify').disabled) document.getElementById('bmodify').disabled = true;
|
||||
if (!document.getElementById('bremove').disabled) document.getElementById('bremove').disabled = true;
|
||||
if (!document.getElementById('bup').disabled) document.getElementById('bup').disabled = true;
|
||||
if (!document.getElementById('bdown').disabled) document.getElementById('bdown').disabled = true;
|
||||
}
|
||||
else {
|
||||
if (document.getElementById('bmodify').disabled) document.getElementById('bmodify').disabled = false;
|
||||
if (document.getElementById('bremove').disabled) document.getElementById('bremove').disabled = false;
|
||||
if (document.getElementById('bup').disabled) document.getElementById('bup').disabled = false;
|
||||
if (document.getElementById('bdown').disabled) document.getElementById('bdown').disabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
function done () {
|
||||
/* ---------------------------------------------------------
|
||||
* When the user hits done this fucntion is called to
|
||||
* produce the html from the div tags. It then inserts
|
||||
* it into the edit window and closes this window.
|
||||
*/
|
||||
clearInterval(innerInterval);
|
||||
var html = '<select name="' + ((name.value) ? name.value : 'Select') + '"';
|
||||
if (tab.value)
|
||||
html += ' tabIndex="' + tab.value + '"';
|
||||
|
||||
if (height.value)
|
||||
html += ' height="' + height.value + '"';
|
||||
|
||||
if (checked.checked)
|
||||
html += ' multiple';
|
||||
html += '>';
|
||||
|
||||
if (data_table.rows.length > 1) {
|
||||
var rows = data_table.rows;
|
||||
for (i=1; i<rows.length; i++) {
|
||||
var text = rows[i].cells[1].innerHTML;
|
||||
var value = rows[i].cells[2].innerHTML;
|
||||
var selected = rows[i].cells[3].innerHTML;
|
||||
if (value == ' ') value = '';
|
||||
selected = (selected == 'Yes') ? ' selected ' : '';
|
||||
html += '<option';
|
||||
if (value)
|
||||
html += ' value="' + value + '"';
|
||||
|
||||
html += selected + '>';
|
||||
html += text + '</option>';
|
||||
}
|
||||
}
|
||||
|
||||
html += '</select>';
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
function selectDialog (do_equals, width, height, dialogReturn) {
|
||||
/*------------------------------------------------------------
|
||||
* show dialog window
|
||||
*/
|
||||
var url = opener.baseURL + ';page=' + do_equals + '.html;' + opener.extraURL;
|
||||
|
||||
if (dialogWindow.win && !dialogWindow.win.closed && dialogWindow.url == url) {
|
||||
dialogWindow.win.focus();
|
||||
}
|
||||
else {
|
||||
if (dialogWindow.win && !dialogWindow.win.closed) dialogWindow.win.close();
|
||||
dialogWindow.returnFunc = dialogReturn;
|
||||
dialogWindow.url = url;
|
||||
dialogWindow.width = width;
|
||||
dialogWindow.height = height;
|
||||
dialogWindow.name = Math.random().toString().replace(/\./, "");
|
||||
|
||||
dialogWindow.left = (screen.width - width) / 2;
|
||||
dialogWindow.top = (screen.height - height) / 2;
|
||||
dialogWindow.attribs = 'left=' + dialogWindow.left + ',' +
|
||||
'top=' + dialogWindow.top + ',' +
|
||||
'resizable=no,statusbar=yes,' +
|
||||
'width=' + dialogWindow.width + ',' +
|
||||
'height=' + dialogWindow.height;
|
||||
|
||||
dialogWindow.win = window.open(dialogWindow.url, dialogWindow.name, dialogWindow.attribs);
|
||||
dialogWindow.win.focus();
|
||||
}
|
||||
}
|
||||
|
||||
function add () {
|
||||
/* ---------------------------------------------------------
|
||||
* Called when the Add button is pressed. Created the SPAN's
|
||||
* for the select list and inserts them. Then calles a
|
||||
* prompt. The prompt then populates the SPAN's for the
|
||||
* entry.
|
||||
*/
|
||||
edit_row = 0;
|
||||
selectDialog('editor_select_option', 370, 150, returnAdd);
|
||||
}
|
||||
|
||||
function returnAdd(text, value, selected) {
|
||||
var tbody = document.createElement("tbody");
|
||||
var tr = document.createElement("tr");
|
||||
var nrow = data_table.rows.length;
|
||||
var data = new Array(4);
|
||||
data[0] = '<input type="radio" id="data_row" name="data_row" value="">';
|
||||
data[1] = text;
|
||||
data[2] = value;
|
||||
data[3] = '';
|
||||
|
||||
if (selected) { // Un-mark the selected field
|
||||
_unChecked();
|
||||
data[3] = 'Yes';
|
||||
}
|
||||
|
||||
for (var i=0; i < data.length; i++) {
|
||||
var align = (i==3) ? 'center' : '';
|
||||
var td = _createTD(data[i], align);
|
||||
tr.appendChild(td);
|
||||
}
|
||||
tr.bgColor = "#FFFFFF";
|
||||
tbody.appendChild(tr);
|
||||
data_table.appendChild(tbody);
|
||||
}
|
||||
|
||||
function modify () {
|
||||
/* ---------------------------------------------------------
|
||||
* Called when the Modify button is clicked. This just gets
|
||||
* the SPAN that has the entry in it and calles the dialogue
|
||||
* window with that element.
|
||||
*/
|
||||
var checked = _getChecked();
|
||||
if (checked <= 0) return;
|
||||
|
||||
edit_text = data_table.rows[checked].cells[1].innerHTML;
|
||||
edit_value = data_table.rows[checked].cells[2].innerHTML;
|
||||
edit_selected = data_table.rows[checked].cells[3].innerHTML;
|
||||
|
||||
if (edit_selected != 'Yes') edit_selected = '';
|
||||
if (edit_value == ' ') edit_value = '';
|
||||
edit_row = checked;
|
||||
selectDialog('editor_select_option', 370, 150, returnModify);
|
||||
}
|
||||
|
||||
function returnModify(text, value, selected) {
|
||||
if (edit_row <= 0) return;
|
||||
|
||||
data_table.rows[edit_row].cells[1].innerHTML = text;
|
||||
data_table.rows[edit_row].cells[2].innerHTML = value;
|
||||
if (selected) { // Un-mark the selected field
|
||||
_unChecked();
|
||||
data_table.rows[edit_row].cells[3].innerHTML = 'Yes';
|
||||
}
|
||||
else {
|
||||
data_table.rows[edit_row].cells[3].innerHTML = ' ';
|
||||
}
|
||||
}
|
||||
|
||||
function del () {
|
||||
/* ---------------------------------------------------------
|
||||
* Called when an the Delete button is pressed. Deletes the
|
||||
* currently selected element in the list. It then selectes
|
||||
* the next in the list.
|
||||
*/
|
||||
var checked = _getChecked();
|
||||
if (checked <= 0) return;
|
||||
|
||||
data_table.deleteRow(checked)
|
||||
var html = data_table.innerHTML;
|
||||
html = html.replace(/<tbody><\/tbody>/gi,'');
|
||||
data_table.innerHTML = html;
|
||||
}
|
||||
|
||||
function move (where) {
|
||||
/* ---------------------------------------------------------
|
||||
* Called when either the move up or move down button is
|
||||
* pressed. Based on what is passed in either moves the
|
||||
* element up in the list or down in the list.
|
||||
*/
|
||||
var checked = _getChecked();
|
||||
if (checked <= 0) return;
|
||||
if (where == 'up') {
|
||||
if (checked == 1) return;
|
||||
_moveTR(checked, checked - 1);
|
||||
}
|
||||
else {
|
||||
if (checked == data_table.rows.length - 1) return;
|
||||
_moveTR(checked, checked + 1);
|
||||
}
|
||||
}
|
||||
|
||||
function _moveTR(from, to) {
|
||||
var from_row = data_table.rows[from];
|
||||
var to_row = data_table.rows[to];
|
||||
|
||||
var to_text = to_row.cells[1].innerHTML;
|
||||
var to_value = to_row.cells[2].innerHTML;
|
||||
var to_selected = to_row.cells[3].innerHTML;
|
||||
|
||||
for (i=1; i<from_row.cells.length; i++) {
|
||||
data_table.rows[to].cells[i].innerHTML = from_row.cells[i].innerHTML;
|
||||
}
|
||||
data_table.rows[from].cells[1].innerHTML = to_text;
|
||||
data_table.rows[from].cells[2].innerHTML = to_value;
|
||||
data_table.rows[from].cells[3].innerHTML = to_selected;
|
||||
|
||||
document.myform.data_row[to - 1].checked = true;
|
||||
}
|
||||
|
||||
function _createTD(text, align) {
|
||||
var td = document.createElement("td");
|
||||
td.innerHTML = (text) ? text : ' ';
|
||||
td.align = (align)? align: '';
|
||||
return td;
|
||||
}
|
||||
|
||||
function _unChecked() {
|
||||
var rows = data_table.rows;
|
||||
if (rows.length <= 1) return;
|
||||
|
||||
for (i=1; i<rows.length; i++) {
|
||||
if (rows[i].cells[3].innerHTML == 'Yes') {
|
||||
data_table.rows[i].cells[3].innerHTML = ' ';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function _getChecked() {
|
||||
if (!document.getElementById('data_row')) return 0;
|
||||
var data_row = document.myform.data_row;
|
||||
var nrows = data_row.length;
|
||||
var checked = 0;
|
||||
if (typeof(nrows) == 'undefined'){
|
||||
if (document.myform.data_row.checked)
|
||||
checked = 1;
|
||||
}
|
||||
else {
|
||||
for (var i=0; i<nrows; i++) {
|
||||
if (data_row[i].checked) {
|
||||
checked = i + 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
return checked;
|
||||
}
|
||||
|
||||
</script>
|
||||
<body onload="initDialog();" class="body">
|
||||
<form name="myform" method="post" action="#">
|
||||
<table border=0 cellpadding=3 width=480 align=center>
|
||||
<tr class=body>
|
||||
<td>Name:</td><td><input id=name name=name size="30" class=botton></input></td><td> </td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td colspan=2 valign="top">
|
||||
<div class="select_list_inner" style="position: relative; width:450px; height:140px; overflow:auto; background:#FFFFFF">
|
||||
<table id="data_table" cellpadding="1" cellspacing="1" border="0" bgcolor="#808080">
|
||||
<tr bgcolor="#E0E0E0">
|
||||
<td width="20"> </td>
|
||||
<td id=left_title class=select_title width="260"><b>Choice</b></td>
|
||||
<td id=right_title class=select_title width="100"><b>Value</b></td>
|
||||
<td id=middle_title class=select_title width="70" align="center"><b>Selected</b></td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</td>
|
||||
<td align=left>
|
||||
<p style="margin-top:5;margin-bottom:5"><input type="button" class=button id="badd" onclick="add ();" value="Add"></p>
|
||||
<p style="margin-top:5;margin-bottom:5"><input type="button" class=button id="bmodify" disabled onclick="modify ();" value="Modify"></p>
|
||||
<p style="margin-top:5;margin-bottom:5"><input type="button" class=button id="bremove" disabled onclick="del ();" value="Remove"></p>
|
||||
<p style="margin-top:5;margin-bottom:5"><input type="button" class=button id="bup" disabled onclick="move ('up');" value="Move Up"></p>
|
||||
<p style="margin-top:5;margin-bottom:5"><input type="button" class=button id="bdown" disabled onclick="move ('down');" value="Move Down"></p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td colspan=2>
|
||||
<table border=0>
|
||||
<tr class=body>
|
||||
<td>Height: </td>
|
||||
<td><input type=text name=height id=height size=3 class=botton></input></td>
|
||||
<td>Allow multiple selections: </td>
|
||||
<td><input type=radio id=checked name=multi value=Yes>Yes</td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Tab order: </td>
|
||||
<td><input type=text id=tab size=3 class=botton></input></td>
|
||||
<td> </td>
|
||||
<td valign=top><input type=radio id=multi name=multi value=No checked> No</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<input type=button class=button onclick="done();" value="OK">
|
||||
<input type=button class=button onclick="window.close();" value="Cancel">
|
||||
</div>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,78 @@
|
||||
<html>
|
||||
<head><title>Add Option</title>
|
||||
<style><%include editor_dialog.css%></style>
|
||||
<SCRIPT>
|
||||
<!--
|
||||
|
||||
var text, value, selected;
|
||||
|
||||
function initDialog () {
|
||||
text = document.getElementById('text');
|
||||
value = document.getElementById('value');
|
||||
selected = document.getElementById('selected');
|
||||
if (opener.edit_row > 0) {
|
||||
text.value = opener.edit_text;
|
||||
value.value = opener.edit_value;
|
||||
selected.checked = (opener.edit_selected == 'Yes') ? true : false;
|
||||
}
|
||||
}
|
||||
|
||||
function done () {
|
||||
/* ---------------------------------------------------------
|
||||
* Called when the OK buttun is pressed. Sets the window
|
||||
* return value to an object containsing the user input
|
||||
* and closes the window.
|
||||
*/
|
||||
var checked = (selected.checked) ? 1 : 0;
|
||||
if (text.value == '') {
|
||||
alert("The Option field is requied!")
|
||||
return;
|
||||
}
|
||||
opener.dialogWindow.returnFunc(text.value, value.value, checked);
|
||||
window.close ();
|
||||
}
|
||||
|
||||
function get_args () {
|
||||
/* ---------------------------------------------------------
|
||||
* Called onload to recieve the arguments passed in.
|
||||
*/
|
||||
obj = window.dialogArguments;
|
||||
if (!obj) alert ("No object");
|
||||
if (!obj.children (0)) alert ("No children");
|
||||
if (obj.children (0).innerText) {
|
||||
text.value = obj.children (0).innerText;
|
||||
}
|
||||
if (obj.children (1).innerText != 'Yes') {
|
||||
opts[1].checked = true;
|
||||
}
|
||||
if (obj.children (2).innerText) {
|
||||
value.value = obj.children (2).innerText;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
//-->
|
||||
</SCRIPT>
|
||||
<body onload="initDialog()" class=body>
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td>Option: </td><td><input type=text id=text size=30 class=botton></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Value: </td><td><input type=text id=value size=30 class=botton></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Selected: </td>
|
||||
<td>
|
||||
<input type=radio value=yes name=opts id=selected>Yes
|
||||
<input type=radio name=opts id=not_selected checked>No
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button onclick="done()" class=button>OK</button>
|
||||
<button onclick="window.close();" class=button>Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,125 @@
|
||||
<style type="text/css" media="screen">
|
||||
body {
|
||||
scrollbar-base-color: #404040;
|
||||
scrollbar-arrow-color: #00ff33;
|
||||
}
|
||||
|
||||
.tb_icon {
|
||||
position : absolute;
|
||||
left : -1px;
|
||||
top : -1px;
|
||||
}
|
||||
|
||||
.icon_down {
|
||||
position : absolute;
|
||||
left : 0px;
|
||||
top : 0px;
|
||||
}
|
||||
|
||||
.icon_downpressed {
|
||||
position : absolute;
|
||||
left : 1px;
|
||||
top : 1px;
|
||||
}
|
||||
|
||||
.tb_menu_item {
|
||||
position : absolute;
|
||||
border-bottom : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%> solid 1px;
|
||||
border-left : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%> solid 1px;
|
||||
border-right : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%> solid 1px;
|
||||
border-top : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%> solid 1px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 23px;
|
||||
}
|
||||
|
||||
.menu_item_mouseoverup {
|
||||
position : absolute;
|
||||
border-bottom : buttonshadow solid 1px;
|
||||
border-left : buttonhighlight solid 1px;
|
||||
border-right : buttonshadow solid 1px;
|
||||
border-top : buttonhighlight solid 1px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 23px;
|
||||
}
|
||||
|
||||
.menu_item_mouseoverdown {
|
||||
position : absolute;
|
||||
border-bottom : buttonhighlight solid 1px;
|
||||
border-left : buttonshadow solid 1px;
|
||||
border-right : buttonhighlight solid 1px;
|
||||
border-top : buttonshadow solid 1px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 23px;
|
||||
}
|
||||
|
||||
.menu_item_down {
|
||||
position : absolute;
|
||||
background-color : gainsboro;
|
||||
border-bottom : buttonhighlight solid 1px;
|
||||
border-left : buttonshadow solid 1px;
|
||||
border-right : buttonhighlight solid 1px;
|
||||
border-top : buttonshadow solid 1px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 23px;
|
||||
}
|
||||
|
||||
.tb_sep {
|
||||
position : absolute;
|
||||
border-left : buttonshadow solid 1px;
|
||||
border-right : buttonhighlight solid 1px;
|
||||
font-size : 0px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 1px;
|
||||
}
|
||||
|
||||
.tb_general {
|
||||
position : absolute;
|
||||
background-color : #C0C0C0;
|
||||
height : 22px;
|
||||
top : 2px;
|
||||
font : 8pt Verdana,Arial,sans-serif;
|
||||
border : none;
|
||||
}
|
||||
|
||||
.tb_text_mouseover {
|
||||
background-color : #C0C0C0;
|
||||
height : 20px;
|
||||
top : 2px;
|
||||
font-family : "MS Sans Serif";
|
||||
font-size : 6pt;
|
||||
border-bottom : buttonhighlight solid 1px;
|
||||
border-left : buttonshadow solid 1px;
|
||||
border-right : buttonhighlight solid 1px;
|
||||
border-top : buttonshadow solid 1px;
|
||||
height : 17px;
|
||||
}
|
||||
|
||||
.tb_handle {
|
||||
position : absolute;
|
||||
background-color : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%>;
|
||||
border-left : buttonhighlight solid 1px;
|
||||
border-right : buttonshadow solid 1px;
|
||||
border-top : buttonhighlight solid 1px;
|
||||
font-size : 1px;
|
||||
top : 1px;
|
||||
height : 22px;
|
||||
width : 3px;
|
||||
}
|
||||
|
||||
.toolbar {
|
||||
position : relative;
|
||||
background-color : <%if editor_base_color%><%editor_base_color%><%else%>#CCCCCC<%endif%>;
|
||||
border-bottom : buttonshadow solid 1px;
|
||||
border-left : buttonhighlight solid 1px;
|
||||
border-right : buttonshadow solid 1px;
|
||||
border-top : buttonhighlight solid 1px;
|
||||
height : 25px;
|
||||
top : 0px;
|
||||
left : 0px;
|
||||
}
|
||||
</style>
|
@ -0,0 +1,51 @@
|
||||
<html>
|
||||
<head><title>Create Table</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
</head>
|
||||
<script>
|
||||
var numrows, numcols, paddind, spacing, width, border;
|
||||
|
||||
function initDialog() {
|
||||
numrows = document.getElementById('tb_numrows');
|
||||
numcols = document.getElementById('tb_numcols');
|
||||
padding = document.getElementById('tb_padding');
|
||||
spacing = document.getElementById('tb_spacing');
|
||||
width = document.getElementById('tb_width');
|
||||
border = document.getElementById('tb_border');
|
||||
}
|
||||
|
||||
function setReturn() {
|
||||
opener.dialogWindow.returnFunc(numrows.value, numcols.value, width.value, padding.value, spacing.value, border.value);
|
||||
window.close();
|
||||
}
|
||||
|
||||
</script>
|
||||
<body class=body onload="initDialog()">
|
||||
<BR>
|
||||
<table cellspacing=0 align=center width=80% align=center>
|
||||
<tr class=body>
|
||||
<td>Rows:</td>
|
||||
<td><input type=text size=4 id=tb_numrows maxlength=3 value=3></td>
|
||||
<td>Cell Padding:</td>
|
||||
<td><input type=text size=1 id=tb_padding maxlength=1 value=1></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Columns:</td>
|
||||
<td><input type=text size=4 id=tb_numcols maxlength=3 value=3></td>
|
||||
<td>Cell spacing:</td>
|
||||
<td><input type=text size=1 id=tb_spacing maxlength=1 value=1></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Width</td>
|
||||
<td><input type=text size=4 maxlength=4 id=tb_width value="100%"></td>
|
||||
<td>Border:</td>
|
||||
<td colspan=3><input type=text size=1 maxlength=1 id=tb_border value="1"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<HR>
|
||||
<div align=right>
|
||||
<input type="button" class=button ONCLICK="setReturn();" value="Submit">
|
||||
<input type="button" class=button ONCLICK="window.close(); opener.setFocus();" value="Cancel">
|
||||
</div>
|
@ -0,0 +1,64 @@
|
||||
<html>
|
||||
<head><title>Insert Text Field</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
</head>
|
||||
<script>
|
||||
var type, name, value, size, tab;
|
||||
function initDialog() {
|
||||
type = document.getElementById('password');
|
||||
name = document.getElementById('name');
|
||||
value = document.getElementById('value');
|
||||
size = document.getElementById('size');
|
||||
tab = document.getElementById('tab');
|
||||
}
|
||||
|
||||
function done() {
|
||||
var html = '<input type=';
|
||||
html += (type.checked) ? '"password"' : '"text"';
|
||||
if (name.value)
|
||||
html += ' name="' + (name.value) + '"';
|
||||
if (value.value)
|
||||
html += ' value="' + (value.value) + '"';
|
||||
if (size.value)
|
||||
html += ' size="' + (size.value) + '"';
|
||||
if (tab.value)
|
||||
html += ' tabindex="' + (tab.value) + '"';
|
||||
html += '>';
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
</script>
|
||||
<body class=body onload="initDialog()">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td>Name:</td><td><input size="30" id=name></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Initial Value:</td><td><input size="30" id=value></td>
|
||||
</tr>
|
||||
<tr>
|
||||
</table>
|
||||
<br>
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body>
|
||||
<td>Width in characters:</td>
|
||||
<td><input id=size size=3></td>
|
||||
<td>Tab Order:</td>
|
||||
<td><input id=tab size=3></td>
|
||||
</tr>
|
||||
<tr class=body>
|
||||
<td>Password field:</td>
|
||||
<td><input id=password name=password type=radio value=yes>Yes</td>
|
||||
<td><input id=password name=password type=radio value=no checked>No</td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,66 @@
|
||||
<html>
|
||||
<head><title>Insert textarea</title>
|
||||
<style>
|
||||
<%include editor_dialog.css%>
|
||||
</style>
|
||||
</head>
|
||||
<script>
|
||||
|
||||
var name, value, rows, cols, tab;
|
||||
function initDialog() {
|
||||
name = document.getElementById('name');
|
||||
value = document.getElementById('value');
|
||||
rows = document.getElementById('rows');
|
||||
cols = document.getElementById('cols');
|
||||
tab = document.getElementById('tab');
|
||||
}
|
||||
|
||||
function done () {
|
||||
var html = '<textarea';
|
||||
|
||||
if (name.value)
|
||||
html += ' name="' + name.value + '"';
|
||||
if (cols.value)
|
||||
html += ' cols=' + cols.value;
|
||||
if (rows.value)
|
||||
html += ' rows=' + rows.value;
|
||||
if (tab.value)
|
||||
html += ' tabindex="' + tab.value + '"';
|
||||
|
||||
html += '>'
|
||||
if (value.value)
|
||||
html += value.value;
|
||||
html += '</textarea>';
|
||||
|
||||
opener.dialogWindow.returnFunc(html);
|
||||
window.close();
|
||||
}
|
||||
|
||||
</script>
|
||||
<body class=body onLoad="initDialog()">
|
||||
<table border=0 cellpadding=3 align=center>
|
||||
<tr class=body >
|
||||
<td valign=top>Name:</td>
|
||||
<td valign=top colspan=2><input size="30" id=name></td>
|
||||
</tr>
|
||||
<tr class=body >
|
||||
<td valign=top>Initial Value:</td>
|
||||
<td valign=top colspan=2><textarea id=value cols=25 rows=3></textarea></td>
|
||||
</tr>
|
||||
<tr class=body >
|
||||
<td>Cols:</td>
|
||||
<td valign=top width=30%><input id=cols size=2></td>
|
||||
<td valign=top>Rows: <input id=rows size=2></td>
|
||||
<tr>
|
||||
<tr class=body >
|
||||
<td >Tab Order:</td>
|
||||
<td colspan=2 valign=top><input id=tab size=2></td>
|
||||
<tr>
|
||||
</table>
|
||||
<hr>
|
||||
<div align=right>
|
||||
<button class=button onclick="done();">OK</button>
|
||||
<button class=button onclick="window.close();">Cancel</button>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,303 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>Gossamer FileMan - File Manager</title>
|
||||
<meta http-equiv="content-type" content="text/shtml; charset=iso-8859-1" />
|
||||
<link type="text/css" rel="stylesheet" href="<%cfg.static_url%>/<%cfg.template%>/luna.css" />
|
||||
<script type="text/javascript" src="<%cfg.static_url%>/js/jquery.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
//<![CDATA[
|
||||
var help_section = 'introduction';
|
||||
var icons = {
|
||||
plus : "<%GT::FileMan::image_url('plus.gif')%>",
|
||||
minus : "<%GT::FileMan::image_url('minus.gif')%>"
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
$('#leftsidebar img[name]').css('cursor', 'pointer').each(function() {
|
||||
var $img = $(this);
|
||||
$img.click(function() {
|
||||
var ul = $('#nav' + $img.attr('name'));
|
||||
if (ul.is(':hidden')) {
|
||||
ul.show();
|
||||
$img.attr('src', icons.minus);
|
||||
}
|
||||
else {
|
||||
ul.hide();
|
||||
$img.attr('src', icons.plus);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$('.helpnav a[rel]').each(function() {
|
||||
var link = $(this);
|
||||
link.click(function() {
|
||||
if (help_section && help_section != link.attr('rel')) $('#' + help_section).hide();
|
||||
$('#' + link.attr('rel')).show();
|
||||
help_section = link.attr('rel');
|
||||
});
|
||||
});
|
||||
});
|
||||
//]]>
|
||||
</script>
|
||||
</head>
|
||||
<body id="help" style="overflow: auto">
|
||||
<div id="ocwrapper" class="clear">
|
||||
<div id="icwrapper" class="clear">
|
||||
<div id="leftsidebar">
|
||||
<div id="helpbar">
|
||||
<h3 class="header">Help Contents</h3>
|
||||
<ul class="helpnav">
|
||||
<li>
|
||||
<img name="usefm" src="<%GT::FileMan::image_url('minus.gif')%>" title="FileMan" />
|
||||
<a href="#" rel="introduction">Using Gossamer FileMan</a>
|
||||
<ul id="navusefm">
|
||||
<li><a href="#" rel="introduction">Welcome to FileMan</a></li>
|
||||
<li class="end"><a href="#" rel="interface">Interface</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<img name="commands" src="<%GT::FileMan::image_url('plus.gif')%>" title="The Toolbar" />
|
||||
<a href="#" rel="commands-content">The Toolbar</a>
|
||||
<ul id="navcommands" class="hide">
|
||||
<li><a href="#" rel="search">Search</a></li>
|
||||
<li><a href="#" rel="replace">Replace</a></li>
|
||||
<li><a href="#" rel="command">Command</a></li>
|
||||
<li><a href="#" rel="upload">Upload</a></li>
|
||||
<li><a href="#" rel="file">New File</a></li>
|
||||
<li><a href="#" rel="folder">New Folder</a></li>
|
||||
<li><a href="#" rel="protect">Protect</a></li>
|
||||
<li class="end">
|
||||
<img name="settings" src="<%GT::FileMan::image_url('plus.gif')%>" title="Settings" />
|
||||
<a href="#" rel="toolbar-settings" class="subnav">Settings</a>
|
||||
<ul id="navsettings" class="hide">
|
||||
<li><a href="#" rel="setup">Setup</a></li>
|
||||
<li><a href="#" rel="preferences">Preferences</a></li>
|
||||
<%~if cfg.fversion eq 'multiple'%>
|
||||
<li><a href="#" rel="users">User Management</a></li>
|
||||
<li><a href="#" rel="logs">Browser Logs</a></li>
|
||||
<%endif~%>
|
||||
<li class="end"><a href="#" rel="env">Environment</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<img name="actions" src="<%GT::FileMan::image_url('plus.gif')%>" title="The Actions" />
|
||||
<a href="#" rel="actions-content">The Actions</a>
|
||||
<ul id="navactions" class="hide">
|
||||
<li><a href="#" rel="download">Download</a></li>
|
||||
<li><a href="#" rel="symlink">Symlink</a></li>
|
||||
<li><a href="#" rel="copy">Copy</a></li>
|
||||
<li><a href="#" rel="move">Move</a></li>
|
||||
<li><a href="#" rel="rename">Rename</a></li>
|
||||
<li><a href="#" rel="delete">Delete</a></li>
|
||||
<li><a href="#" rel="compress">Compress</a></li>
|
||||
<li><a href="#" rel="uncompress">Uncompress</a></li>
|
||||
<li><a href="#" rel="chmod">Chmod</a></li>
|
||||
<li><a href="#" rel="tail">Tail</a></li>
|
||||
<li><a href="#" rel="perl">Perl Check</a></li>
|
||||
<li><a href="#" rel="diff">Diff</a></li>
|
||||
<li class="end"><a href="#" rel="print">Print</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div id="contentwrapper" class="shadowleft">
|
||||
<div class="shadowtop"><div class="shadowtopleft"></div><div class="shadowtopright"></div></div>
|
||||
<div class="shadowright">
|
||||
<div id="content">
|
||||
<div id="introduction">
|
||||
<h1>Introduction</h1>
|
||||
<div class="clear">
|
||||
<p style="float: right"><img src="<%cfg.static_url%>/help/dir-structure.gif" alt="Directory Structure" /></p>
|
||||
<p>FileMan users who are unfamiliar with file management should read this section to gain a basic understanding of directories, paths, and other related concepts. Users who feel confident in their understanding of these concepts can proceed to the next three sections, which will deal with FileMan's structure and features.</p>
|
||||
<p>File management is key to all computer systems, from basic home PC's to elaborate servers. A well-structured system of files not only enables you to find resources quickly and easily, but also lets you provide web access to files you wish to make accessible online.</p>
|
||||
<p>Files are organized using directories (folders). Directories contain files and other directories. When using FileMan, you will have one root directory which will contain all other directories and files. It might help to visualize your directory structure as a sort of tree diagram, with directories and files "branching down" from your one root directory.</p>
|
||||
<p>This illustration shows the structure of a hypothetical web domain account. In FileMan, as well as many other applications, file locations are specified using paths. Paths are strings of text that define the location of a file by providing the name of each directory and sub-directory (separated by forward slashes) that must be opened to find the file. Paths usually begin with a forward slash: /. The forward slash symbolizes the root directory. The path to the "currentlogo.jpg" file in this illustration would be: <br /><b>since the "currentlogo.jpg" file is found in the "logos" directory, found in the "images" folder which is itself located in the root directory.</b></p>
|
||||
<p>FileMan allows you to view and manage your files using directories and paths. While managing files in FileMan, the path to a directory will be displayed in the Toolbar (see below for details), with all of the files and directories in that directory displayed in the Files menu (see below for details).</p>
|
||||
<p>It is recommended that you do not use any blank spaces while naming directories or files; some web browsers cannot process them. It is also recommended that you do not use upper-case letters in directory and file names; paths are case sensitive online, and upper-case letters are usually avoided to avoid confusion.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="interface" class="hide">
|
||||
<h1>Interface</h1>
|
||||
<p>There are three main components of FileMan: the Toolbar (appears at the top of the page), the Files menu (the list of directories, files and statistics in the middle of the page) and the Actions menu (the drop-down menu at the top of the Files menu). While these three components do not operate separately from one another, they and their features will be discussed separately for the purposes of organization.</p>
|
||||
<p><img src="<%cfg.static_url%>/help/fig2.gif" alt="Figure 2" /><br /><span>A sample FileMan v.3 window.</span></p>
|
||||
<h3>The Files Menu</h3>
|
||||
<p>The Files Menu displays the files and directories in the directory you are viewing and provides detailed information about each of them through a series of columns. The checkboxes at the left of the Files Menu allows you to select files or directories for the commands found in the Actions menu (the drop-down menu displaying "More Actions" in the above screenshot). Clicking the checkbox at the top of the menu automatically selects all displayed files and directories.</p>
|
||||
|
||||
<h3>File Name</h3>
|
||||
<p>The file/folder name is listed in this column. Clicking the "Name" heading will sort the files and directories by file name in ascending order. Clicking the "Name" heading a second time will sort them in descending alphabetical order.</p>
|
||||
<h3>File Size</h3>
|
||||
<p>The file size of each file is listed in this column. Clicking the "Size" heading will sort the files and directories by file size in ascending order. Clicking the "Size" heading a second time will sort them in descending alphabetical order.</p>
|
||||
<h3>File Type</h3>
|
||||
<p>The file type of each file (directories are called "file folder"s) is listed in this column. Clicking the "File Type" heading will sort the files and directories by file type in ascending alphabetical order. Clicking the "File Type" heading a second time will sort them in descending alphabetical order.</p>
|
||||
|
||||
<h3>Modified</h3>
|
||||
<p>The date that each file or directory was last modified is listed in this column. Clicking the "Modified" heading will sort the files and directories by modification date in ascending order. Clicking the "Modified" heading a second time will sort them in descending alphabetical order.</p>
|
||||
<h3>Owner</h3>
|
||||
<p>The username of the owner of each file and directory is listed in this column. Clicking the "Owner" heading will sort the files and directories by owner in ascending alphabetical order. Clicking the "Owner" heading a second time will sort them in descending alphabetical order.</p>
|
||||
<h3>Permissions</h3>
|
||||
<p>The permission settings of each file and directory are listed in this column. Clicking the "Permissions" heading will sort the files and directories by permission settings in ascending alphabetical order. Clicking the "Permissions" heading a second time will sort them in descending alphabetical order. Clicking on the permission settings of a specific file or directory will display a form allowing you to modify the file or directory's permission settings by checking individual permissions or by entering the numeric code for the desired permissions. If you need more information, a tutorial explaining how to configure permissions is available here: <a href="http://www.itc.virginia.edu/desktop/web/permissions/" target="helpinfo">http://www.itc.virginia.edu/desktop/web/permissions/</a></p>
|
||||
|
||||
<h3>The Toolbar</h3>
|
||||
<p>The Toolbar displays the directory location you are currently viewing in FileMan, as well as a series of tools that allow you to manage your files. Click on "The Toolbar" in the navigation menu at the left of this help page for information on specific Toolbar functions.</p>
|
||||
<p>In the top left corner of the Toolbar, the location of the directory you are currently viewing will be displayed; /templates/luna would be a possible location. Thus, all files and directories in that location will be displayed in the Files menu (see below for details). You can click on any of the directory names listed in the location to view a specific directory.</p>
|
||||
<p class="figure"><img src="<%cfg.static_url%>/help/fig3.gif" alt="Figure 3" /><br /><span>The Toolbar.</span></p>
|
||||
<p>The text field in the top right corner of the Toolbar allows you to open a directory found in the location currently being displayed. If you are viewing a directory which contains another directory called "images", for example, entering "images" in the field and clicking "Go" will open the "images" directory and display its contents in the Files menu.</p>
|
||||
<h3>The Actions Menu</h3>
|
||||
|
||||
<p>The Actions Menu drops-down to allow you to perform various actions on files and directories you select via checkboxes in the Files Menu. Click on "The Actions" in the navigation menu at the left of this help page for information on specific actions.</p>
|
||||
<p><img src="<%cfg.static_url%>/help/actions.gif" alt="Figure 2" /><br /><span>The Actions Menu.</span></p>
|
||||
|
||||
<h3>Multi-User Version</h3>
|
||||
<p class="figure"><img src="<%cfg.static_url%>/help/fig7.gif" alt="Figure 7" /></p>
|
||||
<p>The multi-user version of FileMan v.3 features a dropdown menu for directories, allowing users to choose which path they wish to work in. Simply click on the down-pointing green arrow beside the directory name and a list of accessible directories will appear. </p>
|
||||
<p>Access to these directories is defined by the admin in the "Users Manager" option in the Tools link. Enter the paths to the directories that you want the user to have access to in the "Access Directories" section.</p>
|
||||
|
||||
<h3>Logout</h3>
|
||||
<p>Clicking the "Logout" link will sign you out of your current FileMan session and return you to the login page.</p>
|
||||
</div>
|
||||
<div id="commands-content" class="hide">
|
||||
<h1>The Toolbar</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/toolbar.jpg" alt="Toolbar" /></p>
|
||||
<p>The commands available to you in the Toolbar are your primary methods of managing the files and directories on your FileMan installation. Click on the names of specific commands to learn more about them individually.</p>
|
||||
</div>
|
||||
<div id="actions-content" class="hide">
|
||||
<h1>Actions</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/fig6.gif" alt="Action Bar" /></p>
|
||||
<p>The Command Bar allows you to perform commands and actions upon files and directories that you have selected in the <b>Files menu</b>. Each action is listed in the "<b>More Actions</b>" dropdown menu. </p>
|
||||
</div>
|
||||
<div id="toolbar-settings" class="hide">
|
||||
<h1>Settings</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/tools.gif" alt="search" /></p>
|
||||
<p>Clicking the "Settings" link displays a drop-down list of sub-menus allowing you to customize your FileMan installation.</p>
|
||||
</div>
|
||||
<div id="setup" class="hide">
|
||||
<h1>Setup</h1>
|
||||
<%include help_setup.html%>
|
||||
</div>
|
||||
<div id="password" class="hide">
|
||||
<h1>Change Password</h1>
|
||||
<%include help_password.html%>
|
||||
</div>
|
||||
<div id="preferences" class="hide">
|
||||
<h1>Preferences</h1>
|
||||
<%include help_preferences.html%>
|
||||
</div>
|
||||
<div id="users" class="hide">
|
||||
<h1>Users Managerment</h1>
|
||||
<%include help_user.html%>
|
||||
</div>
|
||||
<div id="logs" class="hide">
|
||||
<h1>Browser Logs</h1>
|
||||
<%include help_logs.html%>
|
||||
</div>
|
||||
<div id="env" class="hide">
|
||||
<h1>Environment</h1>
|
||||
<p>The "Environment" link displays a detailed list of system information about your FileMan installation. This list can be useful for identifying system errors.</p>
|
||||
</div>
|
||||
<div id="search" class="hide">
|
||||
<h1>Search</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/search.gif" alt="search" /></p>
|
||||
<%include help_search.html%>
|
||||
</div>
|
||||
<div id="replace" class="hide">
|
||||
<h1>Replace</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/replace.gif" alt="search" /></p>
|
||||
<%include help_replace.html%>
|
||||
</div>
|
||||
<div id="command" class="hide">
|
||||
<h1>Command</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command.gif" alt="search" /></p>
|
||||
<%include help_command.html%>
|
||||
</div>
|
||||
<div id="upload" class="hide">
|
||||
<h1>Upload</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/upload.gif" alt="search" /></p>
|
||||
<%include help_upload.html%>
|
||||
</div>
|
||||
<div id="file" class="hide">
|
||||
<h1>New File</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/newfile.gif" alt="New file" /></p>
|
||||
<%include help_file.html%>
|
||||
</div>
|
||||
<div id="folder" class="hide">
|
||||
<h1>New Folder</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/newfolder.gif" alt="New Folder" /></p>
|
||||
<%include help_makedir.html%>
|
||||
</div>
|
||||
<div id="protect" class="hide">
|
||||
<h1>Protect</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/protect.gif" alt="search" /></p>
|
||||
<%include help_protect.html%>
|
||||
</div>
|
||||
<div id="download" class="hide">
|
||||
<h1>Download</h1>
|
||||
<%include help_download.html%>
|
||||
</div>
|
||||
<div id="symlink" class="hide">
|
||||
<h1>Symlink</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-symlink.gif" alt="command bar" />
|
||||
<%include help_symlink.html%>
|
||||
</div>
|
||||
<div id="copy" class="hide">
|
||||
<h1>Copy</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-copy.gif" alt="command bar" />
|
||||
<%include help_copy.html%>
|
||||
</div>
|
||||
<div id="move" class="hide">
|
||||
<h1>Move</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-move.gif" alt="command bar" />
|
||||
<%include help_move.html%>
|
||||
</div>
|
||||
<div id="rename" class="hide">
|
||||
<h1>Rename</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-rename.gif" alt="command bar" />
|
||||
<%include help_rename.html%>
|
||||
</div>
|
||||
<div id="delete" class="hide">
|
||||
<h1>Delete</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-delete.gif" alt="command bar" />
|
||||
<p>After checking off one or more files or directories, selecting the "Delete" option will permanently delete them. If you've selected multiple files, you can choose to skip the deletion of individual files you've mistakenly checked, or to delete all files simultaneously.</p>
|
||||
</div>
|
||||
<div id="compress" class="hide">
|
||||
<h1>Compress</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-compress.gif" alt="command bar" />
|
||||
<%include help_compress.html%>
|
||||
</div>
|
||||
<div id="uncompress" class="hide">
|
||||
<h1>Uncompress</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-uncompress.gif" alt="command bar" />
|
||||
<%include help_uncompress.html%>
|
||||
</div>
|
||||
<div id="chmod" class="hide">
|
||||
<h1>Chmod</h1>
|
||||
<p><img src="<%cfg.static_url%>/help/command-chmod.gif" alt="command bar" />
|
||||
<%include help_chmod.html%>
|
||||
</div>
|
||||
<div id="perl" class="hide">
|
||||
<h1>Perl Check</h1>
|
||||
<%include help_perl.html%>
|
||||
</div>
|
||||
<div id="tail" class="hide">
|
||||
<h1>Tail</h1>
|
||||
<%include help_tail.html%>
|
||||
</div>
|
||||
<div id="diff" class="hide">
|
||||
<h1>Diff</h1>
|
||||
<%include help_diff.html%>
|
||||
</div>
|
||||
<div id="print" class="hide">
|
||||
<h1>Print</h1>
|
||||
<p>After selecting one or more files, selecting the "Print" link will open a window displaying a preview of the file's printed appearance, as well as your regular print window. If you select multiple files to be printed, you will be given the option of printing them separately or as one document.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="shadowbottom"><div class="shadowbottomleft"></div><div class="shadowbottomright"></div></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
@ -0,0 +1,2 @@
|
||||
<p><b>Chmod</b> allows you to specify the permissions for selected item(s), setting them as writable, readable, executable, etc. Simply check off the actions you want or if you know the Chmod number, enter it in the 'as numerical' field and click 'Chmod'. </p>
|
||||
<p>If you need more information, a tutorial explaining how to configure permissions is available here: <a href="http://www.itc.virginia.edu/desktop/web/permissions/" target="helpinfo"><b>http://www.itc.virginia.edu/desktop/web/permissions/</b></a></p>
|
@ -0,0 +1,5 @@
|
||||
<p>
|
||||
Enter the command you wish to execute in the "Command" field and click the "Execute " button. You can also execute a file by checking the box beside the desired file in the Files Menu and clicking the "Execute" button.</p>
|
||||
<p>
|
||||
If you are running a command or file that will take more than ten seconds, checking the "Long Running" box will ensure that your command will not time out.
|
||||
</p>
|
@ -0,0 +1,7 @@
|
||||
<p>You can compress one or more files or directories, into a single compressed file -- in a variety of formats.</p>
|
||||
<ul>
|
||||
<li>Check off all the files and/or directories you wish to include in the compressed file</li>
|
||||
<li>Select the desired compression format from the drop-down menu. Choose from .tar, .tar.gz and .zip.</li>
|
||||
<li>Enter the path to the directory you wish to save the file in and give it a filename in the field provided. For example, selecting .tar and entering /images/foo in the field would save the compressed files as foo.tar in your images directory.</li>
|
||||
<li>Click 'Create File'</li>
|
||||
</ul>
|
@ -0,0 +1 @@
|
||||
<p>After checking off one or more files or directories, enter the path to the directory you wish to copy the item(s) to, and click the 'Copy' button.</p>
|
@ -0,0 +1,10 @@
|
||||
<p>The "Diff" option allows you to compare the file's content with that of another, and have the differences between the two displayed. This option will only work for text-based files, such as .txt or .html files and is useful when reviewing files that are often updated.</p>
|
||||
<ul>
|
||||
<li>Enter the filename or the path to the second file (or click "Browse" to select a path) to be compared to and click the 'Diff' button. (Eg. '/templates/luna/version2.html')</li>
|
||||
<li>The differences between the two files will be displayed in a new screen.
|
||||
<ul>
|
||||
<li>Lines that are prefaced by a minus sign (-) are lines which appear in the first file but not in the second. </li>
|
||||
<li>Lines that are prefaced by a plus sign (+) are lines which appear in the second file but not in the first. </li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
@ -0,0 +1,12 @@
|
||||
<p>You can download selected items or directories in various file and compression formats.</p>
|
||||
<ul>
|
||||
<li>Choose the format of the item(s) you are downloading in the "Mode" drop-down menu. Choose between Ascii, Binary and Auto:
|
||||
<ul>
|
||||
<li><b>Ascii</b> format should be used for files that use plain text with no formatting</li>
|
||||
<li><b>Binary</b> should be used for all other types of files</li>
|
||||
<li><b>Auto</b> will automatically determine which format to use; you will usually not need to specify either Ascii or binary</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>If you wish to download the item(s) in a compressed format, select the desired compression format (which should be indicated by the file extensions) from the "Compressed type" drop-down menu. Choose from None, .tar, .tar.gz and .zip. Note: if you are downloading multiple items, you will have to select a compression type.</li>
|
||||
<li>Click the 'Download' button to download your selected file(s).</li>
|
||||
</ul>
|
@ -0,0 +1,7 @@
|
||||
<p>Clicking the "New File" button allows you to create a new file that will be saved in the directory you are currently viewing.</p>
|
||||
<ul>
|
||||
<li>Enter the contents of the new file</li>
|
||||
<li>Enter a file name with the appropriate extension in the field provided (EG. .txt, .html, .php)</li>
|
||||
<li>Click the 'Save' button. Your new file will now appear in the directory</li>
|
||||
</ul>
|
||||
<p>By default, the text editor will be displayed. Clicking the "Switch to HTML" button will allow you to create detailed HTML pages using a feature-rich HTML editor.</p>
|
@ -0,0 +1,8 @@
|
||||
<p>"Browser Logs" allow you to review all commands and activities performed on FileMan by all of your installations users.</p>
|
||||
<ul>
|
||||
<li>By default the most recent 25 activities/commands are displayed.</li>
|
||||
<li>To search, select the "Search" option in the dropdown menu. You can refine your search for specific commands by selecting a time frame, a specific action or a specific user to search for.</li>
|
||||
<li>In the Action drop-down, you can choose what type of action you would like to search for. If the "Match Any" box is checked the search will return all commands containing any of the search criteria entered in the search form. For example, a "Match Any" search for commands performed in the last two weeks and "user1" in the Username field would return all commands performed in the last two weeks, even if they were not performed by user1, and vice versa.</li>
|
||||
<li>The currently displayed list of browser log entries can be deleted by selecting "Clear Logs" in the drop-down menu.</li>
|
||||
</ul>
|
||||
|
@ -0,0 +1,4 @@
|
||||
<p>Clicking the "New Folder" link in the Toolbar allows you to create a new folder within the directory you are currently viewing.</p>
|
||||
<p>
|
||||
Enter a name for the new folder in the field provided and click the 'Create' button. Your new folder will now be displayed in the directory.
|
||||
</p>
|
@ -0,0 +1,2 @@
|
||||
<p>After checking off one or more files or directories, selecting the "Move" option allows you to specify a directory to which the selected item(s) will be moved.</p>
|
||||
<p>Enter the path to the directory you wish to move the item(s) to, or click the Browse button to choose a directory, and and click the 'Move' button.</p>
|
@ -0,0 +1,2 @@
|
||||
<p>The "Change Password" menu allows you to change your FileMan password.</p>
|
||||
<p>Please make sure to pick a secure password that you can remember easily.</p>
|
@ -0,0 +1,2 @@
|
||||
<p>After checking off a single file, selecting the "Perl" option will check the syntax of perl files to ensure that the syntax is correct. </p>
|
||||
<p>This function will only work if the selected file is a Perl file.
|
@ -0,0 +1,11 @@
|
||||
<p>The Preferences menu allows you to set account-specific preferences; each user can customize their own preferences.</p>
|
||||
<ul>
|
||||
<li><b>Working Path:</b> This field allows you to specify the path that will be displayed by default when you login.</li>
|
||||
<li><b>Password Directory:</b> This field should contain the path to the directory where your .htaccess file (which stores passwords created with the Protect option) is stored.</li>
|
||||
<li><b>Sort By:</b> Specify the order in which your files and directories will be sorted and displayed by choosing a criteria (Name, Size, Type, Modified, Owner, Permissions) and either descending or ascending order. Note that directories will always be displayed above files.</li>
|
||||
<li><b>Max Hits:</b> Choose the number of files and directories that will be displayed per page.</li>
|
||||
<li><b>Hidden Files:</b> Choose whether or not to display hidden files while viewing directories.</li>
|
||||
<li><b>Editor Mode:</b> Choose whether the plain Text editor or the HTML editor will be displayed by default when you are editing or creating new files.</li>
|
||||
<li><b>Effects:</b> Choose whether to use visual effects for various Fileman menus and alerts.</li>
|
||||
<li><b>The README's Content:</b> Choose whether README files (which are automatically displayed when a directory is being viewed) above or below the directory structure.</li>
|
||||
</ul>
|
@ -0,0 +1,12 @@
|
||||
<p>Clicking the "Protect" link in the Toolbar will display a form at the top of the page allowing you to protect the directory you are currently viewing by configuring a username and password that will be required to access it.</p>
|
||||
<ul>
|
||||
<li>Enter a "User name" and "Password" in the fields provided.</li>
|
||||
<li>Options:
|
||||
<ul>
|
||||
<li>Overwrite: will overwrite an existing user with the username and password.</li>
|
||||
<li>MD5 password: generate an md5 password that's compatible with Apache.</li>
|
||||
</ul>
|
||||
<li>Click the "Add User" button. The user name and password will now have to be entered to access the directory currently being viewed.</li>
|
||||
<li>Existing user names and passwords can be deleted by selecting the desired user name from the drop-down menu and clicking the "Remove" button or by clicking the "Remove All" button.</li>
|
||||
</ul>
|
||||
<p>Once a username and password has be created, the url of the directory cannot be viewable from a browser without correctly providing the designated username and password. (EG. if you protected the directory 'foo', the url www.yoursitename.com/foo cannot be accessed without a username and password) </p>
|
@ -0,0 +1,2 @@
|
||||
<p>After checking off a file or directory, selecting the "Rename" option allows you to specify a directory to which the selected item will be rename.</p>
|
||||
<p>Enter the new name you wish to rename the item, and click the 'Rename' button.</p>
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user