- topiclist now optionally with checkboxes on article edit form
[mir.git] / etc / config.properties-dist
1 #
2 # Sample config for Mir
3 # by Matthias <mjordan@code-fu.de> 2001-09-12
4 #
5 # The Mir software realizes a semi-dynamic web service:
6 # The web server that is accessed by users has pure static
7 # pages. These pages are generated by the Mir software that
8 # consists of a collection of Java servlets and HTML templates.
9 # Mir uses a database server to store the data that is needed to
10 # build the static site.
11 # So there are basically three parts in this config file:
12 #
13 # a) general setup
14 # b) static site config
15 # c) dynamic admin site
16 # d) database config
17 #
18 # edit this to suit your needs
19 # After you edited this file, build.sh has to be invoked.
20 # To be sure, also restart Tomcat.
21 #
22 # Note that for Mir to work, Tomcat has to be set up to handle all
23 # URLs that begin with /servlet. All other URLs are handled by Apache.
24 #
25 # There are more configuration values located in the default.properties file
26 # located in source/. If necessary these values can be overridden in this file.
27 #
28 # The setup uses the following assumptions:
29 # The URL to reach the site is http://indy.code-fu.de
30 # The StorageRoot of this URL is /pub/Dokumente/Indymedia/de-tech/Mir
31 # All data is located below this directory, including the servlets.
32
33
34 #
35 #
36 # GENERAL SETUP
37 #
38
39 ### mir/imc information
40 Mir.Name=mir.indymedia.org
41 Mir.Shortname=mir
42 Mir.Contact-email.address=mir-coders@lists.indymedia.org
43 Mir.Contact-email.name=mir-coders mailinglist
44 Mir.Tech-email.address=mir-coders@lists.indymedia.org
45 Mir.Tech-email.name=mir-coders mailinglist
46 Mir.Public-email.address=mir-coders@lists.indymedia.org
47 Mir.Public-email.name=mir-coders mailinglist
48
49 Mir.Version=1.1beta
50 StandardLanguage=de
51 DirectOpenposting=yes
52
53 #where to put the lucene index
54 IndexPath=/tmp/index
55
56 # temp-dir used for media-uploads
57 TempDir=/tmp
58
59 Log.LogClass = mir.log.log4j.LoggerImpl
60 Log.log4j.ConfigurationFile = etc/log4j.properties
61 Log.Home = log
62
63 Mir.Localizer=mircoders.localizer.basic.MirBasicLocalizer
64 Mir.Localizer.Logfile=log/localizer.log
65
66 # The location of the producer specifiations
67 Mir.Localizer.ProducerConfigFile=etc/producer/producers.xml
68
69 # Settings for the admin login:
70 # If the default language is left empty, it will set the accept-language of
71 # the client browser as the default.
72 Mir.Login.DefaultLanguage=en
73 Mir.Login.Languages=en;nl;de;qu;tr;ay;es;eu
74
75
76 # the templates
77 Mir.Localizer.Producer.GeneratorLibrary= default=freemarker(etc/producer/)
78 Mir.Localizer.Admin.GeneratorLibrary= default=freemarker(templates/admin/)
79 Mir.Localizer.OpenPosting.GeneratorLibrary= default=freemarker(etc/open/)
80
81 # How should the custom operations (hide etc) in article and comment lists
82 # be presented?
83 # 0 = links, 1 = checkboxes, 2 = a listbox
84 Mir.Localizer.Admin.ListOperationsFlavor=1
85
86 # How should the topics be presented on the article edit page?
87 # 0 = in a multiselect list box, 1 = checkboxes
88 Mir.Localizer.Admin.TopicListFlavor=1
89
90 # For the checkboxes flavour, how many columns should there be?
91 Mir.Localizer.Admin.TopicListColumns=3
92
93 # In which order should the topic appear?
94 Mir.Localizer.Admin.TopicListOrder=title
95
96 # Which producers need to be called after an article (resp. a comment) is posted
97 Mir.Localizer.OpenPosting.ContentProducers= media.new;articles.changed;startpage.generate;synchronization.run
98 Mir.Localizer.OpenPosting.CommentProducers= articles.changed;synchronization.run
99
100 # Which producers need to be called after the "produce all new" link is clicked from admin
101 Mir.Localizer.Producer.AllNewProducers= media.new;articles.changed;startpage.run;synchronization.run
102
103
104 #note that you can't make pdf's without making fo's
105 #this is actually now set in producers.xml
106 #but these summarize what is said in there for the benefit of OpenMir 
107 GenerateFO=yes
108 GeneratePDF=yes
109
110 #use rsync to mirror the website to a remote-host
111 Rsync=no
112 Rsync.Script.Path=/var/www/bin/rsync-copy
113
114 # the maximum allowed size of an uploaded media file in KB.
115 MaxMediaUploadSize=20000
116
117 # the maximum number of allowed media items to upload at once.
118 ServletModule.OpenIndy.MaxMediaUploadItems=20
119
120 # the default number of media items to upload at once
121 ServletModule.OpenIndy.DefaultMediaUploadItems=1
122
123
124 #
125 #
126 # STATIC SITE CONFIG
127 #
128
129 # the url of the static site
130 Producer.ProductionHost=http://indy.code-fu.de
131
132 # Produrce.StorageRoot is the directory, in which
133 # the generated HTML pages will be stored
134 Producer.StorageRoot=/pub/Dokumente/Indymedia/de-tech/Mir/produced
135
136 # for FileEdit module
137 #
138 # where do we find the files? absolute path
139 ServletModule.FileEdit.FileDirectory=/pub/Dokumente/Indymedia/de-tech/Mir/produced
140 ServletModule.FileEdit.ExtFilter=inc
141
142 #
143 #
144 # DYNAMIC SITE CONFIG
145 #
146
147 # the url of the openposting-servlet
148 Producer.OpenAction=http://indy.code-fu.de/Mir/servlet/OpenMir
149
150 # use this property if the pages are not produced under the docRoot
151 # of the webserver. all links in the produced pages are prepended
152 # with Producer.DocRoot
153 Producer.DocRoot=
154
155 Producer.ActionServlet=/servlet/Mir
156
157 # this is the name of the subdirectory where the image-dir
158 # will be linked to.
159 Producer.ImageRoot=/img
160
161
162 # the url of the video-server
163 Producer.Video.Host=http://indy.code-fu.de/video
164
165 # the url of the audio-server
166 Producer.Audio.Host=http://indy.code-fu.de/audio
167
168 # the url of the image-server
169 Producer.Image.Host=http://indy.code-fu.de/images
170
171 # the url of the media-server
172 Producer.Media.Host=http://indy.code-fu.de/media
173
174 # the url of the real-media-server
175 Producer.RealMedia.Host=rtsp://some.media.server/somedir/
176
177
178 # image specific storage directories
179 # absolute directory, where the images are saved
180 Producer.Image.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images/
181
182 # media specific storage directories
183 # absolute directory, where the media files are saved
184 Producer.Media.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/media
185
186 # absolute directory, where the realmedia data files(ra and rm) are saved
187 # the ram files which point to the RealMedia.Host get saved in the regular Media dir
188 # this should make rsyncing to a separate streaming server much easier
189 Producer.RealMedia.Path=/pub/Dokumente/rtsp
190
191 # relativ directory, where the thumbnails will be saved
192 Producer.Image.IconPath=/icon
193
194 # Tiny Icons for the media types on the newswire summary.
195 # (right hand side of start page)
196 Producer.Icon.TinyImage=photo_small.gif
197 Producer.Icon.TinyAudio=audio_small.gif
198 Producer.Icon.TinyVideo=video_small.gif
199 Producer.Icon.TinyText=text_small.gif
200
201 #Medium sized icons used at various places
202 Producer.Icon.BigImage=photo_big.gif
203 Producer.Icon.BigAudio=audio_big.gif
204 Producer.Icon.BigVideo=video_big.gif
205 Producer.Icon.BigText=text_big.gif
206
207 #Icons used for links
208 Producer.ExtLinkName=extlink.gif
209 Producer.IntLinkName=intlink.gif
210 Producer.MailLinkName=maillink.gif
211
212 #the style sheet used to turn html into xsl:fo
213 Producer.HTML2FOStyleSheet=/some/dir/mir/etc/producer/html2fo.xsl 
214
215
216 #
217 # edit with caution below this line
218 ######################################################################
219
220 #
221 #
222 # DATABASE SETUP
223 #
224
225 #
226 # specify your database
227
228 Database.poolMin=1
229 Database.poolMax=10
230 Database.poolResetTime=1.0
231 Database.PoolLog=log/pool.log
232 Database.Limit=20
233 Database.Username=postgres
234 Database.Password=
235 Database.Host=localhost
236 Database.Name=Mir
237
238 #
239 # this sets the adaptor to be used
240
241 Database.Adaptor=mir.storage.DatabaseAdaptorPostgresql
242 Database.Logfile=log/dbentity.log
243
244 #
245 # configuration for adaptor postgres
246 # In this example, "Mir" is the dbname
247
248 Adaptor.PostgreSQL.URL=jdbc:postgresql://localhost:5432/Mir
249 Adaptor.PostgreSQL.Driver=org.postgresql.Driver
250
251 # how many articles should be shown on a list-page
252 Lists.Max.Items=10
253
254 #
255 # Servlet / Module configurations
256 #
257
258 # don't change this unless you really know your i18n.
259 # The default encoding charset used in the written html files as well
260 # as the dynamic output html.
261 # also used for the HTML charset meta tag.
262 Mir.DefaultEncoding=UTF8