values for web bugs squasher
[mir.git] / source / default.properties
1 #
2 # GENERAL SETUP
3 #
4 # This is a full list of defaults options. To configure your site
5 # do NOT change this file. You can override all of these values in
6 # your etc/config.properties
7 #
8
9 ### mir/imc information
10 Mir.Name=mir.indymedia.org
11 Mir.Shortname=mir
12 Mir.Contact-email.address=mir-coders@lists.indymedia.org
13 Mir.Contact-email.name=mir-coders mailinglist
14 Mir.Tech-email.address=mir-coders@lists.indymedia.org
15 Mir.Tech-email.name=mir-coders mailinglist
16 Mir.Public-email.address=mir-coders@lists.indymedia.org
17 Mir.Public-email.name=mir-coders mailinglist
18
19 Mir.Version=1.1.0rc0
20
21 # The name of the abuse config file (relative to the WEB-INF dir)
22 Abuse.Config=abuse.properties
23 # The name of the cookie that can be used to thwart trolls
24 #    (The name is deliberately misleading)
25 Abuse.CookieName=SessionIdentifier
26
27 # If equal to 1, the IP log can't be used
28 Abuse.DisallowIPLogging=0
29
30 # The time the cookie will remain active in hours
31 #   168 = 1 week
32 Abuse.CookieMaxAge=168
33
34
35 #where to put the lucene index
36 IndexPath=index
37
38 TempDir=/tmp
39
40 Log.LogClass = mir.log.log4j.LoggerImpl
41 Log.log4j.ConfigurationFile = etc/log4j.properties
42 Log.Home = log
43
44 Mir.Localizer=mircoders.localizer.basic.MirBasicLocalizer
45
46 # The location of the producer specifiations
47 Mir.Localizer.ProducerConfigFile=etc/producer/producers.xml
48
49 # Settings for the admin login:
50 # If the default language is left empty, it will set the accept-language of
51 # the client browser as the default.
52 Mir.Login.DefaultLanguage=en
53
54 # The available languages in the login form:
55 Mir.Login.Languages=en;de;fr;nl;es;pt;eu;sv;tr;zh;gz
56
57 # For missing values, the FallbackLanguage is used as default
58 Mir.Admin.FallbackLanguage=en
59
60 # Show who's logged in?
61 Mir.Admin.ShowLoggedinUsers=1
62
63 # Log admin activity?
64 Mir.Admin.LogAdminActivity=0
65
66 # Limit the length of text shown in lists (-1 means no limit)
67 Mir.Admin.ListTextLengthLimit=-1
68
69 # Which usernames have admin priviliges (, seperated usernames)
70 AccessControl.SuperUsers = admin
71
72 # Locking enabled?
73 AccessControl.LockingEnabled = 0
74
75 # If locking enabled, should users lock articles before they
76 #    can edit?
77 AccessControl.LockingOptional = 1
78
79 # the templates
80 Mir.Localizer.Producer.GeneratorLibrary= default=freemarker(etc/producer/)
81 Mir.Localizer.Admin.GeneratorLibrary= default=freemarker(templates/admin/),preview=freemarker(etc/producer)
82 Mir.Localizer.OpenPosting.GeneratorLibrary= default=freemarker(etc/open/)
83
84 # Should an XSS preventing interceptor be used by the producer subsystem?
85 Mir.Producer.UseInterceptor=1
86
87 # How should the custom operations (hide etc) in article and comment lists
88 # be presented?
89 # 0 = links, 1 = checkboxes, 2 = a listbox
90 Mir.Localizer.Admin.ListOperationsFlavor=2
91
92 # Article previews, a comma seperated list of name = generator
93 Mir.Localizer.Admin.ArticlePreview = \
94   default = preview::article.template
95 Mir.Localizer.Admin.ArticlePreviewLanguage=en
96
97 # How should the topics be presented on the article edit page?
98 #
99 # <key>:<listtype>:<listparameter>:<condition>:<order>
100 # multiple entries can be specified, can be seperated by a ,
101 #
102 # key:
103 #     the bundle key to use for the field label
104 # listtype:
105 #     0 = in a multiselect list box, 1 = checkboxes, 2 = a dropdown listbox
106 # listparameter:
107 #     number of rows for multiselect list box, number of columns for checkboxes
108 # condition:
109 #     what sql condition should the topics of this category be of
110 # order:
111 #     what sql order should the topics be ordered by
112
113 Mir.Localizer.Admin.TopicLists = \
114    content.topic:1:3::title
115
116 # enable deletion of comments/articles?
117 Mir.Localizer.Admin.AllowDeleteComment=1
118 Mir.Localizer.Admin.AllowDeleteArticle=1
119
120 # Article Preview Link URL (Link to produced articles from within admin)
121 Comment.PublicUrl=/en/${date.formatted.yyyy}/${date.formatted.MM}/${id}.shtml
122 Article.PublicUrl=/en/${to_content.date.formatted.yyyy}/${to_content.date.formatted.MM}/${to_content.id}.shtml
123
124 # which 'quick' operations should be available in the top-left box?
125 Mir.Localizer.Admin.AdministerOperations= \
126    comments:module=Comment&do=list
127
128 # Which producers need to be called after an article (resp. a comment) is posted
129 Mir.Localizer.OpenPosting.ContentProducers= media.new;articles.changed;startpage.generate;synchronization.run
130 Mir.Localizer.OpenPosting.CommentProducers= articles.changed;synchronization.run
131
132 # Which producers need to be called after the "produce all new" link is clicked from admin
133 Mir.Localizer.Producer.ProducerRecipes= \
134   allnew = media.new;articles.changed;startpage.run;synchronization.run
135
136
137 #use rsync to mirror the website to a remote-host
138 Rsync=no
139 Rsync.Script.Path=/var/www/bin/rsync-copy
140
141 # the maximum allowed size of an uploaded media file in KB.
142 MaxMediaUploadSize=20000
143
144 # the maximum number of allowed media items to upload at once.
145 ServletModule.OpenIndy.MaxMediaUploadItems=20
146
147 # the default number of media items to upload at once
148 ServletModule.OpenIndy.DefaultMediaUploadItems=1
149
150
151 #
152 #
153 # STATIC SITE CONFIG
154 #
155
156 # the url of the static site
157 Producer.ProductionHost=http://indy.code-fu.de
158
159 # the url of the public site
160 Producer.PublicationHost=http://indy.code-fu.de
161
162 # Produrce.StorageRoot is the directory, in which
163 # the generated HTML pages will be stored
164 Producer.StorageRoot=/pub/Dokumente/Indymedia/de-tech/Mir/produced
165
166 # FileEdit module
167 #   a list of directories to edit
168 #   format:
169 #      <name>:<path>:<file filter>:<0|1 (recursion off or on)> [, ....]
170
171 ServletModule.FileEdit.Configuration= \
172   includes:/pub/Dokumente/Indymedia/de-tech/Mir/produced/inc:.*\\.inc:1
173
174 #
175 #
176 # DYNAMIC SITE CONFIG
177 #
178
179 # the url of the openposting-servlet
180 Producer.OpenAction=http://indy.code-fu.de/Mir/servlet/OpenMir
181
182 # use this property if the pages are not produced under the docRoot
183 # of the webserver. all links in the produced pages are prepended
184 # with Producer.DocRoot
185 Producer.DocRoot=
186
187 Producer.ActionServlet=/servlet/Mir
188
189 # this is the name of the subdirectory where the image-dir
190 # will be linked to.
191 Producer.ImageRoot=/img
192
193 # path to ImageMagick executables. Default is "" (nothing), which
194 # means executables will be searched using the default system PATH
195 # example:Producer.Image.ImageMagickPath=/usr/local/ImageMagick/bin
196 #
197 Producer.Image.ImageMagickPath=
198
199 # the url of the video-server
200 Producer.Video.Host=http://indy.code-fu.de/video
201
202 # the url of the audio-server
203 Producer.Audio.Host=http://indy.code-fu.de/audio
204
205 # the url of the image-server
206 Producer.Image.Host=http://indy.code-fu.de/images
207
208 # the url of the media-server
209 Producer.Media.Host=http://indy.code-fu.de/media
210
211 # the url of the real-media-server
212 Producer.RealMedia.Host=rtsp://some.media.server/somedir/
213
214
215 # image specific storage directories
216 # absolute directory, where the images are saved
217 Producer.Image.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images/
218
219 # absolute directory where image originals are saved if image resizing is enabled
220 # this can be ignored if image scaling is not being used
221 #
222 Producer.ImagesOriginalDir.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images/raw
223
224 # relative path from the site root where the templates can find raw (unresized) images:
225 # this can be ignored if image scaling is not being used
226 Producer.ImagesOriginalDir.RelPath=/images/raw
227
228 # images will be scaled down so that the size (both widht and height) are below:
229 Producer.Image.MaxSize = 640
230
231 # icons will be generated so that the size (both width and height) are below:
232 Producer.Image.MaxIconSize = 120
233
234 # descaling will only occur if at least the following percentage of either
235 #  the width or the height needs to be removed:
236 Producer.Image.MinDescalePercentage=10
237
238 # descaling will only occur if at least the following number of pixels needs
239 #  to be removed from either the width or the height:
240 Producer.Image.MinDescaleReduction=10
241
242
243 # media specific storage directories
244 # absolute directory, where the media files are saved
245 Producer.Media.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/media
246
247 # absolute directory, where the realmedia data files(ra and rm) are saved
248 # the ram files which point to the RealMedia.Host get saved in the regular Media dir
249 # this should make rsyncing to a separate streaming server much easier
250 Producer.RealMedia.Path=/pub/Dokumente/rtsp
251
252 # relativ directory, where the thumbnails will be saved
253 Producer.Image.IconPath=/icon
254
255 # Tiny Icons for the media types on the newswire summary.
256 # (right hand side of start page)
257 Producer.Icon.TinyImage=photo_small.gif
258 Producer.Icon.TinyAudio=audio_small.gif
259 Producer.Icon.TinyVideo=video_small.gif
260 Producer.Icon.TinyText=text_small.gif
261
262 #Medium sized icons used at various places
263 Producer.Icon.BigImage=photo_big.gif
264 Producer.Icon.BigAudio=audio_big.gif
265 Producer.Icon.BigVideo=video_big.gif
266 Producer.Icon.BigText=text_big.gif
267
268 #the style sheet used to turn html into xsl:fo
269 Producer.HTML2FOStyleSheet=/some/dir/mir/etc/producer/html2fo.xsl
270
271 # the following lines are used to construct PDFs on the fly from one or more articles
272 # for the moment, if you want to change anything else about your pdfs, you
273 # will have to learn some java!
274 #
275 # keep in mind that there may not be enough room for all the text you enter as the
276 # value of one these options, if text doesn't appear, the only easy thing to do is
277 # use less text!
278 #
279 # also, be sure to adjust the corresponding line height if you change a font size...
280 # this may require some trial and error to get right
281 #
282 # Available font families are helvetica, courier, and times
283 #
284
285
286 # an image which will appear at the top of the first page
287
288 PDF.Header.Image=
289 PDF.Header.ImageHeight=0
290
291 #PDF.Header.Image=/home/john/mir/web/img/pdfbanner.png
292 #PDF.Header.ImageHeight=70
293
294 # a single line of big text which will appear at the top of the first page of all generated pdfs
295 # if you set the String to nothing, this will be skipped
296
297 PDF.Title.String=INDYMEDIA SOMEWHERE
298 PDF.Title.FontSize=24
299 PDF.Title.LineHeight=28
300 PDF.Title.FontFamily=courier
301
302 # Source will be expanded to come to a URL to the article
303 PDF.Source=${config["Producer.PublicationHost"]}${config['Mir.Login.DefaultLanguage']}/${article.date.formatted['yyyy/MM']}/${article.id}.shtml
304
305 # footer is about two lines of small text which will appear at the bottom of every page
306 PDF.Footer.String=Indymedia does blah.  Content is good, and free to use for non-commercial purposes under the Open Content license. if you have questions, email someone.
307 PDF.Footer.Height=54
308 PDF.Footer.FontSize=12
309 PDF.Footer.FontFamily=helvetica
310
311 # how to format the index, i.e. the newsletter table of contents
312
313 PDF.Index.FontSize=12
314 PDF.Index.LineHeight=16
315 PDF.Index.FontFamily=helvetica
316
317 # how to format the meta-data, i.e. title, author, date
318
319 PDF.Meta.Height=36
320 PDF.Meta.FontSize=14
321 PDF.Meta.FontFamily=helvetica
322 RDF.Meta.DateFormat=yyyy-MM-dd HH:mm
323
324 # how to format the article description
325
326 PDF.Description.FontSize=12
327 PDF.Description.LineHeight=16
328 PDF.Description.FontFamily=helvetica
329
330 # how to format the article content
331
332 PDF.Content.FontSize=10
333 PDF.Content.LineHeight=16
334 PDF.Content.FontFamily=helvetica
335
336 # the formatting for images in gallery mode
337
338 PDF.BigImageCaption.FontSize=16
339 PDF.BigImageCaption.FontFamily=helvetica
340
341 # the formatting for the article source
342
343 PDF.Source.FontSize=12
344 PDF.Source.LineHeight=16
345 PDF.Source.FontFamily=courier
346
347
348
349
350 #
351 # the size paper your target audience will likely have in their printers.  pick one of A4 or LETTER
352 #
353
354 PDF.PageSize=A4
355
356 # the number of Objects which can fit in your MRUCache
357
358 Global.Cache.Items=15
359
360 #
361 # edit with caution below this line
362 ######################################################################
363
364 #
365 #
366 # DATABASE SETUP
367 #
368
369 Database.poolMin=1
370 Database.poolMax=10
371 Database.poolResetTime=1.0
372 Database.PoolLog=log/pool.log
373 Database.Limit=20
374 Database.Username=postgres
375 Database.Password=
376 Database.Host=localhost
377 Database.Name=Mir
378 Database.Port=5432
379 Database.Driver=org.postgresql.Driver
380
381
382 #
383 # Servlet / Module configurations
384 #
385
386 # don't change this unless you really know your i18n.
387 # The default encoding charset used in the written html files as well
388 # as the dynamic output html.
389 # also used for the HTML charset meta tag.
390 Mir.DefaultEncoding=UTF8
391
392 # this encoding is used for the HTML charset meta tag.
393 # it must be the html charset equivalent of the Java encoding above
394 # don't change this unless...
395 Mir.DefaultHTMLCharset=UTF-8
396
397 # Default timezone to display times in in admin, producers
398 Mir.DefaultTimezone= UTC
399
400 # Default date/time format
401 Mir.DefaultDateTimeFormat = yyyy-MM-dd HH:mm
402
403 # Compatibility feature: updated posting forms can
404 # support persistent uploads (that is, uploads remainig
405 # valid after validation errors). To support existing
406 # forms, by default it is off.
407 Localizer.OpenSession.PersistentUploadedFiles = 0
408
409 # Should support for ftp-like uploads (uploads done
410 # outside of mir, but included into postings) be
411 # supported at all?
412 Localizer.OpenSession.AllowFTPUploads = 0
413
414 # When uploading ftp files, should a list of available
415 # files be displayed?
416 Localizer.OpenSession.AllowFTPUploadSelection = 0
417
418 # What is the place where files are uploaded?
419 Localizer.OpenSession.FTPDirectory = /somewhere
420
421 Localizer.OpenSession.article.EditTemplate = editarticle.template
422 Localizer.OpenSession.article.DupeTemplate = dupearticle.template
423 Localizer.OpenSession.article.DoneTemplate = donearticle.template
424 Localizer.OpenSession.article.UnsupportedMediaTemplate = unsupportedmediatype.template
425 Localizer.OpenSession.article.DefaultArticleType=newswire
426 Localizer.OpenSession.article.DefaultMediaFolder=openposting
427
428 Localizer.OpenSession.comment.EditTemplate = editcomment.template
429 Localizer.OpenSession.comment.DupeTemplate = dupecomment.template
430 Localizer.OpenSession.comment.DoneTemplate = donecomment.template
431 Localizer.OpenSession.comment.UnsupportedMediaTemplate = unsupportedmediatype.template
432 Localizer.OpenSession.comment.DefaultCommentStatus=normal
433 Localizer.OpenSession.comment.DefaultMediaFolder=openposting
434 Localizer.OpenSession.ErrorTemplate = sessionerror.template
435
436 Localizer.OpenSession.translation.EditTemplate=edittranslation.template
437 Localizer.OpenSession.translation.DupeTemplate=dupearticle.template
438 Localizer.OpenSession.translation.UnsupportedMediaTemplate=unsupportedmediatype.template
439 Localizer.OpenSession.translation.DoneTemplate=donetranslation.template
440
441
442 Localizer.OpenSession.email.PrepareTemplate = preparemail.template
443 Localizer.OpenSession.email.MailTemplate = email_article.template
444 Localizer.OpenSession.email.DoneTemplate =/sent_mail.template
445
446 Localizer.HTML.Whitelist=a;img;h1;h2;h3;h4;h5;h6;br;form;input;hr;strong;font;b;i;em;p;table;tr;td;th;ul;ol;li
447
448 Localizer.HTML.BadAttributeValuePrefixes=javascript;vbscript;about;wysiwyg;data;view-source;ms-its;mhtml;shell;lynxexec;lynxcgi;hcp;ms-help;help;disk;vnd.ms.radio;opera;res;resource;chrome;mocha;livescript
449
450 Localizer.HTML.BadAttributes=onabort;onblur;onchange;onclick;ondblclick;onerror;onfocus;onkeydown;onKeypress;onkeyup;onload;onmousedown;onmousemove;onmouseout;onmouseover;onmouseup;onreset;onselect;onsubmit;onunload;onload;onclick;onfocus;onblur;FSCommand;onAbort;onActivate;onAfterPrint;onAfterUpdate;onBeforeActivate;onBeforeCopy;onBeforeCut;onBeforeDeactivate;onBeforeEditFocus;onBeforePaste;onBeforePrint;onBeforeUnload;onBegin;onBlur;onBounce;onCellChange;onChange;onClick;onContextMenu;onControlSelect;onCopy;onCut;onDataAvailible;onDataSetChanged;onDataSetComplete;onDblClick;onDeactivate;onDrag;onDragEnd;onDragLeave;onDragEnter;onDragOver;onDragDrop;onDrop;onEnd;onError;onErrorUpdate;onExit;onFilterChange;onFinish;onFocus;onFocusIn;onFocusOut;onHelp;onKeyDown;onKeyPress;onKeyUp;onLayoutComplete;onLoad;onLoseCapture;onMediaComplete;onMediaError;onMouseDown;onMouseEnter;onMouseLeave;onMouseMove;onMouseOut;onMouseOver;onMouseUp;onMouseWheel;onMove;onMoveEnd;onMoveStart;onOutOfSync;onPaste;onPause;onProgress;onPropertyChange;onReadyStateChange;onRepeat;onReset;onResize;onResizeEnd;onResizeStart;onResume;onReverse;onRowEnter;onRowExit;onRowDelete;onRowInserted;onScroll;onSeek;onSelect;onSelectionChange;onSelectStart;onStart;onStop;onSynchRestored;onSubmit;onTimeError;onTrackChange;onUnload;onURLFlip;seekSegmentTime;style;height;width
451
452 # don't let external content get loaded
453 Localizer.HTML.KillWebBugs=0
454 Localizer.HTML.ExternalLocationAttributeValuePrefixes=http://;https://;ftp://;gopher://
455 Localizer.HTML.WhitelistedExternalLocationAttributeValuePrefixes=http://media.de.indymedia.org/;https://media.de.indymedia.org/
456
457
458 #
459 # config used for OpenIndy
460
461 ServletModule.OpenIndy.CommentTemplate=comment.template
462 ServletModule.OpenIndy.CommentDoneTemplate=comment_done.template
463 ServletModule.OpenIndy.CommentDupeTemplate=comment_dupe.template
464 ServletModule.OpenIndy.PostingTemplate=posting.template
465 ServletModule.OpenIndy.PostingDoneTemplate=posting_done.template
466 ServletModule.OpenIndy.PostingDupeTemplate=posting_dupe.template
467 ServletModule.OpenIndy.PostingDisabledTemplate=posting_disabled.template
468 ServletModule.OpenIndy.SearchResultsTemplate=search_results.template
469 ServletModule.OpenIndy.PrepareMailTemplate=prepare_mail.template
470 ServletModule.OpenIndy.SentMailTemplate=sent_mail.template
471 ServletModule.OpenIndy.MailableArticleTemplate=email_article.template
472 ServletModule.OpenIndy.EmailIsFrom=mailer@somewhere.org
473 ServletModule.OpenIndy.SMTPServer=localhost
474 ServletModule.OpenIndy.ErrorTemplate=error.template
475 ServletModule.OpenIndy.UserErrorTemplate=usererror.template
476
477
478
479 Mir.TemplateDir=templates/admin/
480
481 Mir.LoginTemplate=login.template
482 Mir.StartTemplate=start_admin.template
483
484 Mir.ErrorTemplate=error.template
485 Mir.UserErrorTemplate=usererror.template
486
487 ServletModule.Default.ListSize = 30
488
489 ServletModule.Topics.DeleteConfirmationTemplate=confirm.template
490 ServletModule.Topics.EditTemplate=topic.template
491 ServletModule.Topics.ListTemplate=topiclist.template
492
493 ServletModule.Users.DeleteConfirmationTemplate=confirm.template
494 ServletModule.Users.EditTemplate=user.template
495 ServletModule.Users.ListTemplate=userlist.template
496
497 ServletModule.Images.DeleteConfirmationTemplate=confirm.template
498 ServletModule.Images.EditTemplate=image.template
499 ServletModule.Images.ListTemplate=imagelist.template
500
501 ServletModule.Audio.DeleteConfirmationTemplate=confirm.template
502 ServletModule.Audio.EditTemplate=audio.template
503 ServletModule.Audio.ListTemplate=audiolist.template
504
505 ServletModule.Video.DeleteConfirmationTemplate=confirm.template
506 ServletModule.Video.EditTemplate=video.template
507 ServletModule.Video.ListTemplate=videolist.template
508
509 ServletModule.OtherMedia.DeleteConfirmationTemplate=confirm.template
510 ServletModule.OtherMedia.EditTemplate=other.template
511 ServletModule.OtherMedia.ListTemplate=medialist.template
512
513 ServletModule.Content.DeleteConfirmationTemplate=confirm.template
514 ServletModule.Content.EditTemplate=content.template
515 ServletModule.Content.ListTemplate=contentlist.template
516
517 ServletModule.Mediafolder.DeleteConfirmationTemplate=confirm.template
518 ServletModule.Mediafolder.EditTemplate=mediafolder.template
519 ServletModule.Mediafolder.ListTemplate=mediafolderlist.template
520
521 ServletModule.Comment.DeleteConfirmationTemplate=confirm.template
522 ServletModule.Comment.EditTemplate=comment.template
523 ServletModule.Comment.ListTemplate=commentlist.template
524
525 ServletModule.Hidden.ListTemplate=hiddenlist.template
526
527 ServletModule.Breaking.DeleteConfirmationTemplate=confirm.template
528 ServletModule.Breaking.EditTemplate=breaking.template
529 ServletModule.Breaking.ListTemplate=breakinglist.template
530
531 ServletModule.FileEdit.DeleteConfirmationTemplate=confirm.template
532 ServletModule.FileEdit.EditTemplate=fileedit.template
533 ServletModule.FileEdit.ListTemplate=fileeditlist.template
534
535 ServletModule.Message.DeleteConfirmationTemplate=confirm.template
536 ServletModule.Message.EditTemplate=message.template
537 ServletModule.Message.ListTemplate=messagelist.template
538
539 ServletModule.Language.DeleteConfirmationTemplate=confirm.template
540 ServletModule.Language.EditTemplate=language.template
541 ServletModule.Language.ListTemplate=languagelist.template
542
543 ServletModule.ArticleType.DeleteConfirmationTemplate=confirm.template
544 ServletModule.ArticleType.EditTemplate=articletype.template
545 ServletModule.ArticleType.ListTemplate=articletypelist.template
546
547 ServletModule.CommentStatus.DeleteConfirmationTemplate=confirm.template
548 ServletModule.CommentStatus.EditTemplate=commentstatus.template
549 ServletModule.CommentStatus.ListTemplate=commentstatuslist.template
550
551 ServletModule.MediaType.DeleteConfirmationTemplate=confirm.template
552 ServletModule.MediaType.EditTemplate=mediatype.template
553 ServletModule.MediaType.ListTemplate=mediatypelist.template
554
555
556 #
557 # Object store configuration
558 #
559
560 StoreContainer.EntityDefaultSize= 45
561 StoreContainer.EntityListDefaultSize= 15
562 StorableObjectEntity.Entity.DefaultSize= 300
563 StorableObjectEntity.EntityList.DefaultSize= 100
564 EntityTopics.Entity.DefaultSize=200
565 EntityTopics.EntityList.DefaultSize=20
566
567
568
569
570
571
572 #
573 # config for abuse
574 ServletModule.Abuse.EditFilter.Template = filter.template
575 ServletModule.Abuse.ListFilters.Template = filterlist.template
576 ServletModule.Abuse.EditFilterGroup.Template = filtergroup.template
577 ServletModule.Abuse.ListFilterGroups.Template = filtergrouplist.template
578 ServletModule.Abuse.ViewLog.Template = abuse.log.template
579 ServletModule.Abuse.Main.Template = abuse.template
580
581 #
582 # producer-related configs below
583 #
584
585 Producer.ExtLinkName=extlink.gif
586 Producer.IntLinkName=intlink.gif
587 Producer.MailLinkName=maillink.gif
588
589 # should the <Bundle producer tag be backwards compatible
590 # (this means that old bundle paths get mapped to new ones)
591 Producer.BundleCompatibility=1