scripts/mir-setup/README: update with link to new doc on wiki
[mir.git] / NEWS
1 [last changed: $Date: 2005/12/24 21:47:17 $]  2002 mir-coders group
2 -------------------------------------------------------------------------------
3
4 ================================
5 1.1-rc1 (as of yet unreleased)
6 ================================
7
8 [New features/Improvements]
9 * added support for a built-in search engine using lucene.  indexes articles
10   incrementally when they are produced, uses standard internationalized
11   template scheme to display results of queries, which can be sorted by real
12   publication date and include things like image thumbnails
13
14 [Build process]
15
16 [Maintenance]
17
18 ===============================
19 1.0.0 final released 2002/12/24
20 ===============================
21
22 [New features/Improvements]
23
24 [Bugfixes]
25 * minor: in source/mir/misc/HTMLTemplateProcessor.java, use Video.Host
26   config option not the non-existant VideoHost option.
27
28 [Build process]
29
30 [Maintenance]
31 * update README file.
32
33 [Notes]
34
35 =============================
36 1.0.0-rc6 released 2002/12/20
37 =============================
38
39 [New features/Improvements]
40 * throw a RuntimeException in MirConfig.getProp(..) if the property is not
41   found. This should ease upgrading between versions when a new Config property
42   is added.
43
44 [Bugfixes]
45 * Add a new method to escape characters that are special characters in SQL. It
46   does a better job than the old hack in StringUtil.quote(..) which replaced
47   single quotes with the HTML representation of a single quote ('
48   I believe). The hack papered over a bug in the postgres JDBC driver which
49   makes it not recognize escaping w/ a backslash (it uses double single quotes
50   instead).
51
52 [Build process]
53
54 [Maintenance]
55 * remove some unused methods in the StringUtil class.
56
57 [Notes]
58
59 =============================
60 1.0.0-rc5 released 2002/12/13
61 =============================
62
63 [New features/Improvements]
64 * remove gratuitous uses of encodeHTML in admin templates. this speeds things
65   up.
66 * make StringUtil.deleteForbiddenTags handle the case when a tag is spread over
67   more that one line.
68
69
70 [Bugfixes]
71 * encodeHTML in admin templates shouldn't be used for the list views.
72 * StringUtil.deleteForbiddenTags regexps didn't ignore case.
73 * do not use encodeHTML for internal comments and messageboard in the admin.
74 * next link in messageboard list was broken. (link pointed to "User" module
75   instead of Message module.
76 * remove unwanted tags in MediaRequest as well.
77 * fix call of StringUtil.deleteForbiddenTags in
78   ServletModuleOpenIndy.insposting.
79 * Fix to_topic (just to_topic, not data.to_topic) select field in
80   posting.template that prevented the chossing of a topic in openposting from
81   working. luckily this bug didn't affect most sites since most installations
82   customize the template.
83
84
85 [Build process]
86
87 [Maintenance]
88 * remove debug prints in ServletModuleOpenIndy.java
89 * remove lot's of no longer used source files and templates.
90
91 [Notes]
92
93 =============================
94 1.0.0-rc4 released 2002/12/10
95 =============================
96
97 [New features/Improvements]
98 * set a "Cache-control", "Pragma" and "Expires" header to the http response
99   in the Mir and OpenMir servlets to insure that nothing gets cached by a
100   client browser.
101 * Add a new config parameter: Mir.DefaultHTMLCharset to set the HTML
102   content-type charset in one place and re-use it in templates as
103   ${config.defEncoding}.
104 * Allow some HTML tags in the abstract (description field) during an
105   openposting. strip out the dangerous ones like <head>, <body> and <script> as
106   well as table tags. also strip out dangerous tags from the article body
107   (content_data).
108 * re-introduce smaller/better encodeHTML method to StringUtil class. make it
109   directly callable in FreeMarker templates (like the "lang" template method)
110 * comment and media lists: after deleting an item, return to the same place
111   you were in the list.
112
113 [Bugfixes]
114 * fix content-type in response header: we were sending the Java character
115   encoding instead of the HTML one.
116 * backport from the HEAD branch: fix finding out the Module Name in
117   the ServletModule base class. needed for generic routines like delete.
118 * backport: don't try to free a JDBC connection in EntityImages if it is null.
119 * Fix embarrassing bug in the admin interface that caused data to dissappear
120   when double quotes were in a title form field for example.. (anything
121   enclosed in a value="...")
122 * fix a bug in comment search: if you were at an offset > 0, i.e not on the
123   first page, the search would be broken.
124 * fix minor bug in media searching: mediafolder search setting would be reset
125   each time. make sure it is not so.
126 * backport from HEAD: fix minor email address filtering bug.
127
128 [Build process]
129
130 [Maintenance]
131 * comment out a bunch of debug logging in Database.java
132 * add this file, REPORTING_BUGS, KNOWN_BUGS, CODINGSTYLE and a README file.
133 * Add gnu Style ChangeLog using cvs2cl (use "-F MIR_1_0 --utc" options., for
134   HEAD, it would be "-F trunk --utc")
135
136 [Notes]
137 * you'll need to add the new "Mir.DefaultHTMLCharset" config option to your
138   config.properties file. see config.properties-dist
139
140 =============================
141 1.0.0-rc3 released 2002/12/05
142 =============================
143
144 [New features/Improvements]
145 * support "video/avi" mime type.
146 * add missing multi-file dialog for audio/video/othermedia admin interface
147 * mark an article as unproduced when one of it's possible attached media items
148   is modified.
149
150 [Bugfixes]
151 * fix placement of FILE upload field in the media admin
152   that prevented description, author, etc fields to appear in uploaded files in
153   the admin interface.
154 * prevent an Image Entity from getting out of sync w/ the DB when the setImage
155   method in EntityImages is called.
156
157 [Build process]
158
159 [Maintenance]
160
161 [Notes]
162 * manually insertion of "video/avi" mime-type in the media_type table is
163   required. see the dbscripts/populate_mediatyp file for details (id 20)
164
165 =========
166 1.0.0-rc2
167 =========
168
169 [New features/Improvements]
170
171 [Bugfixes]
172 * fix nasty and embaressing bug in rc1 that prevented uploads from working.
173
174 [Build process]
175
176 [Maintenance]
177
178 [Notes]
179
180 =========
181 1.0.0-rc1
182 =========
183
184 [New features/Improvements]
185 * convert the media layer to use InputStreams and OutputStreams when
186   uploading and viewing files to curb memory use. add FileHandler interface
187   abstraction to handle file uploads
188 * support converting the size in bytes of a file to human readable format, eg.
189   384K vs 384 xxx
190 * support for previewing of Media files in the admin interface
191 * use req.getContextPath to find the RootUri.. much more robust
192 * create new web.xml servlet url mapping for 4.0 and 4.1 compatibility
193
194 [Bugfixes]
195 * fix long standing bug that caused '&''s to be removed from an http link in
196   an article abstract
197
198 [Build process]
199
200 [Maintenance]
201 * use cvs's \$Name\$ tag for versioning
202 * get rid of some unused methos in StrinUtil.java
203
204 [Notes]
205 * due to the changes introduced for Input/OutputStream support in media
206   handling, the FILE upload field in the html form, must always come after
207   all other fields required for adding the media item.
208 * you'll need to add the new "TempDir" config option to your config.properties
209   file.
210
211 ==========================================================================
212 From approx. March 2001 (beginning of indymedia.de) to 1.0.0-rc1, Dec 2002
213 ==========================================================================
214
215 [New features/Improvements]
216 * create and improve ServletModules for managing media files in the admin
217   interface
218 * support modification of the content creation date (webdb_create) meta field
219   of a content item
220 * add a basic static file editor ServletModule to be able to edit static html
221   files through the admin interface
222 * creation of a servlet module to list all non publish content items
223 * start of a one-time passwd system for openposting to protect against SPAM
224   attacks
225 * support production of RDF/XML syndication for startspecials/features, works
226   with the new global indymedia system. Should probably be re-factored to be
227   more generic. i.e being able to decide what makes it into the RDF file.
228 * allow for changing the maximum allowed size of an uploaded file as well as
229   the maximum number of files one can upload
230 * support changing the character encoding used in for produced files
231 * support creation of printable PDF files out of articles
232 * creation of the ObjectStore for Object caching to improve performance
233 * make the Entity's implement the freemarker TemplateModel simplifying the
234   the producer code and improving performance.
235 * switch to Poolman Database connection pooling
236 * i18n support for templates via language bundles. allows for a multilingual
237   admin interface and easily switching the language of the produced site.
238 * addition of the media handler interface layer for upload/handling of
239   multimedia files like audio and video
240 * support for duplicate posting checks using checksums via a postgres module
241 * simplify configuration slightly and remove redundant config options
242 * choose between direct and indirect open posting. i.e direct to newswire vs.
243   openposting list.
244 * implement multiple file upload support
245
246 [Bugfixes]
247 * Better and more consistent exception handling: make sure all exceptions make
248   it to the top.
249 * make sure that if some part of a posting fails that the posting however
250   complete/inconplete it may be is deleted
251 * many bugfixes all over the place
252
253 [Build process]
254 * ditch build.sh wrapper in favor of a saner build.xml
255 * INSTALL documentation revamped
256 * perms.sh script to set install permissions
257 * config.properties file re-organized and commented
258
259 [Maintenance]
260 * make changes for tomcat v4.1.x compatibility
261 * change licensing to GPL
262 * translate some/most comments from German to English
263 * formal start of Mir project: get other developers involved
264
265 [Notes]
266