JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
wysiwyg uses site's style.css
[wfpl-cms.git] / admin_pages.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5   <title><!--~main_title show {~-->~this_host~ Admin: <!--~listings {~-->Pages Listing<!--~}~--><!--~form {~--><!--~new_msg {~-->Add a new page<!--~}~--><!--~edit_msg {~-->Edit page "~title html~"<!--~}~--><!--~}~--><!--~}~--></title>
6   <!--~extra_headers {~-->
7     <script type="text/javascript" src="code/ckeditor/ckeditor.js"></script>
8     <script type="text/javascript">
9       function make_wysiwyg(name) {
10          CKEDITOR.replace(name, {
11                 'contentsCss': 'style.css',
12                 'uiColor': '#ccccff',
13                 'removePlugins': 'forms,templates,smiley,pagebreak,save,newpage,preview,print',
14                 'height': '300px',
15                         'toolbar': [
16                                 ['Source'],
17                                 ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'SpellChecker', 'Scayt'],
18                                 ['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
19                                 '/',
20                                 ['Bold', 'Italic', 'Underline', 'Strike', 'Subscript', 'Superscript'],
21                                 ['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
22                                 ['JustifyLeft', 'JustifyCenter', 'JustifyRight', 'JustifyBlock'],
23                                 ['Link', 'Unlink', 'Anchor'],
24                                 ['Image', 'Table', 'HorizontalRule', 'SpecialChar', 'PageBreak'],
25                                 '/',
26                                 ['Styles', 'Format', 'Font', 'FontSize'],
27                                 ['TextColor', 'BGColor'],
28                                 ['Maximize', 'ShowBlocks']
29                         ]
30          });
31       }
32     </script>
33   <!--~}~-->
34
35 </head>
36
37 <body>
38   <!--~main_body show {~-->
39
40 <!--~form {~-->
41   <form action="admin_pages" method="post"><!--~editing {~--><div style="display: none"><input type="hidden" name="and_then" value="~and_then attr~" /><input type="hidden" name="admin_pages_edit_id" value="~admin_pages_edit_id attr~" /></div><!--~}~-->
42
43
44     <div class="caption">Title</div>
45     <div class="field_notes">(This appears at the top of the page, in the window title-bar (by the close button) and as the headline/link of search engine results.)</div>
46     <div class="field"><input type="text" name="title" value="~title attr~" /></div>
47
48     <div class="caption">Filename</div>
49     <div class="field_notes">(<!--~editing {~-->Careful: if you change this, be sure to update all links to this page<!--~}~--><!--~editing unset {~-->Please use only a-z, 0-9 and _ (underscore) in your filename. Please, no capitals, punctuation or spaces.<!--~}~-->)</div>
50     <div class="field"><input type="text" name="filename" value="~filename attr~" /></div>
51
52     <div class="caption">Show in navigation links</div>
53     <div class="field_notes">(On the left of every page.)</div>
54     <div class="field"><select name="navbar"><!--~navbar options~--></select></div>
55
56     <div class="caption">Navigation Link Text</div>
57     <div class="field_notes">(If you'd like this page to appear in the navigation with a shorter title.)</div>
58     <div class="field"><input type="text" name="nav_title" value="~nav_title attr~" /></div>
59
60     <div class="caption">Content</div>
61     <div class="field_notes">
62       <ul>
63         <li>If you don't see an editor below (with buttons in it) then please try this page in <a href="http://getfirefox.com">Mozilla FireFox</a> or <a href="http://www.google.com/chrome/">Google Chrome</a>.</li>
64         <li>If you're pasting from Microsoft Word, please use the "paste from word" button (4 right of the scissors).</li>
65         <li>In the link dialog, you can make a link to another page on this site by entering that page's "filename" in the URL field.</li>
66       </ul></div>
67     <div class="field"><textarea class="html_editor" rows="20" cols="50" id="content" name="content">~content html~</textarea><script type="text/javascript">make_wysiwyg('content');</script></div>
68
69     <div class="caption">Description</div>
70     <div class="field_notes">(Hidden description of this page, primarily for search engines.)</div>
71     <div class="field"><textarea rows="9" cols="22" name="description">~description html~</textarea></div>
72
73     <div class="caption">Keywords</div>
74     <div class="field_notes">(Hidden words (up to 30) with commas between them for search engines)</div>
75     <div class="field"><textarea rows="9" cols="22" name="keywords">~keywords html~</textarea></div>
76
77     <div class="field"><input type="submit" name="save" value="Save" /></div>
78
79   </form>
80 <!--~}~-->
81 <!--~listings {~-->
82   <!--~populated_listing {~-->
83   <p><a href="admin_pages?admin_pages_new=1">[Add a new page]</a></p>
84
85   <table cellspacing="0" cellpadding="4" border="1" summary="">
86     <th>Title</th><th>Filename</th><th>&nbsp;</th><!--~rows {~-->
87     <tr>
88       <td class="listing"><a href="admin_pages?admin_pages_edit_id=~id~">~title html~</a></td>
89       <td class="listing"><a href="admin_pages?admin_pages_edit_id=~id~">~filename html~</a></td>
90       <td><a href="admin_pages?admin_pages_delete_id=~id~" onclick="return confirm('Permanently delete?')">[delete this page]</a></td>
91     </tr><!--~}~-->
92
93   </table>
94   <!--~}~-->
95   <!--~empty_listing {~-->
96     <p>No pages in database.</p>
97   <!--~}~-->
98
99   <p><a href="admin_pages?admin_pages_new=1">[Add a new page]</a></p>
100 <!--~}~-->
101
102 <!--~}~-->
103 </body>
104 </html>