Revision 103
Added by ryan about 19 years ago
trunk/addons/trunk/languages/EN.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// $Id$ |
|
4 |
|
|
5 |
/* |
|
6 |
|
|
7 |
Website Baker Project <http://www.websitebaker.org/> |
|
8 |
Copyright (C) 2004-2005, Ryan Djurovich |
|
9 |
|
|
10 |
Website Baker is free software; you can redistribute it and/or modify |
|
11 |
it under the terms of the GNU General Public License as published by |
|
12 |
the Free Software Foundation; either version 2 of the License, or |
|
13 |
(at your option) any later version. |
|
14 |
|
|
15 |
Website Baker is distributed in the hope that it will be useful, |
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
18 |
GNU General Public License for more details. |
|
19 |
|
|
20 |
You should have received a copy of the GNU General Public License |
|
21 |
along with Website Baker; if not, write to the Free Software |
|
22 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
23 |
|
|
24 |
*/ |
|
25 |
|
|
26 |
// Define that this file is loaded |
|
27 |
if(!defined('LANGUAGE_LOADED')) { |
|
28 |
define('LANGUAGE_LOADED', true); |
|
29 |
} |
|
30 |
|
|
31 |
// Set the language information |
|
32 |
$language_code = 'EN'; |
|
33 |
$language_name = 'English'; |
|
34 |
$language_author = 'Ryan Djurovich'; |
|
35 |
$language_version = '2.5'; |
|
36 |
$language_designed_for = '2.5.x'; |
|
37 |
|
|
38 |
// Menu titles |
|
39 |
$MENU['START'] = 'Start'; |
|
40 |
$MENU['PAGES'] = 'Pages'; |
|
41 |
$MENU['MEDIA'] = 'Media'; |
|
42 |
$MENU['ADDONS'] = 'Add-ons'; |
|
43 |
$MENU['MODULES'] = 'Modules'; |
|
44 |
$MENU['TEMPLATES'] = 'Templates'; |
|
45 |
$MENU['LANGUAGES'] = 'Languages'; |
|
46 |
$MENU['PREFERENCES'] = 'Preferences'; |
|
47 |
$MENU['SETTINGS'] = 'Settings'; |
|
48 |
$MENU['ACCESS'] = 'Access'; |
|
49 |
$MENU['USERS'] = 'Users'; |
|
50 |
$MENU['GROUPS'] = 'Groups'; |
|
51 |
$MENU['HELP'] = 'Help'; |
|
52 |
$MENU['VIEW'] = 'View'; |
|
53 |
$MENU['LOGOUT'] = 'Log-out'; |
|
54 |
$MENU['LOGIN'] = 'Login'; |
|
55 |
$MENU['FORGOT'] = 'Retrieve Login Details'; |
|
56 |
|
|
57 |
// Section overviews |
|
58 |
$OVERVIEW['START'] = 'Administration overview'; |
|
59 |
$OVERVIEW['PAGES'] = 'Manage your websites pages...'; |
|
60 |
$OVERVIEW['MEDIA'] = 'Manage files stored in the media folder...'; |
|
61 |
$OVERVIEW['MODULES'] = 'Manage Website Baker modules...'; |
|
62 |
$OVERVIEW['TEMPLATES'] = 'Change the look and feel of your website with templates...'; |
|
63 |
$OVERVIEW['LANGUAGES'] = 'Manage Website Baker languages...'; |
|
64 |
$OVERVIEW['PREFERENCES'] = 'Change preferences such as email address, password, etc... '; |
|
65 |
$OVERVIEW['SETTINGS'] = 'Changes settings for Website Baker...'; |
|
66 |
$OVERVIEW['USERS'] = 'Manage users who can log-in to Website Baker...'; |
|
67 |
$OVERVIEW['GROUPS'] = 'Manage user groups and their system permissions...'; |
|
68 |
$OVERVIEW['HELP'] = 'Got a questions? Find your answer...'; |
|
69 |
$OVERVIEW['VIEW'] = 'Quickly view and browse your website in a new window...'; |
|
70 |
|
|
71 |
// Headings |
|
72 |
$HEADING['MODIFY_DELETE_PAGE'] = 'Modify/Delete Page'; |
|
73 |
$HEADING['DELETED_PAGES'] = 'Deleted Pages'; |
|
74 |
$HEADING['ADD_PAGE'] = 'Add Page'; |
|
75 |
$HEADING['ADD_HEADING'] = 'Add Heading'; |
|
76 |
$HEADING['MODIFY_PAGE'] = 'Modify Page'; |
|
77 |
$HEADING['MODIFY_PAGE_SETTINGS'] = 'Modify Page Settings'; |
|
78 |
$HEADING['MODIFY_ADVANCED_PAGE_SETTINGS'] = 'Modify Advanced Page Settings'; |
|
79 |
$HEADING['MANAGE_SECTIONS'] = 'Manage Sections'; |
|
80 |
$HEADING['MODIFY_INTRO_PAGE'] = 'Modify Intro Page'; |
|
81 |
|
|
82 |
$HEADING['BROWSE_MEDIA'] = 'Browse Media'; |
|
83 |
$HEADING['CREATE_FOLDER'] = 'Create Folder'; |
|
84 |
$HEADING['UPLOAD_FILES'] = 'Upload File(s)'; |
|
85 |
|
|
86 |
$HEADING['INSTALL_MODULE'] = 'Install Module'; |
|
87 |
$HEADING['UNINSTALL_MODULE'] = 'Uninstall Module'; |
|
88 |
$HEADING['MODULE_DETAILS'] = 'Module Details'; |
|
89 |
|
|
90 |
$HEADING['INSTALL_TEMPLATE'] = 'Install Template'; |
|
91 |
$HEADING['UNINSTALL_TEMPLATE'] = 'Uninstall Template'; |
|
92 |
$HEADING['TEMPLATE_DETAILS'] = 'Template Details'; |
|
93 |
|
|
94 |
$HEADING['INSTALL_LANGUAGE'] = 'Install Language'; |
|
95 |
$HEADING['UNINSTALL_LANGUAGE'] = 'Uninstall Language'; |
|
96 |
$HEADING['LANGUAGE_DETAILS'] = 'Language Details'; |
|
97 |
|
|
98 |
$HEADING['MY_SETTINGS'] = 'My Settings'; |
|
99 |
$HEADING['MY_EMAIL'] = 'My Email'; |
|
100 |
$HEADING['MY_PASSWORD'] = 'My Password'; |
|
101 |
|
|
102 |
$HEADING['GENERAL_SETTINGS'] = 'General Settings'; |
|
103 |
$HEADING['DEFAULT_SETTINGS'] = 'Default Settings'; |
|
104 |
$HEADING['SEARCH_SETTINGS'] = 'Search Settings'; |
|
105 |
$HEADING['FILESYSTEM_SETTINGS'] = 'Filesystem Settings'; |
|
106 |
|
|
107 |
$HEADING['MODIFY_DELETE_USER'] = 'Modify/Delete User'; |
|
108 |
$HEADING['ADD_USER'] = 'Add User'; |
|
109 |
$HEADING['MODIFY_USER'] = 'Modify User'; |
|
110 |
|
|
111 |
$HEADING['MODIFY_DELETE_GROUP'] = 'Modify/Delete Group'; |
|
112 |
$HEADING['ADD_GROUP'] = 'Add Group'; |
|
113 |
$HEADING['MODIFY_GROUP'] = 'Modify Group'; |
|
114 |
|
|
115 |
// Other text |
|
116 |
$TEXT['ADD'] = 'Add'; |
|
117 |
$TEXT['MODIFY'] = 'Modify'; |
|
118 |
$TEXT['SETTINGS'] = 'Settings'; |
|
119 |
$TEXT['DELETE'] = 'Delete'; |
|
120 |
$TEXT['SAVE'] = 'Save'; |
|
121 |
$TEXT['RESET'] = 'Reset'; |
|
122 |
$TEXT['LOGIN'] = 'Login'; |
|
123 |
$TEXT['RELOAD'] = 'Reload'; |
|
124 |
$TEXT['CANCEL'] = 'Cancel'; |
|
125 |
$TEXT['NAME'] = 'Name'; |
|
126 |
$TEXT['PLEASE_SELECT'] = 'Please select'; |
|
127 |
$TEXT['TITLE'] = 'Title'; |
|
128 |
$TEXT['PARENT'] = 'Parent'; |
|
129 |
$TEXT['TYPE'] = 'Type'; |
|
130 |
$TEXT['VISIBILITY'] = 'Visibility'; |
|
131 |
$TEXT['PRIVATE'] = 'Private'; |
|
132 |
$TEXT['PUBLIC'] = 'Public'; |
|
133 |
$TEXT['NONE'] = 'None'; |
|
134 |
$TEXT['NONE_FOUND'] = 'None Found'; |
|
135 |
$TEXT['CURRENT'] = 'Current'; |
|
136 |
$TEXT['CHANGE'] = 'Change'; |
|
137 |
$TEXT['WINDOW'] = 'Window'; |
|
138 |
$TEXT['DESCRIPTION'] = 'Description'; |
|
139 |
$TEXT['KEYWORDS'] = 'Keywords'; |
|
140 |
$TEXT['ADMINISTRATORS'] = 'Administrators'; |
|
141 |
$TEXT['PRIVATE_VIEWERS'] = 'Private Viewers'; |
|
142 |
$TEXT['EXPAND'] = 'Expand'; |
|
143 |
$TEXT['COLLAPSE'] = 'Collapse'; |
|
144 |
$TEXT['MOVE_UP'] = 'Move Up'; |
|
145 |
$TEXT['MOVE_DOWN'] = 'Move Down'; |
|
146 |
$TEXT['RENAME'] = 'Rename'; |
|
147 |
$TEXT['MODIFY_SETTINGS'] = 'Modify Settings'; |
|
148 |
$TEXT['MODIFY_CONTENT'] = 'Modify Content'; |
|
149 |
$TEXT['VIEW'] = 'View'; |
|
150 |
$TEXT['UP'] = 'Up'; |
|
151 |
$TEXT['FORGOTTEN_DETAILS'] = 'Forgotten your details?'; |
|
152 |
$TEXT['NEED_TO_LOGIN'] = 'Need to log-in?'; |
|
153 |
$TEXT['SEND_DETAILS'] = 'Send Details'; |
|
154 |
$TEXT['USERNAME'] = 'Username'; |
|
155 |
$TEXT['PASSWORD'] = 'Password'; |
|
156 |
$TEXT['HOME'] = 'Home'; |
|
157 |
$TEXT['TARGET_FOLDER'] = 'Target folder'; |
|
158 |
$TEXT['OVERWRITE_EXISTING'] = 'Overwrite existing'; |
|
159 |
$TEXT['FILE'] = 'File'; |
|
160 |
$TEXT['FILES'] = 'Files'; |
|
161 |
$TEXT['FOLDER'] = 'Folder'; |
|
162 |
$TEXT['FOLDERS'] = 'Folders'; |
|
163 |
$TEXT['CREATE_FOLDER'] = 'Create Folder'; |
|
164 |
$TEXT['UPLOAD_FILES'] = 'Upload File(s)'; |
|
165 |
$TEXT['CURRENT_FOLDER'] = 'Current Folder'; |
|
166 |
$TEXT['TO'] = 'To'; |
|
167 |
$TEXT['FROM'] = 'From'; |
|
168 |
$TEXT['INSTALL'] = 'Install'; |
|
169 |
$TEXT['UNINSTALL'] = 'Uninstall'; |
|
170 |
$TEXT['VIEW_DETAILS'] = 'View Details'; |
|
171 |
$TEXT['DISPLAY_NAME'] = 'Display Name'; |
|
172 |
$TEXT['AUTHOR'] = 'Author'; |
|
173 |
$TEXT['VERSION'] = 'Version'; |
|
174 |
$TEXT['DESIGNED_FOR'] = 'Designed For'; |
|
175 |
$TEXT['DESCRIPTION'] = 'Description'; |
|
176 |
$TEXT['EMAIL'] = 'Email'; |
|
177 |
$TEXT['LANGUAGE'] = 'Language'; |
|
178 |
$TEXT['TIMEZONE'] = 'Timezone'; |
|
179 |
$TEXT['CURRENT_PASSWORD'] = 'Current Password'; |
|
180 |
$TEXT['NEW_PASSWORD'] = 'New Password'; |
|
181 |
$TEXT['RETYPE_NEW_PASSWORD'] = 'Re-type New Password'; |
|
182 |
$TEXT['ACTIVE'] = 'Active'; |
|
183 |
$TEXT['DISABLED'] = 'Disabled'; |
|
184 |
$TEXT['ENABLED'] = 'Enabled'; |
|
185 |
$TEXT['RETYPE_PASSWORD'] = 'Re-type Password'; |
|
186 |
$TEXT['GROUP'] = 'Group'; |
|
187 |
$TEXT['SYSTEM_PERMISSIONS'] = 'System Permissions'; |
|
188 |
$TEXT['MODULE_PERMISSIONS'] = 'Module Permissions'; |
|
189 |
$TEXT['SHOW_ADVANCED'] = 'Show Advanced Options'; |
|
190 |
$TEXT['HIDE_ADVANCED'] = 'Hide Advanced Options'; |
|
191 |
$TEXT['BASIC'] = 'Basic'; |
|
192 |
$TEXT['ADVANCED'] = 'Advanced'; |
|
193 |
$TEXT['WEBSITE'] = 'Website'; |
|
194 |
$TEXT['DEFAULT'] = 'Default'; |
|
195 |
$TEXT['KEYWORDS'] = 'Keywords'; |
|
196 |
$TEXT['TEXT'] = 'Text'; |
|
197 |
$TEXT['HEADER'] = 'Header'; |
|
198 |
$TEXT['FOOTER'] = 'Footer'; |
|
199 |
$TEXT['TEMPLATE'] = 'Template'; |
|
200 |
$TEXT['INSTALLATION'] = 'Installation'; |
|
201 |
$TEXT['DATABASE'] = 'Database'; |
|
202 |
$TEXT['HOST'] = 'Host'; |
|
203 |
$TEXT['INTRO'] = 'Intro'; |
|
204 |
$TEXT['PAGE'] = 'Page'; |
|
205 |
$TEXT['SIGNUP'] = 'Sign-up'; |
|
206 |
$TEXT['PHP_ERROR_LEVEL'] = 'PHP Error Reporting Level'; |
|
207 |
$TEXT['ADMIN'] = 'Admin'; |
|
208 |
$TEXT['PATH'] = 'Path'; |
|
209 |
$TEXT['URL'] = 'URL'; |
|
210 |
$TEXT['FRONTEND'] = 'Front-end'; |
|
211 |
$TEXT['EXTENSION'] = 'Extension'; |
|
212 |
$TEXT['TABLE_PREFIX'] = 'Table Prefix'; |
|
213 |
$TEXT['CHANGES'] = 'Changes'; |
|
214 |
$TEXT['ADMINISTRATION'] = 'Administration'; |
|
215 |
$TEXT['FORGOT_DETAILS'] = 'Forgot Details?'; |
|
216 |
$TEXT['LOGGED_IN'] = 'Logged-In'; |
|
217 |
$TEXT['WELCOME_BACK'] = 'Welcome back'; |
|
218 |
$TEXT['FULL_NAME'] = 'Full Name'; |
|
219 |
$TEXT['ACCOUNT_SIGNUP'] = 'Account Sign-Up'; |
|
220 |
$TEXT['LINK'] = 'Link'; |
|
221 |
$TEXT['TARGET'] = 'Target'; |
|
222 |
$TEXT['NEW_WINDOW'] = 'New Window'; |
|
223 |
$TEXT['SAME_WINDOW'] = 'Same Window'; |
|
224 |
$TEXT['PAGE_LEVEL_LIMIT'] = 'Page Level Limit'; |
|
225 |
$TEXT['SUCCESS'] = 'Success'; |
|
226 |
$TEXT['ERROR'] = 'Error'; |
|
227 |
$TEXT['ARE_YOU_SURE'] = 'Are you sure?'; |
|
228 |
$TEXT['YES'] = 'Yes'; |
|
229 |
$TEXT['NO'] = 'No'; |
|
230 |
$TEXT['SYSTEM_DEFAULT'] = 'System Default'; |
|
231 |
$TEXT['PAGE_TITLE'] = 'Page Title'; |
|
232 |
$TEXT['MENU_TITLE'] = 'Menu Title'; |
|
233 |
$TEXT['ACTIONS'] = 'Actions'; |
|
234 |
$TEXT['UNKNOWN'] = 'Unknown'; |
|
235 |
$TEXT['BLOCK'] = 'Block'; |
|
236 |
$TEXT['SEARCH'] = 'Search'; |
|
237 |
$TEXT['SEARCHING'] = 'Searching'; |
|
238 |
$TEXT['POST'] = 'Post'; |
|
239 |
$TEXT['COMMENT'] = 'Comment'; |
|
240 |
$TEXT['COMMENTS'] = 'Comments'; |
|
241 |
$TEXT['COMMENTING'] = 'Commenting'; |
|
242 |
$TEXT['SHORT'] = 'Short'; |
|
243 |
$TEXT['LONG'] = 'Long'; |
|
244 |
$TEXT['LOOP'] = 'Loop'; |
|
245 |
$TEXT['FIELD'] = 'Field'; |
|
246 |
$TEXT['REQUIRED'] = 'Required'; |
|
247 |
$TEXT['LENGTH'] = 'Length'; |
|
248 |
$TEXT['MESSAGE'] = 'Message'; |
|
249 |
$TEXT['SUBJECT'] = 'Subject'; |
|
250 |
$TEXT['MATCH'] = 'Match'; |
|
251 |
$TEXT['ALL_WORDS'] = 'All Words'; |
|
252 |
$TEXT['ANY_WORDS'] = 'Any Words'; |
|
253 |
$TEXT['EXACT_MATCH'] = 'Exact Match'; |
|
254 |
$TEXT['SHOW'] = 'Show'; |
|
255 |
$TEXT['HIDE'] = 'Hide'; |
|
256 |
$TEXT['START_PUBLISHING'] = 'Start Publishing'; |
|
257 |
$TEXT['FINISH_PUBLISHING'] = 'Finish Publishing'; |
|
258 |
$TEXT['DATE'] = 'Date'; |
|
259 |
$TEXT['START'] = 'Start'; |
|
260 |
$TEXT['END'] = 'End'; |
|
261 |
$TEXT['IMAGE'] = 'Image'; |
|
262 |
$TEXT['ICON'] = 'Icon'; |
|
263 |
$TEXT['SECTION'] = 'Section'; |
|
264 |
$TEXT['DATE_FORMAT'] = 'Date Format'; |
|
265 |
$TEXT['TIME_FORMAT'] = 'Time Format'; |
|
266 |
$TEXT['RESULTS'] = 'Results'; |
|
267 |
$TEXT['RESIZE'] = 'Re-size'; |
|
268 |
$TEXT['MANAGE'] = 'Manage'; |
|
269 |
$TEXT['CODE'] = 'Code'; |
|
270 |
$TEXT['WIDTH'] = 'Width'; |
|
271 |
$TEXT['HEIGHT'] = 'Height'; |
|
272 |
$TEXT['MORE'] = 'More'; |
|
273 |
$TEXT['READ_MORE'] = 'Read More'; |
|
274 |
$TEXT['CHANGE_SETTINGS'] = 'Change Settings'; |
|
275 |
$TEXT['CURRENT_PAGE'] = 'Current Page'; |
|
276 |
$TEXT['CLOSE'] = 'Close'; |
|
277 |
$TEXT['INTRO_PAGE'] = 'Intro Page'; |
|
278 |
$TEXT['INSTALLATION_URL'] = 'Installation URL'; |
|
279 |
$TEXT['INSTALLATION_PATH'] = 'Installation Path'; |
|
280 |
$TEXT['PAGE_EXTENSION'] = 'Page Extension'; |
|
281 |
$TEXT['NO_RESULTS'] = 'No Results'; |
|
282 |
$TEXT['WEBSITE_TITLE'] = 'Website Title'; |
|
283 |
$TEXT['WEBSITE_DESCRIPTION'] = 'Website Description'; |
|
284 |
$TEXT['WEBSITE_KEYWORDS'] = 'Website Keywords'; |
|
285 |
$TEXT['WEBSITE_HEADER'] = 'Website Header'; |
|
286 |
$TEXT['WEBSITE_FOOTER'] = 'Website Footer'; |
|
287 |
$TEXT['RESULTS_HEADER'] = 'Results Header'; |
|
288 |
$TEXT['RESULTS_LOOP'] = 'Results Loop'; |
|
289 |
$TEXT['RESULTS_FOOTER'] = 'Results Footer'; |
|
290 |
$TEXT['LEVEL'] = 'Level'; |
|
291 |
$TEXT['NOT_FOUND'] = 'Not Found'; |
|
292 |
$TEXT['PAGE_SPACER'] = 'Page Spacer'; |
|
293 |
$TEXT['MATCHING'] = 'Matching'; |
|
294 |
$TEXT['TEMPLATE_PERMISSIONS'] = 'Template Permissions'; |
|
295 |
$TEXT['PAGES_DIRECTORY'] = 'Pages Directory'; |
|
296 |
$TEXT['MEDIA_DIRECTORY'] = 'Media Directory'; |
|
297 |
$TEXT['FILE_MODE'] = 'File Mode'; |
|
298 |
$TEXT['USER'] = 'User'; |
|
299 |
$TEXT['OTHERS'] = 'Others'; |
|
300 |
$TEXT['READ'] = 'Read'; |
|
301 |
$TEXT['WRITE'] = 'Write'; |
|
302 |
$TEXT['EXECUTE'] = 'Execute'; |
|
303 |
$TEXT['SMART_LOGIN'] = 'Smart Login'; |
|
304 |
$TEXT['REMEMBER_ME'] = 'Remember Me'; |
|
305 |
$TEXT['FILESYSTEM_PERMISSIONS'] = 'Filesystem Permissions'; |
|
306 |
$TEXT['DIRECTORIES'] = 'Directories'; |
|
307 |
$TEXT['DIRECTORY_MODE'] = 'Directory Mode'; |
|
308 |
$TEXT['LIST_OPTIONS'] = 'List Options'; |
|
309 |
$TEXT['OPTION'] = 'Option'; |
|
310 |
$TEXT['ALLOW_MULTIPLE_SELECTIONS'] = 'Allow Multiple Selections'; |
|
311 |
$TEXT['TEXTFIELD'] = 'Textfield'; |
|
312 |
$TEXT['TEXTAREA'] = 'Textarea'; |
|
313 |
$TEXT['SELECT_BOX'] = 'Select Box'; |
|
314 |
$TEXT['CHECKBOX_GROUP'] = 'Checkbox Group'; |
|
315 |
$TEXT['RADIO_BUTTON_GROUP'] = 'Radio Button Group'; |
|
316 |
$TEXT['SIZE'] = 'Size'; |
|
317 |
$TEXT['DEFAULT_TEXT'] = 'Default Text'; |
|
318 |
$TEXT['SEPERATOR'] = 'Seperator'; |
|
319 |
$TEXT['BACK'] = 'Back'; |
|
320 |
$TEXT['UNDER_CONSTRUCTION'] = 'Under Construction'; |
|
321 |
$TEXT['MULTISELECT'] = 'Multi-select'; |
|
322 |
$TEXT['SHORT_TEXT'] = 'Short Text'; |
|
323 |
$TEXT['LONG_TEXT'] = 'Long Text'; |
|
324 |
$TEXT['HOMEPAGE_REDIRECTION'] = 'Homepage Redirection'; |
|
325 |
$TEXT['HEADING'] = 'Heading'; |
|
326 |
$TEXT['MULTIPLE_MENUS'] = 'Multiple Menu\'s'; |
|
327 |
$TEXT['REGISTERED'] = 'Registered'; |
|
328 |
$TEXT['START'] = 'Start'; |
|
329 |
$TEXT['SECTION_BLOCKS'] = 'Section Blocks'; |
|
330 |
$TEXT['REGISTERED_VIEWERS'] = 'Registered Viewers'; |
|
331 |
$TEXT['SUBMISSION_ID'] = 'Submission ID'; |
|
332 |
$TEXT['SUBMISSIONS'] = 'Submissions'; |
|
333 |
$TEXT['SUBMITTED'] = 'Submitted'; |
|
334 |
$TEXT['MAX_SUBMISSIONS_PER_HOUR'] = 'Max. Submissions Per Hour'; |
|
335 |
$TEXT['SUBMISSIONS_STORED_IN_DATABASE'] = 'Submissions Stored In Database'; |
|
336 |
$TEXT['EMAIL_ADDRESS'] = 'Email Address'; |
|
337 |
$TEXT['CUSTOM'] = 'Custom'; |
|
338 |
$TEXT['ANONYMOUS'] = 'Anonymous'; |
|
339 |
$TEXT['SERVER_OPERATING_SYSTEM'] = 'Server Operating System'; |
|
340 |
$TEXT['WORLD_WRITEABLE_FILE_PERMISSIONS'] = 'World-writeable file permissions'; |
|
341 |
$TEXT['LINUX_UNIX_BASED'] = 'Linux/Unix based'; |
|
342 |
$TEXT['WINDOWS'] = 'Windows'; |
|
343 |
$TEXT['HOME_FOLDER'] = 'Home Folder'; |
|
344 |
$TEXT['HOME_FOLDERS'] = 'Home Folders'; |
|
345 |
$TEXT['PAGE_TRASH'] = 'Page Trash'; |
|
346 |
$TEXT['INLINE'] = 'In-line'; |
|
347 |
$TEXT['SEPARATE'] = 'Separate'; |
|
348 |
$TEXT['DELETED'] = 'Deleted'; |
|
349 |
$TEXT['VIEW_DELETED_PAGES'] = 'View Deleted Pages'; |
|
350 |
$TEXT['EMPTY_TRASH'] = 'Empty Trash'; |
|
351 |
$TEXT['TRASH_EMPTIED'] = 'Trash Emptied'; |
|
352 |
$TEXT['ADD_SECTION'] = 'Add Section'; |
|
353 |
$TEXT['POST_HEADER'] = 'Post Header'; |
|
354 |
$TEXT['POST_FOOTER'] = 'Post Footer'; |
|
355 |
$TEXT['POSTS_PER_PAGE'] = 'Posts Per Page'; |
|
356 |
$TEXT['RESIZE_IMAGE_TO'] = 'Resize Image To'; |
|
357 |
$TEXT['UNLIMITED'] = 'Unlimited'; |
|
358 |
$TEXT['OF'] = 'Of'; |
|
359 |
$TEXT['OUT_OF'] = 'Out Of'; |
|
360 |
$TEXT['NEXT'] = 'Next'; |
|
361 |
$TEXT['PREVIOUS'] = 'Previous'; |
|
362 |
$TEXT['NEXT_PAGE'] = 'Next Page'; |
|
363 |
$TEXT['PREVIOUS_PAGE'] = 'Previous Page'; |
|
364 |
$TEXT['ON'] = 'On'; |
|
365 |
$TEXT['LAST_UPDATED_BY'] = 'Last Updated By'; |
|
366 |
$TEXT['RESULTS_FOR'] = 'Results For'; |
|
367 |
$TEXT['TIME'] = 'Time'; |
|
368 |
$TEXT['WYSIWYG_STYLE'] = 'WYSIWYG Style'; |
|
369 |
$TEXT['WYSIWYG_EDITOR'] = "WYSIWYG Editor"; |
|
370 |
$TEXT['SERVER_EMAIL'] = 'Server Email'; |
|
371 |
$TEXT['MENU'] = 'Menu'; |
|
372 |
$TEXT['MANAGE_GROUPS'] = 'Manage Groups'; |
|
373 |
$TEXT['MANAGE_USERS'] = 'Manage Users'; |
|
374 |
$TEXT['PAGE_LANGUAGES'] = 'Page Languages'; |
|
375 |
$TEXT['HIDDEN'] = 'Hidden'; |
|
376 |
$TEXT['MAIN'] = 'Main'; |
|
377 |
$TEXT['RENAME_FILES_ON_UPLOAD'] = 'Rename Files On Upload'; |
|
378 |
|
|
379 |
// Success/error messages |
|
380 |
$MESSAGE['FRONTEND']['SORRY_NO_VIEWING_PERMISSIONS'] = 'Sorry, you do not have permissions to view this page'; |
|
381 |
|
|
382 |
$MESSAGE['ADMIN']['INSUFFICIENT_PRIVELLIGES'] = 'Insufficient privelliges to be here'; |
|
383 |
|
|
384 |
$MESSAGE['LOGIN']['BOTH_BLANK'] = 'Please enter you username and password below'; |
|
385 |
$MESSAGE['LOGIN']['USERNAME_BLANK'] = 'Please enter a username'; |
|
386 |
$MESSAGE['LOGIN']['PASSWORD_BLANK'] = 'Please enter a password'; |
|
387 |
$MESSAGE['LOGIN']['USERNAME_TOO_SHORT'] = 'Supplied username to short'; |
|
388 |
$MESSAGE['LOGIN']['PASSWORD_TOO_SHORT'] = 'Supplied password to short'; |
|
389 |
$MESSAGE['LOGIN']['USERNAME_TOO_LONG'] = 'Supplied username to long'; |
|
390 |
$MESSAGE['LOGIN']['PASSWORD_TOO_LONG'] = 'Supplied password to long'; |
|
391 |
$MESSAGE['LOGIN']['AUTHENTICATION_FAILED'] = 'Username or password incorrect'; |
|
392 |
|
|
393 |
$MESSAGE['SIGNUP']['NO_EMAIL'] = 'You must enter an email address'; |
|
394 |
|
|
395 |
$MESSAGE['FORGOT_PASS']['NO_DATA'] = 'Please enter your email address below'; |
|
396 |
$MESSAGE['FORGOT_PASS']['EMAIL_NOT_FOUND'] = 'The email that you entered cannot be found in the database'; |
|
397 |
$MESSAGE['FORGOT_PASS']['CANNOT_EMAIL'] = 'Unable to email password, please contact system administrator'; |
|
398 |
$MESSAGE['FORGOT_PASS']['PASSWORD_RESET'] = 'Your username and password have been sent to your email address'; |
|
399 |
$MESSAGE['FORGOT_PASS']['ALREADY_RESET'] = 'Password cannot be reset more than once per hour, sorry'; |
|
400 |
|
|
401 |
$MESSAGE['START']['WELCOME_MESSAGE'] = 'Welcome to Website Baker Administration'; |
|
402 |
$MESSAGE['START']['INSTALL_DIR_EXISTS'] = 'Warning, Installation Directory Still Exists!'; |
|
403 |
$MESSAGE['START']['CURRENT_USER'] = 'You are currently logged in as:'; |
|
404 |
|
|
405 |
$MESSAGE['SETTINGS']['UNABLE_OPEN_CONFIG'] = 'Unable to open the configuration file'; |
|
406 |
$MESSAGE['SETTINGS']['UNABLE_WRITE_CONFIG'] = 'Cannot write to configuration file'; |
|
407 |
$MESSAGE['SETTINGS']['SAVED'] = 'Settings saved successfully'; |
|
408 |
$MESSAGE['SETTINGS']['MODE_SWITCH_WARNING'] = 'Please Note: Pressing this button resets all unsaved changes'; |
|
409 |
$MESSAGE['SETTINGS']['WORLD_WRITEABLE_WARNING'] = 'Please note: this is only recommended for testing environments'; |
|
410 |
|
|
411 |
$MESSAGE['USERS']['ADDED'] = 'User added successfully'; |
|
412 |
$MESSAGE['USERS']['SAVED'] = 'User saved successfully'; |
|
413 |
$MESSAGE['USERS']['DELETED'] = 'User deleted successfully'; |
|
414 |
$MESSAGE['USERS']['NO_GROUP'] = 'No group was selected'; |
|
415 |
$MESSAGE['USERS']['USERNAME_TOO_SHORT'] = 'The username you entered was too short'; |
|
416 |
$MESSAGE['USERS']['PASSWORD_TOO_SHORT'] = 'The password you entered was too short'; |
|
417 |
$MESSAGE['USERS']['PASSWORD_MISMATCH'] = 'The passwords you entered do not match'; |
|
418 |
$MESSAGE['USERS']['INVALID_EMAIL'] = 'The email address you entered is invalid'; |
|
419 |
$MESSAGE['USERS']['EMAIL_TAKEN'] = 'The email you entered is already in use'; |
|
420 |
$MESSAGE['USERS']['USERNAME_TAKEN'] = 'The username you entered is already taken'; |
|
421 |
$MESSAGE['USERS']['CHANGING_PASSWORD'] = 'Please note: You should only enter values in the above fields if you wish to change this users password'; |
|
422 |
$MESSAGE['USERS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected user?'; |
|
423 |
|
|
424 |
$MESSAGE['GROUPS']['ADDED'] = 'Group added successfully'; |
|
425 |
$MESSAGE['GROUPS']['SAVED'] = 'Group saved successfully'; |
|
426 |
$MESSAGE['GROUPS']['DELETED'] = 'Group deleted successfully'; |
|
427 |
$MESSAGE['GROUPS']['GROUP_NAME_BLANK'] = 'Group name is blank'; |
|
428 |
$MESSAGE['GROUPS']['CONFIRM_DELETE'] = 'Are you sure you want to delete the selected group (and any users that belong to it)?'; |
|
429 |
$MESSAGE['GROUPS']['NO_GROUPS_FOUND'] = 'No groups found'; |
|
430 |
$MESSAGE['GROUPS']['GROUP_NAME_EXISTS'] = 'Group name already exists'; |
|
431 |
|
|
432 |
$MESSAGE['PREFERENCES']['DETAILS_SAVED'] = 'Details saved successfully'; |
|
433 |
$MESSAGE['PREFERENCES']['EMAIL_UPDATED'] = 'Email updated successfully'; |
|
434 |
$MESSAGE['PREFERENCES']['CURRENT_PASSWORD_INCORRECT'] = 'The (current) password you entered is incorrect'; |
|
435 |
$MESSAGE['PREFERENCES']['PASSWORD_CHANGED'] = 'Password changed successfully'; |
|
436 |
|
|
437 |
$MESSAGE['TEMPLATES']['CHANGE_TEMPLATE_NOTICE'] = 'Please note: to change the template you must go to the Settings section'; |
|
438 |
|
|
439 |
$MESSAGE['MEDIA']['DIR_DOT_DOT_SLASH'] = 'Cannot include ../ in the folder name'; |
|
440 |
$MESSAGE['MEDIA']['DIR_DOES_NOT_EXIST'] = 'Directory does not exist'; |
|
441 |
$MESSAGE['MEDIA']['TARGET_DOT_DOT_SLASH'] = 'Cannot have ../ in the folder target'; |
|
442 |
$MESSAGE['MEDIA']['NAME_DOT_DOT_SLASH'] = 'Cannot include ../ in the name'; |
|
443 |
$MESSAGE['MEDIA']['NAME_INDEX_PHP'] = 'Cannot use index.php as the name'; |
|
444 |
$MESSAGE['MEDIA']['NONE_FOUND'] = 'No media found in the current folder'; |
|
445 |
$MESSAGE['MEDIA']['FILE_NOT_FOUND'] = 'File not found'; |
|
446 |
$MESSAGE['MEDIA']['DELETED_FILE'] = 'File deleted successfully'; |
|
447 |
$MESSAGE['MEDIA']['DELETED_DIR'] = 'Folder deleted successfully'; |
|
448 |
$MESSAGE['MEDIA']['CONFIRM_DELETE'] = 'Are you sure you want to delete the following file or folder?'; |
|
449 |
$MESSAGE['MEDIA']['CANNOT_DELETE_FILE'] = 'Cannot delete the selected file'; |
|
450 |
$MESSAGE['MEDIA']['CANNOT_DELETE_DIR'] = 'Cannot delete the selected folder'; |
|
451 |
$MESSAGE['MEDIA']['BLANK_NAME'] = 'You did not enter a new name'; |
|
452 |
$MESSAGE['MEDIA']['BLANK_EXTENSION'] = 'You did not enter a file extension'; |
|
453 |
$MESSAGE['MEDIA']['RENAMED'] = 'Rename successful'; |
|
454 |
$MESSAGE['MEDIA']['CANNOT_RENAME'] = 'Rename unsuccessful'; |
|
455 |
$MESSAGE['MEDIA']['FILE_EXISTS'] = 'A file matching the name you entered already exists'; |
|
456 |
$MESSAGE['MEDIA']['DIR_EXISTS'] = 'A folder matching the name you entered already exists'; |
|
457 |
$MESSAGE['MEDIA']['DIR_MADE'] = 'Folder created successfully'; |
|
458 |
$MESSAGE['MEDIA']['DIR_NOT_MADE'] = 'Unable to create folder'; |
|
459 |
$MESSAGE['MEDIA']['SINGLE_UPLOADED'] = ' file was successfully uploaded'; |
|
460 |
$MESSAGE['MEDIA']['UPLOADED'] = ' files were successfully uploaded'; |
|
461 |
|
|
462 |
$MESSAGE['PAGES']['ADDED'] = 'Page added successfully'; |
|
463 |
$MESSAGE['PAGES']['ADDED_HEADING'] = 'Page heading added successfully'; |
|
464 |
$MESSAGE['PAGES']['PAGE_EXISTS'] = 'A page with the same or similar title exists'; |
|
465 |
$MESSAGE['PAGES']['CANNOT_CREATE_ACCESS_FILE'] = 'Error creating access file in the /pages directory (insufficient privileges)'; |
|
466 |
$MESSAGE['PAGES']['CANNOT_DELETE_ACCESS_FILE'] = 'Error deleting access file in the /pages directory (insufficient privileges)'; |
|
467 |
$MESSAGE['PAGES']['NOT_FOUND'] = 'Page not found'; |
|
468 |
$MESSAGE['PAGES']['SAVED'] = 'Page saved successfully'; |
|
469 |
$MESSAGE['PAGES']['SAVED_SETTINGS'] = 'Page settings saved successfully'; |
|
470 |
$MESSAGE['PAGES']['NOT_SAVED'] = 'Error saving page'; |
|
471 |
$MESSAGE['PAGES']['DELETE_CONFIRM'] = 'Are you sure you want to delete the selected page (and all of its sub-pages)'; |
|
472 |
$MESSAGE['PAGES']['DELETED'] = 'Page deleted successfully'; |
|
473 |
$MESSAGE['PAGES']['RESTORED'] = 'Page restored successfully'; |
|
474 |
$MESSAGE['PAGES']['BLANK_PAGE_TITLE'] = 'Please enter a page title'; |
|
475 |
$MESSAGE['PAGES']['BLANK_MENU_TITLE'] = 'Please enter a menu title'; |
|
476 |
$MESSAGE['PAGES']['REORDERED'] = 'Page re-ordered successfully'; |
|
477 |
$MESSAGE['PAGES']['CANNOT_REORDER'] = 'Error re-ordering page'; |
|
478 |
$MESSAGE['PAGES']['INSUFFICIENT_PERMISSIONS'] = 'You do not have permissions to modify this page'; |
|
479 |
$MESSAGE['PAGES']['INTRO_NOT_WRITABLE'] = 'Cannot write to file /pages/intro.php (insufficient priviliges)'; |
|
480 |
$MESSAGE['PAGES']['INTRO_SAVED'] = 'Intro page saved successfully'; |
|
481 |
$MESSAGE['PAGES']['LAST_MODIFIED'] = 'Last modification by'; |
|
482 |
$MESSAGE['PAGES']['INTRO_LINK'] = 'Click HERE to modify the intro page'; |
|
483 |
$MESSAGE['PAGES']['SECTIONS_PROPERTIES_SAVED'] = 'Section properties saved successfully'; |
|
484 |
$MESSAGE['PAGES']['RETURN_TO_PAGES'] = 'Return to pages'; |
|
485 |
|
|
486 |
$MESSAGE['GENERIC']['FILL_IN_ALL'] = 'Please go back and fill-in all fields'; |
|
487 |
$MESSAGE['GENERIC']['FILE_TYPE'] = 'Please note that the file you upload must be of the following format:'; |
|
488 |
$MESSAGE['GENERIC']['FILE_TYPES'] = 'Please note that the file you upload must be in one of the following formats:'; |
|
489 |
$MESSAGE['GENERIC']['CANNOT_UPLOAD'] = 'Cannot upload file'; |
|
490 |
$MESSAGE['GENERIC']['ALREADY_INSTALLED'] = 'Already installed'; |
|
491 |
$MESSAGE['GENERIC']['NOT_INSTALLED'] = 'Not installed'; |
|
492 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL'] = 'Cannot uninstall'; |
|
493 |
$MESSAGE['GENERIC']['CANNOT_UNZIP'] = 'Cannot unzip file'; |
|
494 |
$MESSAGE['GENERIC']['INSTALLED'] = 'Installed successfully'; |
|
495 |
$MESSAGE['GENERIC']['INSTALLED'] = 'Upgraded successfully'; |
|
496 |
$MESSAGE['GENERIC']['UNINSTALLED'] = 'Uninstalled successfully'; |
|
497 |
$MESSAGE['GENERIC']['BAD_PERMISSIONS'] = 'Unable to write to the target directory'; |
|
498 |
$MESSAGE['GENERIC']['INVALID'] = 'The file you uploaded is invalid'; |
|
499 |
$MESSAGE['GENERIC']['CANNOT_UNINSTALL_IN_USE'] = 'Cannot Uninstall: the selected file is in use'; |
|
500 |
$MESSAGE['GENERIC']['WEBSITE_UNDER_CONTRUCTION'] = 'Website Under Construction'; |
|
501 |
$MESSAGE['GENERIC']['PLEASE_CHECK_BACK_SOON'] = 'Please check back soon...'; |
|
502 |
|
|
503 |
$MESSAGE['MOD_FORM']['REQUIRED_FIELDS'] = 'You must enter details for the following fields'; |
|
504 |
$MESSAGE['MOD_FORM']['EXCESS_SUBMISSIONS'] = 'Sorry, this form has been submitted too many times so far this hour. Please retry in the next hour.'; |
|
505 |
|
|
506 |
?> |
|
507 | 0 |
trunk/addons/trunk/modules/htmlarea/uninstall.php | ||
---|---|---|
1 |
<?php |
|
2 |
|
|
3 |
// Must include code to stop this file being access directly |
|
4 |
if(defined('WB_PATH') == false) { exit("Cannot access this file directly"); } |
|
5 |
|
|
6 |
// Delete the editor directory |
|
7 |
rm_full_dir(WB_PATH.'/modules/htmlarea/htmlarea'); |
|
8 |
|
|
9 |
?> |
trunk/addons/trunk/modules/htmlarea/htmlarea/index.html | ||
---|---|---|
1 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN"> |
|
2 |
<html> |
|
3 |
<head> |
|
4 |
<title>HTMLArea -- the free, customizable online editor</title> |
|
5 |
|
|
6 |
<style type="text/css"> |
|
7 |
html, body { font-family: georgia,"times new roman",serif; background-color: #fff; color: #000; } |
|
8 |
.label { text-align: right; padding-right: 0.3em; } |
|
9 |
.bline { border-bottom: 1px solid #aaa; } |
|
10 |
</style> |
|
11 |
</head> |
|
12 |
|
|
13 |
<body> |
|
14 |
<div style="float: right; border: 1px solid #aaa; background-color: #eee; padding: 3px; margin-left: 10px; margin-bottom: 10px;"> |
|
15 |
<table cellspacing="0" cellpadding="0" border="0"> |
|
16 |
<tr> |
|
17 |
<td class="label">Version:</td><td>3.0</td> |
|
18 |
</tr> |
|
19 |
<tr> |
|
20 |
<td class="label">Release:</td><td>rc1 (<a href="release-notes.html">release notes</a>)</td> |
|
21 |
</tr> |
|
22 |
<tr> |
|
23 |
<td class="label bline">Compiled at:</td><td class="bline">Mar 1, 2004 [19:37] GMT</td> |
|
24 |
</tr> |
|
25 |
<tr> |
|
26 |
<td class="label">SourceForge page:</td><td><a href="http://sf.net/projects/itools-htmlarea/">http://sf.net/projects/itools-htmlarea/</a></td> |
|
27 |
</table> |
|
28 |
</div> |
|
29 |
<h1>HTMLArea -- the free<br/>customizable online editor</h1> |
|
30 |
|
|
31 |
<p> |
|
32 |
HTMLArea is a free, customizable online editor. It works inside your |
|
33 |
browser. It uses a non-standard feature implemented in Internet |
|
34 |
Explorer 5.5 or better for Windows and Mozilla 1.3 or better (any |
|
35 |
platform), therefore it will only work in one of these browsers. |
|
36 |
</p> |
|
37 |
|
|
38 |
<p> |
|
39 |
HTMLArea is copyright <a |
|
40 |
href="http://interactivetools.com">InteractiveTools.com</a> and <a |
|
41 |
href="http://dynarch.com">Dynarch.com</a> and it is |
|
42 |
released under a BSD-style license. HTMLArea is created and developed |
|
43 |
upto version 2.03 by InteractiveTools.com. Version 3.0 developed by |
|
44 |
<a href="http://dynarch.com/mishoo/">Mihai Bazon</a> for |
|
45 |
InteractiveTools. It contains code sponsored by third-party companies as well. |
|
46 |
Please see our About Box for details about who sponsored what plugins. |
|
47 |
</p> |
|
48 |
|
|
49 |
<h2>Online demos</h2> |
|
50 |
|
|
51 |
<ul> |
|
52 |
|
|
53 |
<li><a href="examples/core.html">HTMLArea standard</a> -- contains the core |
|
54 |
editor.</li> |
|
55 |
|
|
56 |
<li><a href="examples/table-operations.html">HTMLArea + tables</a> -- |
|
57 |
loads the <tt>TableOperations</tt> plugin which provides some extra |
|
58 |
editing features for tables.</li> |
|
59 |
|
|
60 |
<li><a href="examples/spell-checker.html">HTMLArea + spell checher</a> |
|
61 |
-- loads the <tt>SpellChecker</tt> plugin which provides what its |
|
62 |
name says: a spell checker. This one requires additional support on |
|
63 |
the server-side.</li> |
|
64 |
|
|
65 |
<li><a href="examples/full-page.html">HTMLArea Full HTML Editor</a> -- |
|
66 |
loads the <tt>FullPage</tt> plugin which allows you to edit a full |
|
67 |
HTML page, including <title>, <!DOCTYPE...> and some |
|
68 |
other options.</li> |
|
69 |
|
|
70 |
<li><a href="examples/context-menu.html">HTMLArea with Context |
|
71 |
Menu</a> -- this plugin provides a nice and useful context menu.</li> |
|
72 |
|
|
73 |
<li><a href="examples/fully-loaded.html">HTMLArea fully loaded</a> -- |
|
74 |
all of the above. ;-)</li> |
|
75 |
|
|
76 |
</ul> |
|
77 |
|
|
78 |
<h2>Installation</h2> |
|
79 |
|
|
80 |
<p> |
|
81 |
Installation is (or should be) easy. You need to unpack the ZIP file |
|
82 |
in a directory accessible through your webserver. Supposing you |
|
83 |
unpack in your <tt>DocumentRoot</tt> and your <tt>DocumentRoot</tt> is |
|
84 |
<tt>/var/www/html</tt> as in a standard RedHat installation, you need |
|
85 |
to acomplish the following steps: (the example is for a Unix-like |
|
86 |
operating system) |
|
87 |
</p> |
|
88 |
|
|
89 |
<pre style="margin-left: 2em" |
|
90 |
> |
|
91 |
cd /var/www/html |
|
92 |
unzip /path/to/archive/HTMLArea-3.0-rc1.zip |
|
93 |
mv HTMLArea-3.0-rc1 htmlarea |
|
94 |
find htmlarea/ -type f -exec chmod 644 {} \; |
|
95 |
find htmlarea/ -type d -exec chmod 755 {} \; |
|
96 |
find htmlarea/ -name "*.cgi" -exec chmod 755 {} \;</pre> |
|
97 |
|
|
98 |
<p> |
|
99 |
<strong>Notes.</strong> You may chose to symlink "htmlarea" to "HTMLArea-3.0-rc1", in which case your server needs to be configured to |
|
100 |
"<tt>FollowSymLinks</tt>". You need to make sure that *.cgi files are |
|
101 |
interpreted as CGI scripts. If you want to use the SpellChecker |
|
102 |
plugin you need to have a recent version of Perl installed (I |
|
103 |
recommend 5.8.0) on the server, and the module Text::Aspell, available |
|
104 |
from CPAN. More info in "<a |
|
105 |
href="plugins/SpellChecker/readme-tech.html">plugins/SpellChecker/readme-tech.html</a>". |
|
106 |
</p> |
|
107 |
|
|
108 |
<p>About how to setup your pages to use the editor, please read the |
|
109 |
[outdated yet generally valid] <a |
|
110 |
href="reference.html">documentation</a>.</p> |
|
111 |
|
|
112 |
<h2>Status and links</h2> |
|
113 |
|
|
114 |
<p>HTMLArea has reached version 3.0. As of this version, it |
|
115 |
supports:</p> |
|
116 |
|
|
117 |
<ul> |
|
118 |
|
|
119 |
<li>Customizable toolbar</li> |
|
120 |
|
|
121 |
<li>Easy internationalization</li> |
|
122 |
|
|
123 |
<li>Plugin-based infrastructure</li> |
|
124 |
|
|
125 |
<li>Delivers W3-compliant HTML (with few exceptions)</li> |
|
126 |
|
|
127 |
<li>Has a subset of Microsoft Word's keyboard shortcuts</li> |
|
128 |
|
|
129 |
<li>Full-screen editor</li> |
|
130 |
|
|
131 |
<li>Advanced table operations (by external plugin |
|
132 |
"TableOperations")</li> |
|
133 |
|
|
134 |
<li>Spell checker (by external plugin "SpellChecker")</li> |
|
135 |
|
|
136 |
<li>probably more... ;-)</li> |
|
137 |
|
|
138 |
</ul> |
|
139 |
|
|
140 |
<p>We have a <a |
|
141 |
href="http://sourceforge.net/projects/itools-htmlarea/">project page</a> |
|
142 |
at <a href="http://sourceforge.net">SourceForge.net</a>. There you can |
|
143 |
also find out <a href="http://sourceforge.net/cvs/?group_id=69750">how |
|
144 |
to retrieve the code from CVS</a>, or you can <a |
|
145 |
href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/itools-htmlarea">browse |
|
146 |
the CVS online</a>. We also have a <a |
|
147 |
href="http://sourceforge.net/tracker/?atid=525656&group_id=69750&func=browse">bug |
|
148 |
system</a>, a <a |
|
149 |
href="http://sourceforge.net/tracker/?atid=525658&group_id=69750&func=browse">patch |
|
150 |
tracking system</a> and a <a |
|
151 |
href="http://sourceforge.net/tracker/?atid=525659&group_id=69750&func=browse">feature |
|
152 |
request page</a>.</p> |
|
153 |
|
|
154 |
<p>We invite you to say everything you want about HTMLArea <a |
|
155 |
href="http://www.interactivetools.com/forum/gforum.cgi?forum=14;">on the |
|
156 |
forums</a> at InteractiveTools.com. There you should also find the |
|
157 |
latest news.</p> |
|
158 |
|
|
159 |
<p>Sometimes I post news about the latest developments on <a |
|
160 |
href="http://dynarch.com/mishoo/">my personal homepage</a>.</p> |
|
161 |
|
|
162 |
<h2>"It doesn't work, what's wrong?"</h2> |
|
163 |
|
|
164 |
<p>If it doesn't work, you have several options:</p> |
|
165 |
|
|
166 |
<ul> |
|
167 |
|
|
168 |
<li>Post a message to the forum. Describe your problem in as much |
|
169 |
detail as possible. Include errors you might find in the JavaScript |
|
170 |
console (if you are a Mozilla user), or errors displayed by IE (though |
|
171 |
they're most of the times useless).</li> |
|
172 |
|
|
173 |
<li>If you're positive that you discovered a bug in HTMLArea then feel |
|
174 |
free to fill a bug report in our bug system. If you have the time you |
|
175 |
should check to see if a similar bug was reported or not; it might be |
|
176 |
fixed already in the CVS ;-) If you're positive that a similar bug was |
|
177 |
not yet reported, do fill a bug report and please include as much |
|
178 |
detail as possible, such as your browser, OS, errors from JavaScript |
|
179 |
console, etc.</li> |
|
180 |
|
|
181 |
<li>If you want a new feature to be implemented, post it on the |
|
182 |
features request and someone will hopefully take care of it.</li> |
|
183 |
|
|
184 |
</ul> |
|
185 |
|
|
186 |
<p>You can <a href="mailto:mishoo@infoiasi.ro">contact me directly</a> |
|
187 |
<em>only</em> if you want to pay me for implementing custom features to |
|
188 |
HTMLArea. If you want to sponsor these features (that is, allow them to |
|
189 |
get back into the public HTMLArea distribution) I'll be cheaper. ;-)</p> |
|
190 |
|
|
191 |
<hr /> |
|
192 |
<address><a href="http://dynarch.com/mishoo/">Mihai Bazon</a></address> |
|
193 |
<!-- Created: Sun Aug 3 14:11:26 EEST 2003 --> |
|
194 |
<!-- hhmts start --> Last modified: Wed Jan 28 11:54:47 EET 2004 <!-- hhmts end --> |
|
195 |
<!-- doc-lang: English --> |
|
196 |
</body> |
|
197 |
</html> |
|
198 |
|
|
199 |
|
trunk/addons/trunk/modules/htmlarea/htmlarea/reference.html | ||
---|---|---|
1 |
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//EN"> |
|
2 |
<html> <head> |
|
3 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|
4 |
<title>HTMLArea-3.0 Reference</title> |
|
5 |
|
|
6 |
<style type="text/css"> |
|
7 |
@import url(htmlarea.css); |
|
8 |
body { font: 14px verdana,sans-serif; background: #fff; color: #000; } |
|
9 |
h1, h2 { font-family:tahoma,sans-serif; } |
|
10 |
h1 { border-bottom: 2px solid #000; } |
|
11 |
h2 { border-bottom: 1px solid #aaa; } |
|
12 |
h3, h4 { margin-bottom: 0px; font-family: Georgia,serif; font-style: italic; } |
|
13 |
h4 { font-size: 90%; margin-left: 1em; } |
|
14 |
acronym { border-bottom: 1px dotted #063; color: #063; } |
|
15 |
p { margin-left: 2em; margin-top: 0.3em; } |
|
16 |
li p { margin-left: 0px; } |
|
17 |
.abstract { padding: 5px; margin: 0px 10em; font-size: 90%; border: 1px dashed #aaa; background: #eee;} |
|
18 |
li { margin-left: 2em; } |
|
19 |
em { color: #042; } |
|
20 |
a { color: #00f; } |
|
21 |
a:hover { color: #f00; } |
|
22 |
a:active { color: #f80; } |
|
23 |
span.browser { font-weight: bold; color: #864; } |
|
24 |
.fixme { font-size: 20px; font-weight: bold; color: red; background: #fab; |
|
25 |
padding: 5px; text-align: center; } |
|
26 |
.code { |
|
27 |
background: #e4efff; padding: 5px; border: 1px dashed #abc; margin-left: 2em; margin-right: 2em; |
|
28 |
font-family: fixed,"lucidux mono","andale mono","courier new",monospace; |
|
29 |
} |
|
30 |
.note, .warning { font-weight: bold; color: #0a0; font-variant: small-caps; } |
|
31 |
.warning { color: #a00; } |
|
32 |
|
|
33 |
.string { |
|
34 |
color: #06c; |
|
35 |
} /* font-lock-string-face */ |
|
36 |
.comment { |
|
37 |
color: #840; |
|
38 |
} /* font-lock-comment-face */ |
|
39 |
.variable-name { |
|
40 |
color: #000; |
|
41 |
} /* font-lock-variable-name-face */ |
|
42 |
.type { |
|
43 |
color: #008; |
|
44 |
font-weight: bold; |
|
45 |
} /* font-lock-type-face */ |
|
46 |
.reference { |
|
47 |
color: #048; |
|
48 |
} /* font-lock-reference-face */ |
|
49 |
.preprocessor { |
|
50 |
color: #808; |
|
51 |
} /* font-lock-preprocessor-face */ |
|
52 |
.keyword { |
|
53 |
color: #00f; |
|
54 |
font-weight: bold; |
|
55 |
} /* font-lock-keyword-face */ |
|
56 |
.function-name { |
|
57 |
color: #044; |
|
58 |
} /* font-lock-function-name-face */ |
|
59 |
.html-tag { |
|
60 |
font-weight: bold; |
|
61 |
} /* html-tag-face */ |
|
62 |
.html-helper-italic { |
|
63 |
font-style: italic; |
|
64 |
} /* html-helper-italic-face */ |
|
65 |
.html-helper-bold { |
|
66 |
font-weight: bold; |
|
67 |
} /* html-helper-bold-face */ |
|
68 |
|
|
69 |
</style> |
|
70 |
|
|
71 |
<script type="text/javascript"> |
|
72 |
_editor_url = './'; |
|
73 |
_editor_lang = 'en'; |
|
74 |
</script> |
|
75 |
<script type="text/javascript" src="htmlarea.js"></script> |
|
76 |
<script type="text/javascript" src="dialog.js"></script> |
|
77 |
<script tyle="text/javascript" src="lang/en.js"></script> |
|
78 |
|
|
79 |
</head> |
|
80 |
|
|
81 |
<body onload="HTMLArea.replace('TA')"> |
|
82 |
|
|
83 |
|
|
84 |
<h1>HTMLArea-3.0 Documentation</h1> |
|
85 |
|
|
86 |
<div class="abstract" style="color: red; font-weight: bold"> |
|
87 |
|
|
88 |
This documentation contains valid information, but is outdated in the |
|
89 |
terms that it does not covers all the features of HTMLArea. A new |
|
90 |
documentation project will be started, based on LaTeX. |
|
91 |
|
|
92 |
</div> |
|
93 |
|
|
94 |
|
|
95 |
<h2>Introduction</h2> |
|
96 |
|
|
97 |
<h3>What is HTMLArea?</h3> |
|
98 |
|
|
99 |
<p>HTMLArea is a free <acronym title="What You See Is What You Get" |
|
100 |
>WYSIWYG</acronym> editor replacement for <code><textarea></code> |
|
101 |
fields. By adding a few simple lines of JavaScript code to your web page |
|
102 |
you can replace a regular textarea with a rich text editor that lets your |
|
103 |
users do the following:</p> |
|
104 |
|
|
105 |
<ul> |
|
106 |
<li>Format text to be bold, italicized, or underlined.</li> |
|
107 |
<li>Change the face, size, style and color.</li> |
|
108 |
<li>Left, center, or right-justify paragraphs.</li> |
|
109 |
<li>Make bulleted or numbered lists.</li> |
|
110 |
<li>Indent or un-indent paragraphs.</li> |
|
111 |
<li>Insert a horizontal line.</li> |
|
112 |
<li>Insert hyperlinks and images.</li> |
|
113 |
<li>View the raw HTML source of what they're editing.</li> |
|
114 |
<li>and much more...</li> |
|
115 |
</ul> |
|
116 |
|
|
117 |
<p>Some of the interesting features of HTMLArea that set's it apart from |
|
118 |
other web based WYSIWYG editors are as follows:</p> |
|
119 |
|
|
120 |
<ul> |
|
121 |
<li>It's lightweight, fast loading and can transform a regular textarea |
|
122 |
into a rich-text editor with a single line of JavaScript.</li> |
|
123 |
<li>Generates clean, valid HTML.</li> |
|
124 |
<li>It degrades gracefully to older or non-supported browsers |
|
125 |
(they get the original textarea field).</li> |
|
126 |
<li>It's free and can be incorporated into any free or commercial |
|
127 |
program.</li> |
|
128 |
<li>It works with any server-side languages (ASP, PHP, Perl, Java, |
|
129 |
etc).</li> |
|
130 |
<li>It's written in JavaScript and can be easily viewed, modified or |
|
131 |
extended.</li> |
|
132 |
<li>It remembers entered content when a user navigates away and then hits |
|
133 |
"back" in their browser.</li> |
|
134 |
<li>Since it replaces existing textareas it doesn't require a lot of code |
|
135 |
to add it to your pages (just one line).</li> |
|
136 |
<li>Did we mention it was free? ;-)</li> |
|
137 |
</ul> |
|
138 |
|
|
139 |
<h3>Is it really free? What's the catch?</h3> |
|
140 |
|
|
141 |
<p>Yes! It's really free. You can use it, modify it, distribute it with your |
|
142 |
software, or do just about anything you like with it.</p> |
|
143 |
|
|
144 |
<h3>What are the browser requirements?</h3> |
|
145 |
|
|
146 |
<p>HTMLArea requires <span class="browser"><a |
|
147 |
href="http://www.microsoft.com/ie">Internet Explorer</a> >= 5.5</span> |
|
148 |
(Windows only), or <span class="browser"><a |
|
149 |
href="http://mozilla.org">Mozilla</a> >= 1.3-Beta</span> on any platform. |
|
150 |
Any browser based on <a href="http://mozilla.org/newlayout">Gecko</a> will |
|
151 |
also work, provided that Gecko version is at least the one included in |
|
152 |
Mozilla-1.3-Beta (for example, <a |
|
153 |
href="http://galeon.sf.net">Galeon-1.2.8</a>). However, it degrades |
|
154 |
gracefully to other browsers. They will get a regular textarea field |
|
155 |
instead of a WYSIWYG editor.</p> |
|
156 |
|
|
157 |
<h3>Can I see an example of what it looks like?</h3> |
|
158 |
|
|
159 |
<p>Just make sure you're using one of the browsers mentioned above and see |
|
160 |
below.</p> |
|
161 |
|
|
162 |
<form onsubmit="return false;"> |
|
163 |
<textarea id="TA" style="width: 100%; height: 15em;"> |
|
164 |
<p>Here is some sample text in textarea that's been transformed with <font |
|
165 |
color="#0000CC"><b>HTMLArea</b></font>.<br /> |
|
166 |
You can make things <b>bold</b>, <i>italic</i>, <u>underline</u>. You can change the |
|
167 |
<font size="3">size</font> and <b><font color="#0000CC">c</font><font color="#00CC00">o</font><font color="#00CCCC">l</font><font color="#CC0000">o</font><font color="#CC00CC">r</font><font color="#CCCC00">s</font><font color="#CCCCCC">!</font></b> |
|
168 |
And lots more...</p> |
|
169 |
|
|
170 |
<p align="center"><font size="4" color="#ff0000"><b><u>Try HTMLArea |
|
171 |
today!</u></b></font><br /></p> |
|
172 |
</textarea> |
|
173 |
</form> |
|
174 |
|
|
175 |
<h3>Where can I find out more info, download the latest version and talk to |
|
176 |
other HTMLArea users?</h3> |
|
177 |
|
|
178 |
<p>You can find out more about HTMLArea and download the latest version on |
|
179 |
the <a href="http://dynarch.com/htmlarea/">HTMLArea |
|
180 |
homepage</a> and you can talk to other HTMLArea users and post any comments |
|
181 |
or suggestions you have in the <a |
|
182 |
href="http://www.interactivetools.com/iforum/Open_Source_C3/htmlArea_v3.0_-_Alpha_Release_F14/" |
|
183 |
>HTMLArea forum</a>.</p> |
|
184 |
|
|
185 |
<h2>Keyboard shortcuts</h2> |
|
186 |
|
|
187 |
<p>The editor provides the following key combinations:</p> |
|
188 |
|
|
189 |
<ul> |
|
190 |
<li>CTRL-A -- select all</li> |
|
191 |
<li>CTRL-B -- bold</li> |
|
192 |
<li>CTRL-I -- italic</li> |
|
193 |
<li>CTRL-U -- underline</li> |
|
194 |
<li>CTRL-S -- strikethrough</li> |
|
195 |
<li>CTRL-L -- justify left</li> |
|
196 |
<li>CTRL-E -- justify center</li> |
|
197 |
<li>CTRL-R -- justify right</li> |
|
198 |
<li>CTRL-J -- justify full</li> |
|
199 |
<li>CTRL-1 .. CTRL-6 -- headings (<h1> .. <h6>)</li> |
|
200 |
<li>CTRL-0 (zero) -- clean content pasted from Word</li> |
|
201 |
</ul> |
|
202 |
|
|
203 |
<h2>Installation</h2> |
|
204 |
|
|
205 |
<h3>How do I add HTMLArea to my web page?</h3> |
|
206 |
|
|
207 |
<p>It's easy. First you need to upload HTMLArea files to your website. |
|
208 |
Just follow these steps.</p> |
|
209 |
|
|
210 |
<ol> |
|
211 |
<li>Download the latest version from the <a |
|
212 |
href="http://www.interactivetools.com/products/htmlarea/">htmlArea |
|
213 |
homepage</a>.</li> |
|
214 |
<li>Unzip the files onto your local computer (making sure to maintain the |
|
215 |
directory structure contained in the zip).</li> |
|
216 |
<li>Create a new folder on your website called /htmlarea/ (make sure it's |
|
217 |
NOT inside the cgi-bin).</li> |
|
218 |
<li>Transfer all the HTMLArea files from your local computer into the |
|
219 |
/htmlarea/ folder on your website.</li> |
|
220 |
<li>Open the example page /htmlarea/examples/core.html with your browser to make |
|
221 |
sure everything works.</li> |
|
222 |
</ol> |
|
223 |
|
|
224 |
<p>Once htmlArea is on your website all you need to do is add some |
|
225 |
JavaScript to any pages that you want to add WYSIWYG editors to. Here's how |
|
226 |
to do that.</p> |
|
227 |
|
|
228 |
<ol> |
|
229 |
|
|
230 |
<li>Define some global variables. "_editor_url" has to be the absolute |
|
231 |
URL where HTMLArea resides within your |
|
232 |
website; as we discussed, this would be “/htmlarea/”. "_editor_lang" must |
|
233 |
be the language code in which you want HTMLArea to appear. This defaults |
|
234 |
to "en" (English); for a list of supported languages, please look into |
|
235 |
the "lang" subdirectory in the distribution. |
|
236 |
<pre class="code" |
|
237 |
><span class="function-name"><</span><span class="html-tag">script</span> <span class="variable-name">type=</span><span class="string">"text/javascript"</span><span class="function-name">></span> |
|
238 |
_editor_url = <span class="string">"/htmlarea/"</span>; |
|
239 |
_editor_lang = <span class="string">"en"</span>; |
|
240 |
<span class="function-name"><</span><span class="html-tag">/script</span><span class="function-name">></span></pre> |
|
241 |
|
|
242 |
<li>Include the "htmlarea.js" script: |
|
243 |
<pre class="code" |
|
244 |
><span class="function-name"><</span><span class="html-tag">script</span> <span class="variable-name">type=</span><span class="string">"text/javascript"</span> <span class="variable-name">src=</span><span class="string">"/htmlarea/htmlarea.js"</span><span class="function-name">></span><span class="paren-face-match"><</span><span class="html-tag">/script</span><span class="paren-face-match">></span></pre> |
|
245 |
</li> |
|
246 |
|
|
247 |
<li><p>If you want to change all your <textarea>-s into |
|
248 |
HTMLArea-s then you can use the simplest way to create HTMLArea:</p> |
|
249 |
<pre class="code" |
|
250 |
><span class="function-name"><</span><span class="html-tag">script</span> <span class="variable-name">type=</span><span class="string">"text/javascript"</span> <span class="variable-name">defer=</span><span class="string">"1"</span><span class="function-name">></span> |
|
251 |
HTMLArea.replaceAll<span class="function-name">()</span>; |
|
252 |
<span class="paren-face-match"><</span><span class="html-tag">/script</span><span class="paren-face-match">></span></pre> |
|
253 |
<p><span class="note">Note:</span> you can also add the |
|
254 |
<code>HTMLArea.replaceAll()</code> code to the <code>onload</code> |
|
255 |
event handler for the <code>body</code> element, if you find it more appropriate.</p> |
|
256 |
|
|
257 |
<p>A different approach, if you have more than one textarea and only want |
|
258 |
to change one of them, is to use <code>HTMLArea.replace("id")</code> -- |
|
259 |
pass the <code>id</code> of your textarea. Do not use the |
|
260 |
<code>name</code> attribute anymore, it's not a standard solution!</p> |
|
261 |
|
|
262 |
</ol> |
|
263 |
|
|
264 |
<p>This section applies to HTMLArea-3.0 release candidate 1 or later; prior |
|
265 |
to this version, one needed to include more files; however, now HTMLArea is |
|
266 |
able to include other files too (such as stylesheet, language definition |
|
267 |
file, etc.) so you only need to define the editor path and load |
|
268 |
"htmlarea.js". Nice, eh? ;-)</p> |
|
269 |
|
|
270 |
<h3>I want to change the editor settings, how do I do that?</h3> |
|
271 |
|
|
272 |
<p>While it's true that all you need is one line of JavaScript to create an |
|
273 |
htmlArea WYSIWYG editor, you can also specify more config settings in the |
|
274 |
code to control how the editor works and looks. Here's an example of some of |
|
275 |
the available settings:</p> |
|
276 |
|
|
277 |
<pre class="code" |
|
278 |
><span class="keyword">var</span> <span class="variable-name">config</span> = <span class="keyword">new</span> HTMLArea.Config(); <span class="comment">// create a new configuration object |
|
279 |
</span> <span class="comment">// having all the default values |
|
280 |
</span>config.width = '<span class="string">90%</span>'; |
|
281 |
config.height = '<span class="string">200px</span>'; |
|
282 |
|
|
283 |
<span class="comment">// the following sets a style for the page body (black text on yellow page) |
|
284 |
// and makes all paragraphs be bold by default |
|
285 |
</span>config.pageStyle = |
|
286 |
'<span class="string">body { background-color: yellow; color: black; font-family: verdana,sans-serif } </span>' + |
|
287 |
'<span class="string">p { font-width: bold; } </span>'; |
|
288 |
|
|
289 |
<span class="comment">// the following replaces the textarea with the given id with a new |
|
290 |
// HTMLArea object having the specified configuration |
|
291 |
</span>HTMLArea.replace('<span class="string">id</span>', config);</pre> |
|
292 |
|
|
293 |
<p><span class="warning">Important:</span> It's recommended that you add |
|
294 |
custom features and configuration to a separate file. This will ensure you |
|
295 |
that when we release a new official version of HTMLArea you'll have less |
|
296 |
trouble upgrading it.</p> |
|
297 |
|
|
298 |
<h3>How do I customize the toolbar?</h3> |
|
299 |
|
|
300 |
<p>Using the configuration object introduced above allows you to completely |
|
301 |
control what the toolbar contains. Following is an example of a one-line, |
|
302 |
customized toolbar, much simpler than the default one:</p> |
|
303 |
|
|
304 |
<pre class="code" |
|
305 |
><span class="keyword">var</span> <span class="variable-name">config</span> = <span class="keyword">new</span> HTMLArea.Config(); |
|
306 |
config.toolbar = [ |
|
307 |
['<span class="string">fontname</span>', '<span class="string">space</span>', |
|
308 |
'<span class="string">fontsize</span>', '<span class="string">space</span>', |
|
309 |
'<span class="string">formatblock</span>', '<span class="string">space</span>', |
|
310 |
'<span class="string">bold</span>', '<span class="string">italic</span>', '<span class="string">underline</span>'] |
|
311 |
]; |
|
312 |
HTMLArea.replace('<span class="string">id</span>', config);</pre> |
|
313 |
|
|
314 |
<p>The toolbar is an Array of Array objects. Each array in the toolbar |
|
315 |
defines a new line. The default toolbar looks like this:</p> |
|
316 |
|
|
317 |
<pre class="code" |
|
318 |
>config.toolbar = [ |
|
319 |
[ "<span class="string">fontname</span>", "<span class="string">space</span>", |
|
320 |
"<span class="string">fontsize</span>", "<span class="string">space</span>", |
|
321 |
"<span class="string">formatblock</span>", "<span class="string">space</span>", |
|
322 |
"<span class="string">bold</span>", "<span class="string">italic</span>", "<span class="string">underline</span>", "<span class="string">separator</span>", |
|
323 |
"<span class="string">strikethrough</span>", "<span class="string">subscript</span>", "<span class="string">superscript</span>", "<span class="string">separator</span>", |
|
324 |
"<span class="string">copy</span>", "<span class="string">cut</span>", "<span class="string">paste</span>", "<span class="string">space</span>", "<span class="string">undo</span>", "<span class="string">redo</span>" ], |
|
325 |
|
|
326 |
[ "<span class="string">justifyleft</span>", "<span class="string">justifycenter</span>", "<span class="string">justifyright</span>", "<span class="string">justifyfull</span>", "<span class="string">separator</span>", |
|
327 |
"<span class="string">insertorderedlist</span>", "<span class="string">insertunorderedlist</span>", "<span class="string">outdent</span>", "<span class="string">indent</span>", "<span class="string">separator</span>", |
|
328 |
"<span class="string">forecolor</span>", "<span class="string">hilitecolor</span>", "<span class="string">textindicator</span>", "<span class="string">separator</span>", |
|
329 |
"<span class="string">inserthorizontalrule</span>", "<span class="string">createlink</span>", "<span class="string">insertimage</span>", "<span class="string">inserttable</span>", "<span class="string">htmlmode</span>", "<span class="string">separator</span>", |
|
330 |
"<span class="string">popupeditor</span>", "<span class="string">separator</span>", "<span class="string">showhelp</span>", "<span class="string">about</span>" ] |
|
331 |
];</pre> |
|
332 |
|
|
333 |
<p>Except three strings, all others in the examples above need to be defined |
|
334 |
in the <code>config.btnList</code> object (detailed a bit later in this |
|
335 |
document). The three exceptions are: 'space', 'separator' and 'linebreak'. |
|
336 |
These three have the following meaning, and need not be present in |
|
337 |
<code>btnList</code>:</p> |
|
338 |
|
|
339 |
<ul> |
|
340 |
<li>'space' -- Inserts a space of 5 pixels (the width is configurable by external |
|
341 |
<acronym title="Cascading Style Sheets">CSS</acronym>) at the current |
|
342 |
position in the toolbar.</li> |
|
343 |
<li>'separator' -- Inserts a small vertical separator, for visually grouping related |
|
344 |
buttons.</li> |
|
345 |
<li>'linebreak' -- Starts a new line in the toolbar. Subsequent controls will be |
|
346 |
inserted on the new line.</li> |
|
347 |
</ul> |
|
348 |
|
|
349 |
<p><span class="warning">Important:</span> It's recommended that you add |
|
350 |
custom features and configuration to a separate file. This will ensure you |
|
351 |
that when we release a new official version of HTMLArea you'll have less |
|
352 |
trouble upgrading it.</p> |
|
353 |
|
|
354 |
<h3>How do I create custom buttons?</h3> |
|
355 |
|
|
356 |
<p>By design, the toolbar is easily extensible. For adding a custom button |
|
357 |
one needs to follow two steps.</p> |
|
358 |
|
|
359 |
<h4 id="regbtn">1. Register the button in <code>config.btnList</code>.</h4> |
|
360 |
|
|
361 |
<p>For each button in the toolbar, HTMLArea needs to know the following |
|
362 |
information:</p> |
|
363 |
<ul> |
|
364 |
<li>a name for it (we call it the ID of the button);</li> |
|
365 |
<li>the path to an image to be displayed in the toolbar;</li> |
|
366 |
<li>a tooltip for it;</li> |
|
367 |
<li>whether the button is enabled or not in text mode;</li> |
|
368 |
<li>what to do when the button is clicked;</li> |
|
369 |
</ul> |
|
370 |
<p>You need to provide all this information for registering a new button |
|
371 |
too. The button ID can be any string identifier and it's used when |
|
372 |
defining the toolbar, as you saw above. We recommend starting |
|
373 |
it with "my-" so that it won't clash with the standard ID-s (those from |
|
374 |
the default toolbar).</p> |
|
375 |
|
|
376 |
<p class="note">Register button example #1</p> |
|
377 |
|
|
378 |
<pre class="code" |
|
379 |
><span class="comment">// get a default configuration |
|
380 |
</span><span class="keyword">var</span> <span class="variable-name">config</span> = <span class="keyword">new</span> HTMLArea.Config(); |
|
381 |
<span class="comment">// register the new button using Config.registerButton. |
|
382 |
// parameters: button ID, tooltip, image, textMode, |
|
383 |
</span>config.registerButton("<span class="string">my-hilite</span>", "<span class="string">Highlight text</span>", "<span class="string">my-hilite.gif</span>", <span class="keyword">false</span>, |
|
384 |
<span class="comment">// function that gets called when the button is clicked |
|
385 |
</span> <span class="keyword">function</span>(editor, id) { |
|
386 |
editor.surroundHTML('<span class="string"><span class="hilite"></span>', '<span class="string"></span></span>'); |
|
387 |
} |
|
388 |
);</pre> |
|
389 |
|
|
390 |
<p>An alternate way of calling registerButton is exemplified above. Though |
|
391 |
the code might be a little bit larger, using this form makes your code more |
|
392 |
maintainable. It doesn't even needs comments as it's pretty clear.</p> |
|
393 |
|
|
394 |
<p class="note">Register button example #2</p> |
|
395 |
|
|
396 |
<pre class="code" |
|
397 |
><span class="keyword">var</span> <span class="variable-name">config</span> = <span class="keyword">new</span> HTMLArea.Config(); |
|
398 |
config.registerButton({ |
|
399 |
id : "<span class="string">my-hilite</span>", |
|
400 |
tooltip : "<span class="string">Highlight text</span>", |
|
401 |
image : "<span class="string">my-hilite.gif</span>", |
|
402 |
textMode : <span class="keyword">false</span>, |
|
403 |
action : <span class="keyword">function</span>(editor, id) { |
|
404 |
editor.surroundHTML('<span class="string"><span class="hilite"></span>', '<span class="string"></span></span>'); |
|
405 |
} |
|
406 |
});</pre> |
|
407 |
|
|
408 |
<p>You might notice that the "action" function receives two parameters: |
|
409 |
<b>editor</b> and <b>id</b>. In the examples above we only used the |
|
410 |
<b>editor</b> parameter. But it could be helpful for you to understand |
|
411 |
both:</p> |
|
412 |
|
|
413 |
<ul> |
|
414 |
<li><b>editor</b> is a reference to the HTMLArea object. Since our entire |
|
415 |
code now has an <acronym title="Object Oriented Programming">OOP</acronym>-like |
|
416 |
design, you need to have a reference to |
|
417 |
the editor object in order to do things with it. In previous versions of |
|
418 |
HTMLArea, in order to identify the object an ID was used -- the ID of the |
|
419 |
HTML element. In this version ID-s are no longer necessary.</li> |
|
420 |
|
|
421 |
<li><b>id</b> is the button ID. Wondering why is this useful? Well, you |
|
422 |
could use the same handler function (presuming that it's not an anonymous |
|
423 |
function like in the examples above) for more buttons. You can <a |
|
424 |
href="#btnex">see an example</a> a bit later in this document.</li> |
|
425 |
</ul> |
|
426 |
|
|
427 |
<h4>2. Inserting it into the toolbar</h4> |
|
428 |
|
|
429 |
<p>At this step you need to specify where in the toolbar to insert the |
|
430 |
button, or just create the whole toolbar again as you saw in the previous |
|
431 |
section. You use the button ID, as shown in the examples of customizing the |
|
432 |
toolbar in the previous section.</p> |
|
433 |
|
|
434 |
<p>For the sake of completion, following there are another examples.</p> |
|
435 |
|
|
436 |
<p class="note">Append your button to the default toolbar</p> |
|
437 |
|
|
438 |
<pre class="code" |
|
439 |
>config.toolbar.push([ "<span class="string">my-hilite</span>" ]);</pre> |
|
440 |
|
|
441 |
<p class="note">Customized toolbar</p> |
|
442 |
|
|
443 |
<pre class="code" |
|
444 |
>config.toolbar = [ |
|
445 |
['<span class="string">fontname</span>', '<span class="string">space</span>', |
|
446 |
'<span class="string">fontsize</span>', '<span class="string">space</span>', |
|
447 |
'<span class="string">formatblock</span>', '<span class="string">space</span>', |
|
448 |
'<span class="string">separator</span>', '<span class="string">my-hilite</span>', '<span class="string">separator</span>', '<span class="string">space</span>', <span class="comment">// here's your button |
|
449 |
</span> '<span class="string">bold</span>', '<span class="string">italic</span>', '<span class="string">underline</span>', '<span class="string">space</span>'] |
|
450 |
];</pre> |
|
451 |
|
|
452 |
<p><span class="note">Note:</span> in the example above our new button is |
|
453 |
between two vertical separators. But this is by no means required. You can |
|
454 |
put it wherever you like. Once registered in the btnList (<a |
|
455 |
href="#regbtn">step 1</a>) your custom button behaves just like a default |
|
456 |
button.</p> |
|
457 |
|
|
458 |
<p><span class="warning">Important:</span> It's recommended that you add |
|
459 |
custom features and configuration to a separate file. This will ensure you |
|
460 |
that when we release a new official version of HTMLArea you'll have less |
|
461 |
trouble upgrading it.</p> |
|
462 |
|
|
463 |
<h4 id="btnex">A complete example</h4> |
|
464 |
|
|
465 |
<p>Please note that it is by no means necessary to include the following |
|
466 |
code into the htmlarea.js file. On the contrary, it might not work there. |
|
467 |
The configuration system is designed such that you can always customize the |
|
468 |
editor <em>from outside files</em>, thus keeping the htmlarea.js file |
|
469 |
intact. This will make it easy for you to upgrade your HTMLArea when we |
|
470 |
release a new official version. OK, I promise it's the last time I said |
|
471 |
this. ;)</p> |
|
472 |
|
|
473 |
<pre class="code" |
|
474 |
><span class="comment">// All our custom buttons will call this function when clicked. |
|
475 |
// We use the <b>buttonId</b> parameter to determine what button |
|
476 |
// triggered the call. |
|
477 |
</span><span class="keyword">function</span> <span class="function-name">clickHandler</span>(editor, buttonId) { |
|
478 |
<span class="keyword">switch</span> (buttonId) { |
|
479 |
<span class="keyword">case</span> "<span class="string">my-toc</span>": |
|
480 |
editor.insertHTML("<span class="string"><h1>Table Of Contents</h1></span>"); |
|
481 |
<span class="keyword">break</span>; |
|
482 |
<span class="keyword">case</span> "<span class="string">my-date</span>": |
|
483 |
editor.insertHTML((<span class="keyword">new</span> Date()).toString()); |
|
484 |
<span class="keyword">break</span>; |
|
485 |
<span class="keyword">case</span> "<span class="string">my-bold</span>": |
|
486 |
editor.execCommand("<span class="string">bold</span>"); |
|
487 |
editor.execCommand("<span class="string">italic</span>"); |
|
488 |
<span class="keyword">break</span>; |
|
489 |
<span class="keyword">case</span> "<span class="string">my-hilite</span>": |
|
490 |
editor.surroundHTML("<span class="string"><span class=\"hilite\"></span>", "<span class="string"></span></span>"); |
|
491 |
<span class="keyword">break</span>; |
|
492 |
} |
|
493 |
}; |
|
494 |
|
|
495 |
<span class="comment">// Create a new configuration object |
|
496 |
</span><span class="keyword">var</span> <span class="variable-name">config</span> = <span class="keyword">new</span> HTMLArea.Config(); |
|
497 |
|
|
498 |
<span class="comment">// Register our custom buttons |
|
499 |
</span>config.registerButton("<span class="string">my-toc</span>", "<span class="string">Insert TOC</span>", "<span class="string">my-toc.gif</span>", <span class="keyword">false</span>, clickHandler); |
|
500 |
config.registerButton("<span class="string">my-date</span>", "<span class="string">Insert date/time</span>", "<span class="string">my-date.gif</span>", <span class="keyword">false</span>, clickHandler); |
|
501 |
config.registerButton("<span class="string">my-bold</span>", "<span class="string">Toggle bold/italic</span>", "<span class="string">my-bold.gif</span>", <span class="keyword">false</span>, clickHandler); |
|
502 |
config.registerButton("<span class="string">my-hilite</span>", "<span class="string">Hilite selection</span>", "<span class="string">my-hilite.gif</span>", <span class="keyword">false</span>, clickHandler); |
|
503 |
|
|
504 |
<span class="comment">// Append the buttons to the default toolbar |
|
505 |
</span>config.toolbar.push(["<span class="string">linebreak</span>", "<span class="string">my-toc</span>", "<span class="string">my-date</span>", "<span class="string">my-bold</span>", "<span class="string">my-hilite</span>"]); |
|
506 |
|
|
507 |
<span class="comment">// Replace an existing textarea with an HTMLArea object having the above config. |
|
508 |
</span>HTMLArea.replace("<span class="string">textAreaID</span>", config);</pre> |
|
509 |
|
|
510 |
|
|
511 |
<hr /> |
|
512 |
<address>© <a href="http://interactivetools.com" title="Visit our website" |
|
513 |
>InteractiveTools.com</a> 2002-2004. |
|
514 |
<br /> |
|
515 |
© <a href="http://dynarch.com">dynarch.com</a> 2003-2004<br /> |
|
516 |
HTMLArea v3.0 developed by <a |
|
517 |
href="http://dynarch.com/mishoo/">Mihai Bazon</a>. |
|
518 |
<br /> |
|
519 |
Documentation written by Mihai Bazon. |
|
520 |
</address> |
|
521 |
<!-- hhmts start --> Last modified: Wed Jan 28 12:18:23 EET 2004 <!-- hhmts end --> |
|
522 |
<!-- doc-lang: English --> |
|
523 |
</body> </html> |
Also available in: Unified diff
Moved all modules,templates, and languages into previous locations