[geeklog-hg] geeklog: For the new theme engine only a jQuery dialoge will be ...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sun Sep 15 00:59:40 EDT 2013


changeset 9293:00057f7e7633
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/00057f7e7633
user: Tom <websitemaster at cogeco.net>
date: Sun Sep 15 00:47:17 2013 -0400
description:
For the new theme engine only a jQuery dialoge will be used to display the help files (feature request #0001609)

diffstat:

 public_html/help/advancedsearch.html      |  110 +++++++++++++++--------------
 public_html/help/cccommentsubmission.html |   90 ++++++++++++------------
 public_html/help/ccdraftsubmission.html   |   62 ++++++++--------
 public_html/help/cceventsubmission.html   |   64 +++++++++--------
 public_html/help/cclinksubmission.html    |   64 +++++++++--------
 public_html/help/ccstorysubmission.html   |   68 +++++++++---------
 public_html/help/ccusersubmission.html    |   68 +++++++++---------
 public_html/help/submitevent.html         |  106 ++++++++++++++--------------
 public_html/help/submitlink.html          |   66 +++++++++--------
 public_html/help/submitstory.html         |   91 ++++++++++++------------
 public_html/lib-common.php                |   57 ++++++++++++++-
 11 files changed, 458 insertions(+), 388 deletions(-)

diffs (truncated from 973 to 300 lines):

diff -r 053920dc96c9 -r 00057f7e7633 public_html/help/advancedsearch.html
--- a/public_html/help/advancedsearch.html	Wed Sep 11 21:23:03 2013 -0400
+++ b/public_html/help/advancedsearch.html	Sun Sep 15 00:47:17 2013 -0400
@@ -8,60 +8,62 @@
 <body>
 <h1>Advanced Search</h1>
 
-<p>Advanced search will allow you to query the entire database of stories and
-comments to find what your looking for. When conducting a query, at least one
-field must be selected. The query fields are:</p>
-
-<table border="1" width="100%">
-<tr>
-    <th style="width:8%">Field</th>
-    <th>Required</th>
-    <th>Description</th>
-</tr>
-
-<tr>
-    <td>Key Words</td>
-    <td style="text-align:center;">No</td>
-    <td>These are the key words you wish to search for, an example would be
-        "Free" or "Fun" (without the quotes).<br>
-        From the drop-down menu, you can select if search results should contain        the exact phrase (exactly as you entered it), all of the words, or any
-        of the words.</td>
-</tr>
-<tr>
-    <td>Titles Only</td>
-    <td style="text-align:center;">No</td>
-    <td>Check this box if you only want to search item titles</td>
-</tr>
-<tr>
-    <td>Date</td>
-    <td style="text-align:center;">No</td>
-    <td>Date range to search on. Enter the start date and end date for your
-        search</td>
-</tr>
-<tr>
-    <td>Topic</td>
-    <td style="text-align:center;">No</td>
-    <td>Select the topic you wish to search on from the drop-down list</td>
-</tr>
-<tr>
-    <td>Type</td>
-    <td style="text-align:center;">No</td>
-    <td>Select the type of the search. Your options are "All", which searches
-        through all the searchable content of the site, or you can restrict your
-        search to only one of "Stories", "Comments" as well as one
-        of the installed plugins (e.g. "Static Pages").</td>
-</tr>
-<tr>
-    <td>Authors</td>
-    <td style="text-align:center;">No</td>
-    <td>Select the author you wish to search on</td>
-</tr>
-<tr>
-    <td>Results</td>
-    <td style="text-align:center;">No</td>
-    <td>Select the number of search results you want to see per page</td>
-</tr>
-</table>
+<div id="content">
+    <p>Advanced search will allow you to query the entire database of stories and
+    comments to find what your looking for. When conducting a query, at least one
+    field must be selected. The query fields are:</p>
+    
+    <table border="1" width="100%">
+    <tr>
+        <th style="width:8%">Field</th>
+        <th>Required</th>
+        <th>Description</th>
+    </tr>
+    
+    <tr>
+        <td>Key Words</td>
+        <td style="text-align:center;">No</td>
+        <td>These are the key words you wish to search for, an example would be
+            "Free" or "Fun" (without the quotes).<br>
+            From the drop-down menu, you can select if search results should contain        the exact phrase (exactly as you entered it), all of the words, or any
+            of the words.</td>
+    </tr>
+    <tr>
+        <td>Titles Only</td>
+        <td style="text-align:center;">No</td>
+        <td>Check this box if you only want to search item titles</td>
+    </tr>
+    <tr>
+        <td>Date</td>
+        <td style="text-align:center;">No</td>
+        <td>Date range to search on. Enter the start date and end date for your
+            search</td>
+    </tr>
+    <tr>
+        <td>Topic</td>
+        <td style="text-align:center;">No</td>
+        <td>Select the topic you wish to search on from the drop-down list</td>
+    </tr>
+    <tr>
+        <td>Type</td>
+        <td style="text-align:center;">No</td>
+        <td>Select the type of the search. Your options are "All", which searches
+            through all the searchable content of the site, or you can restrict your
+            search to only one of "Stories", "Comments" as well as one
+            of the installed plugins (e.g. "Static Pages").</td>
+    </tr>
+    <tr>
+        <td>Authors</td>
+        <td style="text-align:center;">No</td>
+        <td>Select the author you wish to search on</td>
+    </tr>
+    <tr>
+        <td>Results</td>
+        <td style="text-align:center;">No</td>
+        <td>Select the number of search results you want to see per page</td>
+    </tr>
+    </table>
+</div>
 
 <div class="footer">
     <a href="http://wiki.geeklog.net/">The Geeklog Documentation Project</a><br>
diff -r 053920dc96c9 -r 00057f7e7633 public_html/help/cccommentsubmission.html
--- a/public_html/help/cccommentsubmission.html	Wed Sep 11 21:23:03 2013 -0400
+++ b/public_html/help/cccommentsubmission.html	Sun Sep 15 00:47:17 2013 -0400
@@ -8,50 +8,52 @@
 <body>
 <h1>Comment Submissions</h1>
 
-<p>This is the command and control quick moderation area for comments. In this
-area you can edit, delete or approve comments. Select any combination of deletes
-or approves and click the submit button.</p>
-
-<table border="1" width="100%">
-<tr>
-    <th style="width:8%">Field</th>
-    <th>Description</th>
-</tr>
-<tr>
-    <td>Edit</td>
-    <td>Click this to edit the comment. Note that saving an edited comment
-        submission will approve it</td>
-</tr>
-<tr>
-    <td>Title</td>
-    <td>Title of the comment</td>
-</tr>
-<tr>
-    <td>Parent or Comment</td>
-    <td>Depending on the type of comment, this will either contain the comment's
-        text or a link to the parent object for which the comment was
-        submitted</td>
-</tr>
-<tr>
-    <td>Date</td>
-    <td>Date the comment was submitted</td>
-</tr>
-<tr>
-    <td>Delete / Approve</td>
-    <td>Radio buttons to select for delete or approval of the story
-        submission</td>
-</tr>
-<tr>
-    <td>Username</td>
-    <td>Name of the user who submitted the comment. For registered users, this
-        will contain a link to their profile page
-</tr>
-<tr>
-    <td>Auto-publish Comments?</td>
-    <td>Check this box to allow any further comments by this user to be
-        published without moderation. Only available for registered users</td>
-</tr>
-</table>
+<div id="content">
+    <p>This is the command and control quick moderation area for comments. In this
+    area you can edit, delete or approve comments. Select any combination of deletes
+    or approves and click the submit button.</p>
+    
+    <table border="1" width="100%">
+    <tr>
+        <th style="width:8%">Field</th>
+        <th>Description</th>
+    </tr>
+    <tr>
+        <td>Edit</td>
+        <td>Click this to edit the comment. Note that saving an edited comment
+            submission will approve it</td>
+    </tr>
+    <tr>
+        <td>Title</td>
+        <td>Title of the comment</td>
+    </tr>
+    <tr>
+        <td>Parent or Comment</td>
+        <td>Depending on the type of comment, this will either contain the comment's
+            text or a link to the parent object for which the comment was
+            submitted</td>
+    </tr>
+    <tr>
+        <td>Date</td>
+        <td>Date the comment was submitted</td>
+    </tr>
+    <tr>
+        <td>Delete / Approve</td>
+        <td>Radio buttons to select for delete or approval of the story
+            submission</td>
+    </tr>
+    <tr>
+        <td>Username</td>
+        <td>Name of the user who submitted the comment. For registered users, this
+            will contain a link to their profile page</td>
+    </tr>
+    <tr>
+        <td>Auto-publish Comments?</td>
+        <td>Check this box to allow any further comments by this user to be
+            published without moderation. Only available for registered users</td>
+    </tr>
+    </table>
+</div>
 
 <div class="footer">
     <a href="http://wiki.geeklog.net/">The Geeklog Documentation Project</a><br>
diff -r 053920dc96c9 -r 00057f7e7633 public_html/help/ccdraftsubmission.html
--- a/public_html/help/ccdraftsubmission.html	Wed Sep 11 21:23:03 2013 -0400
+++ b/public_html/help/ccdraftsubmission.html	Sun Sep 15 00:47:17 2013 -0400
@@ -8,36 +8,38 @@
 <body>
 <h1>Draft Story Submissions</h1>
 
-<p>This is the command and control quick moderation area for stories that are
-marked as drafts. In this area you can edit, delete or approve draft stories.
-Select any combination of deletes or approves and click the submit button.</p>
-
-<table border="1" width="100%">
-<tr>
-    <th style="width:8%">Field</th>
-    <th>Description</th>
-</tr>
-<tr>
-    <td>Edit</td>
-    <td>Click this to edit the story</td>
-</tr>
-<tr>
-    <td>Title</td>
-    <td>Title of the story</td>
-</tr>
-<tr>
-    <td>Date</td>
-    <td>Date the story was submitted</td>
-</tr>
-<tr>
-    <td>Topic</td>
-    <td>Topic the story was submitted to</td>
-</tr>
-<tr>
-    <td>Delete / Approve</td>
-    <td>Radio buttons to select for delete or approval of the draft story</td>
-</tr>
-</table>
+<div id="content">
+    <p>This is the command and control quick moderation area for stories that are
+    marked as drafts. In this area you can edit, delete or approve draft stories.
+    Select any combination of deletes or approves and click the submit button.</p>
+    
+    <table border="1" width="100%">
+    <tr>
+        <th style="width:8%">Field</th>
+        <th>Description</th>
+    </tr>
+    <tr>
+        <td>Edit</td>
+        <td>Click this to edit the story</td>
+    </tr>
+    <tr>
+        <td>Title</td>
+        <td>Title of the story</td>
+    </tr>
+    <tr>
+        <td>Date</td>
+        <td>Date the story was submitted</td>
+    </tr>
+    <tr>
+        <td>Topic</td>
+        <td>Topic the story was submitted to</td>
+    </tr>
+    <tr>
+        <td>Delete / Approve</td>
+        <td>Radio buttons to select for delete or approval of the draft story</td>
+    </tr>
+    </table>
+</div>
 
 <div class="footer">
     <a href="http://wiki.geeklog.net/">The Geeklog Documentation Project</a><br>
diff -r 053920dc96c9 -r 00057f7e7633 public_html/help/cceventsubmission.html
--- a/public_html/help/cceventsubmission.html	Wed Sep 11 21:23:03 2013 -0400
+++ b/public_html/help/cceventsubmission.html	Sun Sep 15 00:47:17 2013 -0400
@@ -8,37 +8,39 @@
 <body>
 <h1>Calendar Submissions</h1>
 
-<p>This is the command and control quick moderation area for events. In this



More information about the geeklog-cvs mailing list