source: trunk/phpgwapi/js/htmlarea/index.html @ 2

Revision 2, 8.0 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
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><% $version %></td>
18        </tr>
19        <tr>
20          <td class="label">Release:</td><td><% $release %> (<a href="release-notes.html">release notes</a>)</td>
21        </tr>
22        <tr>
23          <td class="label bline">Compiled at:</td><td class="bline"><% $time %></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 &lt;title&gt;, &lt;!DOCTYPE...&gt; 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>
91cd /var/www/html
92unzip /path/to/archive/<% $basename %>.zip
93mv <% $basename %> htmlarea
94find htmlarea/ -type f -exec chmod 644 {} \;
95find htmlarea/ -type d -exec chmod 755 {} \;
96find htmlarea/ -name "*.cgi" -exec chmod 755 {} \;</pre>
97
98    <p>
99      <strong>Notes.</strong> You may chose to symlink "htmlarea" to "<%
100      $basename %>", in which case your server needs to be configured to
101      "<tt>FollowSymLinks</tt>".  You need to make sure that *.cgi files are
102      interpreted as CGI scripts.  If you want to use the SpellChecker
103      plugin you need to have a recent version of Perl installed (I
104      recommend 5.8.0) on the server, and the module Text::Aspell, available
105      from CPAN.  More info in "<a
106      href="plugins/SpellChecker/readme-tech.html">plugins/SpellChecker/readme-tech.html</a>".
107    </p>
108
109    <p>About how to setup your pages to use the editor, please read the
110      [outdated yet generally valid] <a
111        href="reference.html">documentation</a>.</p>
112
113    <h2>Status and links</h2>
114
115    <p>HTMLArea has reached version 3.0.  As of this version, it
116      supports:</p>
117
118    <ul>
119
120      <li>Customizable toolbar</li>
121
122      <li>Easy internationalization</li>
123
124      <li>Plugin-based infrastructure</li>
125
126      <li>Delivers W3-compliant HTML (with few exceptions)</li>
127
128      <li>Has a subset of Microsoft Word's keyboard shortcuts</li>
129
130      <li>Full-screen editor</li>
131
132      <li>Advanced table operations (by external plugin
133        "TableOperations")</li>
134
135      <li>Spell checker (by external plugin "SpellChecker")</li>
136
137      <li>probably more... ;-)</li>
138
139    </ul>
140
141    <p>We have a <a
142    href="http://sourceforge.net/projects/itools-htmlarea/">project page</a>
143    at <a href="http://sourceforge.net">SourceForge.net</a>.  There you can
144    also find out <a href="http://sourceforge.net/cvs/?group_id=69750">how
145    to retrieve the code from CVS</a>, or you can <a
146    href="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/itools-htmlarea">browse
147    the CVS online</a>.  We also have a <a
148    href="http://sourceforge.net/tracker/?atid=525656&group_id=69750&func=browse">bug
149    system</a>, a <a
150    href="http://sourceforge.net/tracker/?atid=525658&group_id=69750&func=browse">patch
151    tracking system</a> and a <a
152    href="http://sourceforge.net/tracker/?atid=525659&group_id=69750&func=browse">feature
153    request page</a>.</p>
154
155    <p>We invite you to say everything you want about HTMLArea <a
156    href="http://www.interactivetools.com/forum/gforum.cgi?forum=14;">on the
157    forums</a> at InteractiveTools.com.  There you should also find the
158    latest news.</p>
159
160    <p>Sometimes I post news about the latest developments on <a
161    href="http://dynarch.com/mishoo/">my personal homepage</a>.</p>
162
163    <h2>"It doesn't work, what's wrong?"</h2>
164
165    <p>If it doesn't work, you have several options:</p>
166
167    <ul>
168
169      <li>Post a message to the forum.  Describe your problem in as much
170      detail as possible.  Include errors you might find in the JavaScript
171      console (if you are a Mozilla user), or errors displayed by IE (though
172      they're most of the times useless).</li>
173
174      <li>If you're positive that you discovered a bug in HTMLArea then feel
175      free to fill a bug report in our bug system.  If you have the time you
176      should check to see if a similar bug was reported or not; it might be
177      fixed already in the CVS ;-) If you're positive that a similar bug was
178      not yet reported, do fill a bug report and please include as much
179      detail as possible, such as your browser, OS, errors from JavaScript
180      console, etc.</li>
181
182      <li>If you want a new feature to be implemented, post it on the
183      features request and someone will hopefully take care of it.</li>
184
185    </ul>
186
187    <p>You can <a href="mailto:mishoo@infoiasi.ro">contact me directly</a>
188    <em>only</em> if you want to pay me for implementing custom features to
189    HTMLArea.  If you want to sponsor these features (that is, allow them to
190    get back into the public HTMLArea distribution) I'll be cheaper. ;-)</p>
191
192    <hr />
193    <address><a href="http://dynarch.com/mishoo/">Mihai Bazon</a></address>
194<!-- Created: Sun Aug  3 14:11:26 EEST 2003 -->
195<!-- hhmts start --> Last modified: Wed Jan 28 11:54:47 EET 2004 <!-- hhmts end -->
196<!-- doc-lang: English -->
197  </body>
198</html>
199
200<%ARGS>
201  $project => 'HTMLArea'
202  $version => '3.0'
203  $release => 'rc1'
204  $basename => 'HTMLArea-3.0-rc1'
205</%ARGS>
206
207<%INIT>;
208use POSIX qw(strftime);
209my $time = strftime '%b %e, %Y [%H:%M] GMT', gmtime;
210</%INIT>
Note: See TracBrowser for help on using the repository browser.