pisg-doc.sgml 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175
  1. <!DOCTYPE Book PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
  2. <book id="pisg-documentation">
  3. <bookinfo>
  4. <date>2002-01-23</date>
  5. <title>pisg documentation</title>
  6. <subtitle>How to install and configure pisg</subtitle>
  7. </bookinfo>
  8. <toc></toc>
  9. <!-- <lot></lot> -->
  10. <chapter id="what-is-pisg">
  11. <title>What is pisg?</title>
  12. <para>
  13. pisg is an IRC statistics generator. It takes IRC logfiles and turns
  14. them into nice looking stats.
  15. </para>
  16. <para>
  17. In general, you would do something like this to get it running:
  18. <itemizedlist mark="bullet">
  19. <listitem>
  20. <para>
  21. Enable logging in an IRC bot, or in your IRC client. The log will be
  22. outputted into a file.
  23. </para>
  24. </listitem>
  25. <listitem>
  26. <para>
  27. You set up pisg, you define the channel name, and the path to the
  28. logfile you created.
  29. </para>
  30. </listitem>
  31. <listitem>
  32. <para>
  33. You run pisg, pisg runs the log through and create statistics, it
  34. then creates a HTML page which you can upload to a server.
  35. </para>
  36. </listitem>
  37. </itemizedlist>
  38. </para>
  39. <sect1 id="requirements">
  40. <title>What are the requirements to run pisg?</title>
  41. <para>
  42. <itemizedlist mark="bullet">
  43. <listitem>
  44. <para>
  45. An IRC client or bot where pisg supports the output logfile.
  46. </para>
  47. </listitem>
  48. <listitem>
  49. <para>
  50. Any operating system which Perl runs at, this includes popular OS'es
  51. such as Linux, FreeBSD, Windows and Mac. You will have a hard time
  52. finding an OS where Perl isn't supported.
  53. </para>
  54. </listitem>
  55. <listitem>
  56. <para>
  57. <emphasis>Optional</emphasis> - a system to host the statistics page
  58. 24 hours a day, 7 days a week.
  59. </para>
  60. </listitem>
  61. <listitem>
  62. <para>
  63. <emphasis>Optional</emphasis> - a system to log the channel, 24 hours
  64. a day, 7 days a week.
  65. </para>
  66. </listitem>
  67. </itemizedlist>
  68. </chapter>
  69. <chapter id="setting-up-pisg">
  70. <title>Setting up pisg for the first time</title>
  71. <para>
  72. Most configuration happens through the <filename>pisg.cfg</filename>
  73. file, the file format is made to be easy to read, and easy to extend for
  74. further use. It uses an XML-like format, with elements and attributes.
  75. </para>
  76. <sect1 id="setting-up-a-channel">
  77. <title>Setting up a channel</title>
  78. <para>
  79. An element called <command>channel</command> is made for defining
  80. channels, a quick example of a channel is this:
  81. <programlisting>
  82. <![CDATA[
  83. <channel="#channel">
  84. Logfile = "channel.log"
  85. Format = "mIRC"
  86. Maintainer = "John"
  87. </channel>
  88. ]]>
  89. </programlisting>
  90. The above will define a channel called <command>#channel</command>, the
  91. logfile pisg will look for is called <command>channel.log</command> and
  92. the format of the logfile will be <command>mIRC</command>. The
  93. maintainer (which will be stated on the output page) is
  94. <command>John</command>.
  95. </para>
  96. <para>
  97. That is basically it! Now, there is a lot more options you can use for
  98. your channels, for this please refer to the reference documentation.
  99. </para>
  100. </sect1>
  101. <sect1 id="user-options">
  102. <title>Specifying user options</title>
  103. <para>
  104. User options are set with a simple XML-like syntax in the form:
  105. <programlisting>
  106. <![CDATA[<user nick="NICK" option="VALUE">]]>
  107. </programlisting>
  108. Remember, the nick is always required.
  109. For example to add aliases to a nick, then you could do this:
  110. <programlisting>
  111. <![CDATA[<user nick="Joe" alias="Joe^*">]]>
  112. </programlisting>
  113. The asterix (*) means that it will match all nicks starting with 'Joe^'. So
  114. it will add all Joe^'s to 'Joe' in the stats.
  115. Another thing you can do is to add a picture to a user:
  116. <programlisting>
  117. <![CDATA[<user nick="Ben" pic="ben_holiday.jpg">]]>
  118. </programlisting>
  119. If you have a larger picture of the user as well, you can make the picture
  120. on the stats page link to it:
  121. <programlisting>
  122. <![CDATA[<user nick="Ben" pic="ben_holiday.jpg" bigpic="ben-big.jpg">]]>
  123. </programlisting>
  124. You can also set a user's sex:
  125. <programlisting>
  126. <![CDATA[<user nick="Ben" sex="m">]]>
  127. </programlisting>
  128. Also you can add links to URLs and e-mails:
  129. <programlisting>
  130. <![CDATA[<user nick="Christine" link="http://www.christine.com">]]>
  131. </programlisting>
  132. or
  133. <programlisting>
  134. <![CDATA[<user nick="Chris" link="chris@host.com">]]>
  135. </programlisting>
  136. The last thing you can do is to ignore nicks (for example bots):
  137. <programlisting>
  138. <![CDATA[<user nick="nameofbot" ignore="y">]]>
  139. </programlisting>
  140. You don't have to do all this in many lines, you could just as easily do:
  141. <programlisting>
  142. <![CDATA[<user nick="Joe" alias="Joe^away Joe^work" pic="joe.jpg" link="joe@joe.com" sex="m">]]>
  143. </programlisting>
  144. (Here the aliases is a space separated list of nicks, that also works! But *
  145. as a wildcard is smarter, but also slower).
  146. </para>
  147. </sect1>
  148. <sect1 id="global-options">
  149. <title>Setting global options</title>
  150. <para>
  151. Many times, it will be useful to set up global options, global options
  152. are set like this:
  153. <programlisting>
  154. <![CDATA[<set option="VALUE">]]>
  155. </programlisting>
  156. Any global option will override anything defined with in channel
  157. elements (see <xref linkend="setting-up-a-channel">)
  158. </para>
  159. <para>
  160. For example, to change the background color of the stats page, you
  161. could do:
  162. <programlisting>
  163. <![CDATA[<set bgcolor="black">]]>
  164. </programlisting>
  165. You can set many options in a single <command>set</command>:
  166. <programlisting>
  167. <![CDATA[<set lang="DE" timeoffset="+1">]]>
  168. </programlisting>
  169. The above will set the language on the statistics page to DE (Deutch,
  170. German) and set the timeoffset to +1.
  171. All options available are mentioned in the reference documentation.
  172. </sect1>
  173. <sect1 id="ignoring-links">
  174. <title>Ignoring links</title>
  175. <para>
  176. It's possible to ignore links in the "Most referenced URLs" section:
  177. <programlisting>
  178. <![CDATA[
  179. <link url="http://www.slashdot.org" ignore="y">
  180. ]]>
  181. </programlisting>
  182. </para>
  183. </sect1>
  184. <sect1 id="using-css">
  185. <title>Changing the layout of your stats page</title>
  186. <para>
  187. The standard layout and colors in the outputted HTML page is made to be
  188. somewhat clean and neutral. But you have the chance to change the layout
  189. yourself.
  190. </para>
  191. <para>
  192. There is a few predefined colorschemes for you to use, use the
  193. ColorScheme option when using them, the available colorschemes are:
  194. default, darkgalaxy.
  195. </para>
  196. <para>
  197. When changing it, you need a fair knowledge of CSS (Cascading Style
  198. Sheets). CSS is what most of the web uses today to define styles and
  199. layout on HTML pages.
  200. </para>
  201. <para>
  202. With the pisg distribution, look in the <filename>layout</filename>
  203. directory. In it resides <filename>default.css</filename> which is the
  204. file being included onto the HTML page. Open it in a text editor like
  205. vi or notepad. Then change it until you're happy with it. Be aware that
  206. you might want to look at the hicell and hicell2 options through
  207. pisg.cfg for changing the last two colors.
  208. </para>
  209. <para>
  210. If you have created a nice stylesheet which other can take advantage of,
  211. you are encouraged to send it to the pisg mailing list so it can be
  212. distributed with the next version of pisg.
  213. </para>
  214. </sect1>
  215. <sect1 id="mailing-list-and-bugs">
  216. <title>Obtaining help and reporting bugs</title>
  217. <para>
  218. If your problem could not be resolved through here, then you should send
  219. an e-mail to the pisg mailing list. You can subscribe and see more info
  220. at <ulink
  221. url="http://lists.sourceforge.net/lists/listinfo/pisg-general">http://lists.sourceforge.net/lists/listinfo/pisg-general</ulink>.
  222. </para>
  223. <para>
  224. If you believe that you have found a bug, you should use the Sourceforge
  225. <ulink
  226. url="http://sourceforge.net/tracker/?group_id=31862&amp;atid=403711">bug
  227. tracking system.</ulink>
  228. </para>
  229. </sect1>
  230. </chapter>
  231. <chapter id="reference">
  232. <title>Reference for configuration options</title>
  233. <!-- *** CHANNEL *** -->
  234. <refentry id="Channel">
  235. <refmeta> <refentrytitle>Channel</refentrytitle> </refmeta>
  236. <refnamediv>
  237. <refname>Channel</refname>
  238. <refpurpose>define channel name</refpurpose>
  239. </refnamediv>
  240. <refsynopsisdiv><programlisting>
  241. <![CDATA[
  242. <channel="#channel">
  243. Logfile = "channel.log"
  244. Format = "mIRC"
  245. Maintainer = "John"
  246. </channel>
  247. <set channel="#channelname">
  248. ]]>
  249. </programlisting></refsynopsisdiv>
  250. <refsect1>
  251. <title>Description</title>
  252. <para>
  253. <command>Channel</command> is used in two contexts, globally when using
  254. &lt;set&gt; and when defining new channels. It sets the name of the
  255. channel.
  256. </para>
  257. </refsect1>
  258. <refsect1>
  259. <title>Default</title>
  260. <para> Unset </para>
  261. </refsect1>
  262. </refentry>
  263. <!-- *** LOGSUFFIX *** -->
  264. <refentry id="LogSuffix">
  265. <refmeta> <refentrytitle>LogSuffix</refentrytitle> </refmeta>
  266. <refnamediv>
  267. <refname>LogSuffix</refname>
  268. <refpurpose>Regex to sort logfiles by format month|day|year</refpurpose>
  269. </refnamediv>
  270. <refsynopsisdiv><programlisting>
  271. <![CDATA[
  272. <set LogSuffix="\.\d\d([A-Za-z]+)\d\d\d\d||\.(\d\d)[A-Za-z]+\d\d\d\d||\.\d\d[A-Za-z]+(\d\d\d\d)">
  273. ]]>
  274. </programlisting></refsynopsisdiv>
  275. <refsect1>
  276. <title>Description</title>
  277. <para>
  278. <command>LogSuffix</command> is used to define the suffix of a logfile,
  279. it only works when <command>LogDir</command> is defined. The example in
  280. the synopsis is for the eggdrop bots default foramt.
  281. </para>
  282. </refsect1>
  283. <refsect1>
  284. <title>Default</title>
  285. <para> Unset </para>
  286. </refsect1>
  287. </refentry>
  288. <!-- *** FORMAT *** -->
  289. <refentry id="Format">
  290. <refmeta> <refentrytitle>Format</refentrytitle> </refmeta>
  291. <refnamediv>
  292. <refname>Format</refname>
  293. <refpurpose>the logfile format</refpurpose>
  294. </refnamediv>
  295. <refsynopsisdiv><programlisting>
  296. <![CDATA[
  297. <channel="#channel">
  298. Logfile = "channel.log"
  299. Format = "eggdrop"
  300. Maintainer = "John"
  301. </channel>
  302. <set Format="mIRC">
  303. ]]>
  304. </programlisting></refsynopsisdiv>
  305. <refsect1>
  306. <title>Description</title>
  307. <para>
  308. <command>Format</command> is used to define the format of the logfile,
  309. pisg supports a various number of different logfiles, see the FORMATS
  310. file included with the pisg distribution.
  311. </para>
  312. </refsect1>
  313. <refsect1>
  314. <title>Default</title>
  315. <para> mIRC </para>
  316. </refsect1>
  317. </refentry>
  318. <!-- *** FORMAT *** -->
  319. <refentry id="ColorScheme">
  320. <refmeta> <refentrytitle>ColorScheme</refentrytitle> </refmeta>
  321. <refnamediv>
  322. <refname>ColorScheme</refname>
  323. <refpurpose>use a different colorscheme for stats page</refpurpose>
  324. </refnamediv>
  325. <refsynopsisdiv><programlisting>
  326. <![CDATA[
  327. <channel="#channel">
  328. Logfile = "channel.log"
  329. ColorScheme = "darkgalaxy"
  330. Maintainer = "John"
  331. </channel>
  332. <set ColorScheme="default">
  333. ]]>
  334. </programlisting></refsynopsisdiv>
  335. <refsect1>
  336. <title>Description</title>
  337. <para>
  338. <command>ColorScheme</command> is used to define the colorscheme used
  339. for the statistics page. Actually it's the CSS file being included.
  340. Available options are: default, darkgalaxy.
  341. </para>
  342. </refsect1>
  343. <refsect1>
  344. <title>Default</title>
  345. <para> default </para>
  346. </refsect1>
  347. </refentry>
  348. <!-- *** NETWORK *** -->
  349. <refentry id="Network">
  350. <refmeta> <refentrytitle>Network</refentrytitle> </refmeta>
  351. <refnamediv>
  352. <refname>Network</refname>
  353. <refpurpose>the IRC network of the channel</refpurpose>
  354. </refnamediv>
  355. <refsynopsisdiv><programlisting>
  356. <![CDATA[
  357. <channel="#channel">
  358. Logfile = "channel.log"
  359. Format = "eggdrop"
  360. Network = "Undernet"
  361. </channel>
  362. <set Network="Quakenet">
  363. ]]>
  364. </programlisting></refsynopsisdiv>
  365. <refsect1>
  366. <title>Description</title>
  367. <para>
  368. <command>Network</command> is used to set the network which the channel
  369. resides on, this name is displayed on the stats page.
  370. </para>
  371. </refsect1>
  372. <refsect1>
  373. <title>Default</title>
  374. <para> SomeIRCNetwork </para>
  375. </refsect1>
  376. </refentry>
  377. <!-- *** OUTPUTFILE *** -->
  378. <refentry id="OutputFile">
  379. <refmeta> <refentrytitle>OutputFile</refentrytitle> </refmeta>
  380. <refnamediv>
  381. <refname>OutputFile</refname>
  382. <refpurpose>name of the generated HTML page</refpurpose>
  383. </refnamediv>
  384. <refsynopsisdiv><programlisting>
  385. <![CDATA[
  386. <channel="#channel">
  387. Logfile = "channel.log"
  388. Format = "eggdrop"
  389. OutputFile = "mychan.html"
  390. </channel>
  391. <set OutputFile="mychan.html">
  392. ]]>
  393. </programlisting></refsynopsisdiv>
  394. <refsect1>
  395. <title>Description</title>
  396. <para>
  397. <command>OutputFile</command> is used to define the name of the
  398. generated statistics page.
  399. </para>
  400. </refsect1>
  401. <refsect1>
  402. <title>Default</title>
  403. <para> index.html </para>
  404. </refsect1>
  405. </refentry>
  406. <!-- *** MAINTAINER *** -->
  407. <refentry id="Maintainer">
  408. <refmeta> <refentrytitle>Maintainer</refentrytitle> </refmeta>
  409. <refnamediv>
  410. <refname>Maintainer</refname>
  411. <refpurpose>name of the maintainer</refpurpose>
  412. </refnamediv>
  413. <refsynopsisdiv><programlisting>
  414. <![CDATA[
  415. <channel="#channel">
  416. Logfile = "channel.log"
  417. Format = "mIRC"
  418. Maintainer = "Benny"
  419. </channel>
  420. <set Maintainer="Benny">
  421. ]]>
  422. </programlisting></refsynopsisdiv>
  423. <refsect1>
  424. <title>Description</title>
  425. <para>
  426. <command>Maintainer</command> is used to define the name of the
  427. maintaner of the statistics page, this can be either the person
  428. generating the stats or the bot/client doing the logging.
  429. The maintainer is displayed in the outputted stats page.
  430. </para>
  431. </refsect1>
  432. <refsect1>
  433. <title>Default</title>
  434. <para> MAINTAINER </para>
  435. </refsect1>
  436. </refentry>
  437. <!-- *** LANG *** -->
  438. <refentry id="Lang">
  439. <refmeta> <refentrytitle>Lang</refentrytitle> </refmeta>
  440. <refnamediv>
  441. <refname>Lang</refname>
  442. <refpurpose>define the language / translation to use</refpurpose>
  443. </refnamediv>
  444. <refsynopsisdiv><programlisting>
  445. <![CDATA[
  446. <channel="#channel">
  447. Logfile = "channel.log"
  448. Format = "mIRC"
  449. Lang = "DE"
  450. </channel>
  451. <set Lang="FR">
  452. ]]>
  453. </programlisting></refsynopsisdiv>
  454. <refsect1>
  455. <title>Description</title>
  456. <para>
  457. <command>Lang</command> is used to define the language translation to
  458. use, if the language support is there, the text on the stats page will
  459. be outputted in that language. All supported languages is mentioned in
  460. the lang.txt file with the pisg distribution. Some of the languages
  461. supported is: EN | DE | DK | FR | ES | PL | PT | NO | NL | SE | EE | IT
  462. | HU | SI | FI
  463. </para>
  464. </refsect1>
  465. <refsect1>
  466. <title>Default</title>
  467. <para> EN (English) </para>
  468. </refsect1>
  469. </refentry>
  470. <!-- *** PAGEHEAD *** -->
  471. <refentry id="pagehead">
  472. <refmeta> <refentrytitle>PageHead</refentrytitle> </refmeta>
  473. <refnamediv>
  474. <refname>PageHead</refname>
  475. <refpurpose>define a file as page header</refpurpose>
  476. </refnamediv>
  477. <refsynopsisdiv><programlisting>
  478. <![CDATA[
  479. <channel="#channel">
  480. Logfile = "chaNnel.log"
  481. Format = "mIRC"
  482. OutputFile = "stats.html"
  483. PageHead = "myheader.txt"
  484. </channel>
  485. <set PageHead="someheader.txt">
  486. ]]>
  487. </programlisting></refsynopsisdiv>
  488. <refsect1>
  489. <title>Description</title>
  490. <para>
  491. <command>PageHead</command> is used to include a file in the stats page,
  492. for example an introduction text, a link to an image or a banner. The
  493. file can hold anything, it will be included raw in the stats page -
  494. so HTML should be preferred. The file will be included in the top of
  495. the page. This option is the opposite of <command>PageFoot</command>.
  496. </para>
  497. </refsect1>
  498. <refsect1>
  499. <title>Default</title>
  500. <para> none </para>
  501. </refsect1>
  502. </refentry>
  503. <!-- *** PAGEFOOT *** -->
  504. <refentry id="PageFoot">
  505. <refmeta> <refentrytitle>PageFoot</refentrytitle> </refmeta>
  506. <refnamediv>
  507. <refname>PageFoot</refname>
  508. <refpurpose>define a file as page footer</refpurpose>
  509. </refnamediv>
  510. <refsynopsisdiv><programlisting>
  511. <![CDATA[
  512. <channel="#channel">
  513. Logfile = "channel.log"
  514. Format = "mIRC"
  515. outputfile = "stats.html"
  516. PageFoot = "myfooter.txt"
  517. </channel>
  518. <set PageFoot="somefooter.txt">
  519. ]]>
  520. </programlisting></refsynopsisdiv>
  521. <refsect1>
  522. <title>Description</title>
  523. <para>
  524. <command>PageFoot</command> is used to include a file in the stats page,
  525. for example an introduction text, a link to an image or a banner. The
  526. file can hold anything, it will be included raw in the stats page -
  527. so HTML should be preferred. The file will be included in the bottom of
  528. the page. This option is the opposite of <command>PageHead</command>.
  529. </para>
  530. </refsect1>
  531. <refsect1>
  532. <title>Default</title>
  533. <para> none </para>
  534. </refsect1>
  535. </refentry>
  536. <!-- *** IMAGEPATH *** -->
  537. <refentry id="ImagePath">
  538. <refmeta> <refentrytitle>ImagePath</refentrytitle> </refmeta>
  539. <refnamediv>
  540. <refname>ImagePath</refname>
  541. <refpurpose>path to user pictures</refpurpose>
  542. </refnamediv>
  543. <refsynopsisdiv><programlisting>
  544. <![CDATA[
  545. <channel="#channel">
  546. Logfile = "channel.log"
  547. Format = "mIRC"
  548. ImagePath = "userpics/"
  549. </channel>
  550. <set ImagePath="alt_users/">
  551. ]]>
  552. </programlisting></refsynopsisdiv>
  553. <refsect1>
  554. <title>Description</title>
  555. <para>
  556. <command>ImagePath</command> defines an alternative path to where user
  557. pictures is located. The default is that user pictures is located in the
  558. same directory as the HTML page.
  559. </para>
  560. </refsect1>
  561. <refsect1>
  562. <title>Default</title>
  563. <para> current directory </para>
  564. </refsect1>
  565. </refentry>
  566. <!-- *** DEFAULTPIC *** -->
  567. <refentry id="DefaultPic">
  568. <refmeta> <refentrytitle>DefaultPic</refentrytitle> </refmeta>
  569. <refnamediv>
  570. <refname>DefaultPic</refname>
  571. <refpurpose>use a default user picture</refpurpose>
  572. </refnamediv>
  573. <refsynopsisdiv><programlisting>
  574. <![CDATA[
  575. <channel="#channel">
  576. Logfile = "channel.log"
  577. Format = "mIRC"
  578. DefaultPic = "not_available.jpg"
  579. </channel>
  580. <set DefaultPic="unknown.gif">
  581. ]]>
  582. </programlisting></refsynopsisdiv>
  583. <refsect1>
  584. <title>Description</title>
  585. <para>
  586. <command>DefaultPic</command> defines a picture to be displayed for all
  587. users which have no other picture defined in the <command>user</command>
  588. element. This is good for showing "No picture available" or something.
  589. </para>
  590. </refsect1>
  591. <refsect1>
  592. <title>Default</title>
  593. <para> unset </para>
  594. </refsect1>
  595. </refentry>
  596. <!-- *** LOGDIR *** -->
  597. <refentry id="LogDir">
  598. <refmeta> <refentrytitle>LogDir</refentrytitle> </refmeta>
  599. <refnamediv>
  600. <refname>LogDir</refname>
  601. <refpurpose>parse a directory full of logs</refpurpose>
  602. </refnamediv>
  603. <refsynopsisdiv><programlisting>
  604. <![CDATA[
  605. <channel="#channel">
  606. LogDir="/home/foo/eggdrop/logs/"
  607. Format = "eggdrop"
  608. </channel>
  609. <set LogDir="dailylogs/">
  610. ]]>
  611. </programlisting></refsynopsisdiv>
  612. <refsect1>
  613. <title>Description</title>
  614. <para>
  615. When <command>LogDir</command> is defined to valid path to a directory,
  616. then pisg will run through that directory, parse all logfiles in it and
  617. create 1 HTML from it. Useful with for example eggdrop logs.
  618. </para>
  619. </refsect1>
  620. <refsect1>
  621. <title>Default</title>
  622. <para> unset </para>
  623. </refsect1>
  624. </refentry>
  625. <!-- *** LogPrefix *** -->
  626. <refentry id="LogPrefix">
  627. <refmeta> <refentrytitle>LogPrefix</refentrytitle> </refmeta>
  628. <refnamediv>
  629. <refname>LogPrefix</refname>
  630. <refpurpose>only parse logs LogPrefixed with a userdefined string</refpurpose>
  631. </refnamediv>
  632. <refsynopsisdiv><programlisting>
  633. <![CDATA[
  634. <channel="#channel">
  635. LogDir="/home/foo/eggdrop/logs/"
  636. Format = "eggdrop"
  637. LogPrefix = "logjun"
  638. </channel>
  639. <set LogPrefix="logjanuary">
  640. ]]>
  641. </programlisting></refsynopsisdiv>
  642. <refsect1>
  643. <title>Description</title>
  644. <para>
  645. When using the <command>LogDir</command> option and you only want to use
  646. a slew of the files in it, you can have pisg choose only files which are
  647. prefixed with a special string.
  648. </para>
  649. </refsect1>
  650. <refsect1>
  651. <title>Default</title>
  652. <para> unset </para>
  653. </refsect1>
  654. </refentry>
  655. <!-- *** TIMEOFFSET *** -->
  656. <refentry id="TimeOffset">
  657. <refmeta> <refentrytitle>TimeOffset</refentrytitle> </refmeta>
  658. <refnamediv>
  659. <refname>TimeOffset</refname>
  660. <refpurpose>use a different time zone than the local machine</refpurpose>
  661. </refnamediv>
  662. <refsynopsisdiv><programlisting>
  663. <![CDATA[
  664. <channel="#channel">
  665. Logfile = "channel.log"
  666. Format = "mIRC"
  667. Maintainer = "John"
  668. TimeOffset = "+5"
  669. </channel>
  670. <set TimeOffset="+2">
  671. ]]>
  672. </programlisting></refsynopsisdiv>
  673. <refsect1>
  674. <title>Description</title>
  675. <para>
  676. By default, pisg uses the time of the local machine to display the time
  677. of the generated stats. Sometimes when you have a shell on an external
  678. box, and it's in another country, you want to use another time. This is
  679. accomplished by the <command>TimeOffset</command> command.
  680. </para>
  681. </refsect1>
  682. <refsect1>
  683. <title>Default</title>
  684. <para> +0 </para>
  685. </refsect1>
  686. </refentry>
  687. <!-- *** SHOWACTIVETIMES *** -->
  688. <refentry id="ShowActiveTimes">
  689. <refmeta> <refentrytitle>ShowActiveTimes</refentrytitle> </refmeta>
  690. <refnamediv>
  691. <refname>ShowActiveTimes</refname>
  692. <refpurpose>enable/disable "Most Active Times"</refpurpose>
  693. </refnamediv>
  694. <refsynopsisdiv><programlisting>
  695. <![CDATA[
  696. <channel="#channel">
  697. Logfile = "channel.log"
  698. Format = "xchat"
  699. ShowActiveTimes = "0"
  700. </channel>
  701. <set ShowActiveTimes="1">
  702. ]]>
  703. </programlisting></refsynopsisdiv>
  704. <refsect1>
  705. <title>Description</title>
  706. <para>
  707. With this option you can disable the "Most Active Times" section on the
  708. stats page. It will simply disappear when specifying 0.
  709. </para>
  710. </refsect1>
  711. <refsect1>
  712. <title>Default</title>
  713. <para> 1 (enabled) </para>
  714. </refsect1>
  715. </refentry>
  716. <!-- *** SHOWBIGNUMBERS *** -->
  717. <refentry id="ShowBigNumbers">
  718. <refmeta> <refentrytitle>ShowBigNumbers</refentrytitle> </refmeta>
  719. <refnamediv>
  720. <refname>ShowBigNumbers</refname>
  721. <refpurpose>enable/disable "Big Numbers" sections</refpurpose>
  722. </refnamediv>
  723. <refsynopsisdiv><programlisting>
  724. <![CDATA[
  725. <channel="#channel">
  726. Logfile = "channel.log"
  727. Format = "xchat"
  728. ShowBigNumbers = "0"
  729. </channel>
  730. <set ShowBigNumbers="1">
  731. ]]>
  732. </programlisting></refsynopsisdiv>
  733. <refsect1>
  734. <title>Description</title>
  735. <para>
  736. With this option you can disable the "Big Numbers" and "Other
  737. Interesting numbers" sections on the stats page. They will simply
  738. disappear when specifying 0.
  739. </para>
  740. </refsect1>
  741. <refsect1>
  742. <title>Default</title>
  743. <para> 1 (enabled) </para>
  744. </refsect1>
  745. </refentry>
  746. <!-- *** SHOWTOPICS *** -->
  747. <refentry id="ShowTopics">
  748. <refmeta> <refentrytitle>ShowTopics</refentrytitle> </refmeta>
  749. <refnamediv>
  750. <refname>ShowTopics</refname>
  751. <refpurpose>enable/disable "Latest topics" sections</refpurpose>
  752. </refnamediv>
  753. <refsynopsisdiv><programlisting>
  754. <![CDATA[
  755. <channel="#channel">
  756. Logfile = "channel.log"
  757. Format = "xchat"
  758. ShowTopics = "0"
  759. </channel>
  760. <set ShowTopics="1">
  761. ]]>
  762. </programlisting></refsynopsisdiv>
  763. <refsect1>
  764. <title>Description</title>
  765. <para>
  766. With this option you can disable the "Latest topics" section on the
  767. stats page. It will simply disappear when specifying 0.
  768. </para>
  769. </refsect1>
  770. <refsect1>
  771. <title>Default</title>
  772. <para> 1 (enabled) </para>
  773. </refsect1>
  774. </refentry>
  775. <!-- *** SHOWWPL *** -->
  776. <refentry id="ShowWpl">
  777. <refmeta> <refentrytitle>ShowWpl</refentrytitle> </refmeta>
  778. <refnamediv>
  779. <refname>ShowWpl</refname>
  780. <refpurpose>enable/disable "words per line"</refpurpose>
  781. </refnamediv>
  782. <refsynopsisdiv><programlisting>
  783. <![CDATA[
  784. <channel="#channel">
  785. Logfile = "channel.log"
  786. Format = "xchat"
  787. ShowWpl = "0"
  788. </channel>
  789. <set ShowWpl="1">
  790. ]]>
  791. </programlisting></refsynopsisdiv>
  792. <refsect1>
  793. <title>Description</title>
  794. <para>
  795. With this option you can enable the "words per line" coloumn in the
  796. "Most Active Nicks" section. It will add a column describing the average
  797. words per line for a person.
  798. </para>
  799. </refsect1>
  800. <refsect1>
  801. <title>Default</title>
  802. <para> 0 (disabled) </para>
  803. </refsect1>
  804. </refentry>
  805. <!-- *** SHOWCPL *** -->
  806. <refentry id="ShowCpl">
  807. <refmeta> <refentrytitle>ShowCpl</refentrytitle> </refmeta>
  808. <refnamediv>
  809. <refname>ShowCpl</refname>
  810. <refpurpose>enable/disable "characters per line"</refpurpose>
  811. </refnamediv>
  812. <refsynopsisdiv><programlisting>
  813. <![CDATA[
  814. <channel="#channel">
  815. Logfile = "channel.log"
  816. Format = "xchat"
  817. ShowCpl = "0"
  818. </channel>
  819. <set ShowCpl="1">
  820. ]]>
  821. </programlisting></refsynopsisdiv>
  822. <refsect1>
  823. <title>Description</title>
  824. <para>
  825. With this option you can enable the "characters per line" coloumn in the
  826. "Most Active Nicks" section. It will add a column describing the average
  827. number of characters per line for a person.
  828. </para>
  829. </refsect1>
  830. <refsect1>
  831. <title>Default</title>
  832. <para> 0 (disabled) </para>
  833. </refsect1>
  834. </refentry>
  835. <!-- *** SHOWWORDS *** -->
  836. <refentry id="ShowWords">
  837. <refmeta> <refentrytitle>ShowWords</refentrytitle> </refmeta>
  838. <refnamediv>
  839. <refname>ShowWords</refname>
  840. <refpurpose>enable/disable "number of words"</refpurpose>
  841. </refnamediv>
  842. <refsynopsisdiv><programlisting>
  843. <![CDATA[
  844. <channel="#channel">
  845. Logfile = "channel.log"
  846. Format = "xchat"
  847. ShowWords = "0"
  848. </channel>
  849. <set ShowWords="1">
  850. ]]>
  851. </programlisting></refsynopsisdiv>
  852. <refsect1>
  853. <title>Description</title>
  854. <para>
  855. The <command>ShowWords</command> option adds a column to the "Most
  856. Active Nicks" list which list the total number of words a user has
  857. typed.
  858. </para>
  859. </refsect1>
  860. <refsect1>
  861. <title>Default</title>
  862. <para> 0 (disabled) </para>
  863. </refsect1>
  864. </refentry>
  865. <!-- *** ShowLastSeen *** -->
  866. <refentry id="ShowLastSeen">
  867. <refmeta> <refentrytitle>ShowLastSeen</refentrytitle> </refmeta>
  868. <refnamediv>
  869. <refname>ShowLastSeen</refname>
  870. <refpurpose>show when a user was last seen on a channel</refpurpose>
  871. </refnamediv>
  872. <refsynopsisdiv><programlisting>
  873. <![CDATA[
  874. <channel="#channel">
  875. Logfile = "channel.log"
  876. Format = "xchat"
  877. ShowLastSeen = "0"
  878. </channel>
  879. <set ShowLastSeen="1">
  880. ]]>
  881. </programlisting></refsynopsisdiv>
  882. <refsect1>
  883. <title>Description</title>
  884. <para>
  885. With this option enabled, a column will be added to the "Most Active
  886. Nicks" section to display when a user was last seen. Eg. "2 days ago".
  887. </para>
  888. </refsect1>
  889. <refsect1>
  890. <title>Default</title>
  891. <para> 0 (disabled) </para>
  892. </refsect1>
  893. </refentry>
  894. <!-- *** SHOWTIME *** -->
  895. <refentry id="ShowTime">
  896. <refmeta> <refentrytitle>ShowTime</refentrytitle> </refmeta>
  897. <refnamediv>
  898. <refname>ShowTime</refname>
  899. <refpurpose>show when a nick was active</refpurpose>
  900. </refnamediv>
  901. <refsynopsisdiv><programlisting>
  902. <![CDATA[
  903. <channel="#channel">
  904. Logfile = "channel.log"
  905. Format = "xchat"
  906. ShowTime = "0"
  907. </channel>
  908. <set ShowTime="1">
  909. ]]>
  910. </programlisting></refsynopsisdiv>
  911. <refsect1>
  912. <title>Description</title>
  913. <para>
  914. The default behaviour is to add a column to the "Most Active Nicks"
  915. section displaying a fancy timebar to show when a user was active. With
  916. this option it can be disabled.
  917. </para>
  918. </refsect1>
  919. <refsect1>
  920. <title>Default</title>
  921. <para> 1 (enabled) </para>
  922. </refsect1>
  923. </refentry>
  924. <!-- *** SHOWLINETIME *** -->
  925. <refentry id="ShowLineTime">
  926. <refmeta> <refentrytitle>ShowLineTime</refentrytitle> </refmeta>
  927. <refnamediv>
  928. <refname>ShowLineTime</refname>
  929. <refpurpose>mIRCStats like behaviour of timebar</refpurpose>
  930. </refnamediv>
  931. <refsynopsisdiv><programlisting>
  932. <![CDATA[
  933. <channel="#channel">
  934. Logfile = "channel.log"
  935. Format = "bobot"
  936. ShowLineTime = "0"
  937. </channel>
  938. <set ShowLineTime="1">
  939. ]]>
  940. </programlisting></refsynopsisdiv>
  941. <refsect1>
  942. <title>Description</title>
  943. <para>
  944. The default behaviour is to add a column to the "Most Active Nicks"
  945. section displaying a fancy linetimebar to show when a user was active.
  946. With this option it can be done the same way as mIRCStats does it; that
  947. is, by putting that timebar next to the number of lines, in the same
  948. column.
  949. </para>
  950. </refsect1>
  951. <refsect1>
  952. <title>Default</title>
  953. <para> 0 (disabled) </para>
  954. </refsect1>
  955. </refentry>
  956. <!-- *** SHOWRANDQUOTE *** -->
  957. <refentry id="ShowRandQuote">
  958. <refmeta> <refentrytitle>ShowRandQuote</refentrytitle> </refmeta>
  959. <refnamediv>
  960. <refname>ShowRandQuote</refname>
  961. <refpurpose>enable or disable the random quotes</refpurpose>
  962. </refnamediv>
  963. <refsynopsisdiv><programlisting>
  964. <![CDATA[
  965. <channel="#channel">
  966. Logfile = "channel.log"
  967. Format = "bobot"
  968. ShowRandQuote = "0"
  969. </channel>
  970. <set ShowRandQuote="1">
  971. ]]>
  972. </programlisting></refsynopsisdiv>
  973. <refsect1>
  974. <title>Description</title>
  975. <para>
  976. The default behaviour is to add a column to the "Most Active Nicks"
  977. section displaying a users random quote. With this option it can be
  978. disabled.
  979. </para>
  980. </refsect1>
  981. <refsect1>
  982. <title>Default</title>
  983. <para> 1 (enabled) </para>
  984. </refsect1>
  985. </refentry>
  986. <!-- *** SHOWLEGEND *** -->
  987. <refentry id="ShowLegend">
  988. <refmeta> <refentrytitle>ShowLegend</refentrytitle> </refmeta>
  989. <refnamediv>
  990. <refname>ShowLegend</refname>
  991. <refpurpose>enable or disable the legend of the timebars</refpurpose>
  992. </refnamediv>
  993. <refsynopsisdiv><programlisting>
  994. <![CDATA[
  995. <channel="#channel">
  996. Logfile = "channel.log"
  997. Format = "bobot"
  998. ShowLegend = "0"
  999. </channel>
  1000. <set ShowLegend="1">
  1001. ]]>
  1002. </programlisting></refsynopsisdiv>
  1003. <refsect1>
  1004. <title>Description</title>
  1005. <para>
  1006. By default, pisg shows a legend below the "Most Active Times" displaying
  1007. what the different colors means. With this option it can be disabled.
  1008. </para>
  1009. </refsect1>
  1010. <refsect1>
  1011. <title>Default</title>
  1012. <para> 1 (enabled) </para>
  1013. </refsect1>
  1014. </refentry>
  1015. <!-- *** SHOWKICKLINE *** -->
  1016. <refentry id="ShowKickLine">
  1017. <refmeta> <refentrytitle>ShowKickLine</refentrytitle> </refmeta>
  1018. <refnamediv>
  1019. <refname>ShowKickLine</refname>
  1020. <refpurpose>enable or disable the kickline</refpurpose>
  1021. </refnamediv>
  1022. <refsynopsisdiv><programlisting>
  1023. <![CDATA[
  1024. <channel="#channel">
  1025. Logfile = "channel.log"
  1026. Format = "bobot"
  1027. ShowKickLine = "0"
  1028. </channel>
  1029. <set ShowKickLine="1">
  1030. ]]>
  1031. </programlisting></refsynopsisdiv>
  1032. <refsect1>
  1033. <title>Description</title>
  1034. <para>
  1035. By default, pisg shows an example kickline in the "Most kicked"-stats.
  1036. With this option it can be disabled.
  1037. </para>
  1038. </refsect1>
  1039. <refsect1>
  1040. <title>Default</title>
  1041. <para> 1 (enabled) </para>
  1042. </refsect1>
  1043. </refentry>
  1044. <!-- *** SHOWACTIONLINE *** -->
  1045. <refentry id="ShowActionLine">
  1046. <refmeta> <refentrytitle>ShowActionLine</refentrytitle> </refmeta>
  1047. <refnamediv>
  1048. <refname>ShowActionLine</refname>
  1049. <refpurpose>enable or disable the actionline</refpurpose>
  1050. </refnamediv>
  1051. <refsynopsisdiv><programlisting>
  1052. <![CDATA[
  1053. <channel="#channel">
  1054. Logfile = "channel.log"
  1055. Format = "bobot"
  1056. ShowActionLine = "0"
  1057. </channel>
  1058. <set ShowActionLine="1">
  1059. ]]>
  1060. </programlisting></refsynopsisdiv>
  1061. <refsect1>
  1062. <title>Description</title>
  1063. <para>
  1064. By default, pisg shows an example actionline in the "Most actions"-stats.
  1065. With this option it can be disabled.
  1066. </para>
  1067. </refsect1>
  1068. <refsect1>
  1069. <title>Default</title>
  1070. <para> 1 (enabled) </para>
  1071. </refsect1>
  1072. </refentry>
  1073. <!-- *** SHOWSHOUTLINE *** -->
  1074. <refentry id="ShowShoutLine">
  1075. <refmeta> <refentrytitle>ShowShoutLine</refentrytitle> </refmeta>
  1076. <refnamediv>
  1077. <refname>ShowShoutLine</refname>
  1078. <refpurpose>enable or disable the shoutline</refpurpose>
  1079. </refnamediv>
  1080. <refsynopsisdiv><programlisting>
  1081. <![CDATA[
  1082. <channel="#channel">
  1083. Logfile = "channel.log"
  1084. Format = "bobot"
  1085. ShowShoutLine = "0"
  1086. </channel>
  1087. <set ShowShoutLine="1">
  1088. ]]>
  1089. </programlisting></refsynopsisdiv>
  1090. <refsect1>
  1091. <title>Description</title>
  1092. <para>
  1093. By default, pisg shows an example shoutline in the "Most shouting
  1094. people"-stats. With this option it can be disabled.
  1095. </para>
  1096. </refsect1>
  1097. <refsect1>
  1098. <title>Default</title>
  1099. <para> 1 (enabled) </para>
  1100. </refsect1>
  1101. </refentry>
  1102. <!-- *** SHOWVIOLENTLINES *** -->
  1103. <refentry id="ShowViolentLines">
  1104. <refmeta> <refentrytitle>ShowViolentLines</refentrytitle> </refmeta>
  1105. <refnamediv>
  1106. <refname>ShowViolentLines</refname>
  1107. <refpurpose>enable or disable the violentlines</refpurpose>
  1108. </refnamediv>
  1109. <refsynopsisdiv><programlisting>
  1110. <![CDATA[
  1111. <channel="#channel">
  1112. Logfile = "channel.log"
  1113. Format = "bobot"
  1114. ShowViolentLines = "0"
  1115. </channel>
  1116. <set ShowViolentLines="1">
  1117. ]]>
  1118. </programlisting></refsynopsisdiv>
  1119. <refsect1>
  1120. <title>Description</title>
  1121. <para>
  1122. By default, pisg shows example violentlines in the "Most aggresive"
  1123. and "Most attacked"-stats. With this option it can be disabled.
  1124. </para>
  1125. </refsect1>
  1126. <refsect1>
  1127. <title>Default</title>
  1128. <para> 1 (enabled) </para>
  1129. </refsect1>
  1130. </refentry>
  1131. <!-- *** SHOWMUW *** -->
  1132. <refentry id="ShowMuw">
  1133. <refmeta> <refentrytitle>ShowMuw</refentrytitle> </refmeta>
  1134. <refnamediv>
  1135. <refname>ShowMuw</refname>
  1136. <refpurpose>enable or disable "Most used words"</refpurpose>
  1137. </refnamediv>
  1138. <refsynopsisdiv><programlisting>
  1139. <![CDATA[
  1140. <channel="#channel">
  1141. Logfile = "channel.log"
  1142. Format = "xchat"
  1143. ShowMuw = "0"
  1144. </channel>
  1145. <set ShowMuw="1">
  1146. ]]>
  1147. </programlisting></refsynopsisdiv>
  1148. <refsect1>
  1149. <title>Description</title>
  1150. <para>
  1151. By default, pisg adds an "Most used words" section to the stats page.
  1152. With this option you can disable it from being shown.
  1153. </para>
  1154. </refsect1>
  1155. <refsect1>
  1156. <title>Default</title>
  1157. <para> 1 (enabled) </para>
  1158. </refsect1>
  1159. </refentry>
  1160. <!-- *** SHOWMRN *** -->
  1161. <refentry id="ShowMrn">
  1162. <refmeta> <refentrytitle>ShowMrn</refentrytitle> </refmeta>
  1163. <refnamediv>
  1164. <refname>ShowMrn</refname>
  1165. <refpurpose>enable or disable "Most referenced nicks"</refpurpose>
  1166. </refnamediv>
  1167. <refsynopsisdiv><programlisting>
  1168. <![CDATA[
  1169. <channel="#channel">
  1170. Logfile = "channel.log"
  1171. Format = "xchat"
  1172. ShowMrn = "0"
  1173. </channel>
  1174. <set ShowMrn="1">
  1175. ]]>
  1176. </programlisting></refsynopsisdiv>
  1177. <refsect1>
  1178. <title>Description</title>
  1179. <para>
  1180. By default, pisg adds an "Most referenced nicks" section to the stats
  1181. page. With this option you can disable it from being shown.
  1182. </para>
  1183. </refsect1>
  1184. <refsect1>
  1185. <title>Default</title>
  1186. <para> 1 (enabled) </para>
  1187. </refsect1>
  1188. </refentry>
  1189. <!-- *** SHOWMRU *** -->
  1190. <refentry id="ShowMru">
  1191. <refmeta> <refentrytitle>ShowMru</refentrytitle> </refmeta>
  1192. <refnamediv>
  1193. <refname>ShowMru</refname>
  1194. <refpurpose>enable or disable "Most referenced URLs"</refpurpose>
  1195. </refnamediv>
  1196. <refsynopsisdiv><programlisting>
  1197. <![CDATA[
  1198. <channel="#channel">
  1199. Logfile = "channel.log"
  1200. Format = "xchat"
  1201. ShowMru = "0"
  1202. </channel>
  1203. <set ShowMru="1">
  1204. ]]>
  1205. </programlisting></refsynopsisdiv>
  1206. <refsect1>
  1207. <title>Description</title>
  1208. <para>
  1209. By default, pisg adds an "Most referenced URLs" section to the stats
  1210. page. With this option you can disable it from being shown.
  1211. </para>
  1212. </refsect1>
  1213. <refsect1>
  1214. <title>Default</title>
  1215. <para> 1 (enabled) </para>
  1216. </refsect1>
  1217. </refentry>
  1218. <!-- *** SHOWVOICES *** -->
  1219. <refentry id="ShowVoices">
  1220. <refmeta> <refentrytitle>ShowVoices</refentrytitle> </refmeta>
  1221. <refnamediv>
  1222. <refname>ShowVoices</refname>
  1223. <refpurpose>enable or disable voice statistics</refpurpose>
  1224. </refnamediv>
  1225. <refsynopsisdiv><programlisting>
  1226. <![CDATA[
  1227. <channel="#channel">
  1228. Logfile = "channel.log"
  1229. Format = "xchat"
  1230. ShowVoices = "0"
  1231. </channel>
  1232. <set ShowVoices="1">
  1233. ]]>
  1234. </programlisting></refsynopsisdiv>
  1235. <refsect1>
  1236. <title>Description</title>
  1237. <para>
  1238. By default, pisg doesn't have voice statistics like it has op
  1239. statistics. Enabling this option will add a section to the "Most
  1240. interesting numbers" displaying who got most voices.
  1241. </para>
  1242. </refsect1>
  1243. <refsect1>
  1244. <title>Default</title>
  1245. <para> 0 (disabled) </para>
  1246. </refsect1>
  1247. </refentry>
  1248. <!-- *** SHOWMOSTNICKS *** -->
  1249. <refentry id="ShowMostNicks">
  1250. <refmeta> <refentrytitle>ShowMostNicks</refentrytitle> </refmeta>
  1251. <refnamediv>
  1252. <refname>ShowMostNicks</refname>
  1253. <refpurpose>show who changed nick most often</refpurpose>
  1254. </refnamediv>
  1255. <refsynopsisdiv><programlisting>
  1256. <![CDATA[
  1257. <channel="#channel">
  1258. Logfile = "channel.log"
  1259. Format = "xchat"
  1260. ShowMostNicks = "0"
  1261. </channel>
  1262. <set ShowMostNicks="1">
  1263. ]]>
  1264. </programlisting></refsynopsisdiv>
  1265. <refsect1>
  1266. <title>Description</title>
  1267. <para>
  1268. By enabling this option, pisg will add a section to the stats showing
  1269. who had the most nicks, and what the nicks were. This option only works
  1270. properly when <command>NickTracking</command> is enabled.
  1271. </para>
  1272. </refsect1>
  1273. <refsect1>
  1274. <title>Default</title>
  1275. <para> 0 (disabled) </para>
  1276. </refsect1>
  1277. </refentry>
  1278. <!-- *** IGNOREWORDS *** -->
  1279. <refentry id="IgnoreWords">
  1280. <refmeta> <refentrytitle>IgnoreWords</refentrytitle> </refmeta>
  1281. <refnamediv>
  1282. <refname>IgnoreWords</refname>
  1283. <refpurpose>ignore specified words</refpurpose>
  1284. </refnamediv>
  1285. <refsynopsisdiv><programlisting>
  1286. <![CDATA[
  1287. <set IgnoreWords="you me">
  1288. ]]>
  1289. </programlisting></refsynopsisdiv>
  1290. <refsect1>
  1291. <title>Description</title>
  1292. <para>
  1293. Sometimes words in the "most used words" appears which you don't want to
  1294. see, with this option you can ignore these words. It also applies to the
  1295. "most referenced nicks" section. It's a space seperated list of words.
  1296. Can not be used in a channel-only context.
  1297. </para>
  1298. </refsect1>
  1299. <refsect1>
  1300. <title>Default</title>
  1301. <para> unset </para>
  1302. </refsect1>
  1303. </refentry>
  1304. <!-- *** FOULWORDS *** -->
  1305. <refentry id="FoulWords">
  1306. <refmeta> <refentrytitle>FoulWords</refentrytitle> </refmeta>
  1307. <refnamediv>
  1308. <refname>FoulWords</refname>
  1309. <refpurpose>specify words considered to be bad/FoulWords language</refpurpose>
  1310. </refnamediv>
  1311. <refsynopsisdiv><programlisting>
  1312. <![CDATA[
  1313. <set FoulWords="ass fuck bitch">
  1314. ]]>
  1315. </programlisting></refsynopsisdiv>
  1316. <refsect1>
  1317. <title>Description</title>
  1318. <para>
  1319. There is a section in the "Most interesting numbers" which tells who had
  1320. a "dirty mouth" - here you can define which words are considered being
  1321. bad/foul. It is a space seperated list of words.
  1322. Can not be used in a channel-only context.
  1323. </para>
  1324. </refsect1>
  1325. <refsect1>
  1326. <title>Default</title>
  1327. <para> ass fuck bitch shit scheisse scheiße kacke arsch ficker ficken schlampe </para>
  1328. </refsect1>
  1329. </refentry>
  1330. <!-- *** VIOLENTWORDS *** -->
  1331. <refentry id="ViolentWords">
  1332. <refmeta> <refentrytitle>ViolentWords</refentrytitle> </refmeta>
  1333. <refnamediv>
  1334. <refname>ViolentWords</refname>
  1335. <refpurpose>specify words considered to be aggressive/violent</refpurpose>
  1336. </refnamediv>
  1337. <refsynopsisdiv><programlisting>
  1338. <![CDATA[
  1339. <set ViolentWords="slaps beats kick">
  1340. ]]>
  1341. </programlisting></refsynopsisdiv>
  1342. <refsect1>
  1343. <title>Description</title>
  1344. <para>
  1345. There is a section in the "Most interesting numbers" which tells who had
  1346. is most "aggressive" - here you can define which words are considered
  1347. being "violent". It is a space seperated list of words.
  1348. Can not be used in a channel-only context.
  1349. </para>
  1350. </refsect1>
  1351. <refsect1>
  1352. <title>Default</title>
  1353. <para> slaps beats smacks </para>
  1354. </refsect1>
  1355. </refentry>
  1356. <!-- *** REGEXPALIASES *** -->
  1357. <refentry id="RegexpAliases">
  1358. <refmeta> <refentrytitle>RegexpAliases</refentrytitle> </refmeta>
  1359. <refnamediv>
  1360. <refname>RegexpAliases</refname>
  1361. <refpurpose>use regular expressions in user aliases</refpurpose>
  1362. </refnamediv>
  1363. <refsynopsisdiv><programlisting>
  1364. <![CDATA[
  1365. <user nick="Joe" alias="Joe\d+">
  1366. <set RegexpAliases="1">
  1367. ]]>
  1368. </programlisting></refsynopsisdiv>
  1369. <refsect1>
  1370. <title>Description</title>
  1371. <para>
  1372. Enabling this option will make all aliases in &lt;user&gt; lines be
  1373. parsed as regular expressions.
  1374. </para>
  1375. </refsect1>
  1376. <refsect1>
  1377. <title>Default</title>
  1378. <para> 0 (disabled) </para>
  1379. </refsect1>
  1380. </refentry>
  1381. <!-- *** SILENT *** -->
  1382. <refentry id="Silent">
  1383. <refmeta> <refentrytitle>Silent</refentrytitle> </refmeta>
  1384. <refnamediv>
  1385. <refname>Silent</refname>
  1386. <refpurpose>make pisg Silent, suppress messages</refpurpose>
  1387. </refnamediv>
  1388. <refsynopsisdiv><programlisting>
  1389. <![CDATA[
  1390. <set Silent="1">
  1391. ]]>
  1392. </programlisting></refsynopsisdiv>
  1393. <refsect1>
  1394. <title>Description</title>
  1395. <para>
  1396. This option is useful mainly from commandline when invoking pisg with
  1397. <command>--silent 1</command>. But it can also used in the configuration
  1398. file. It will suppress all standard output from pisg. Error messages
  1399. will still be sent.
  1400. </para>
  1401. </refsect1>
  1402. <refsect1>
  1403. <title>Default</title>
  1404. <para> 0 (disabled) </para>
  1405. </refsect1>
  1406. </refentry>
  1407. <!-- *** CHARSET *** -->
  1408. <refentry id="Charset">
  1409. <refmeta> <refentrytitle>Charset</refentrytitle> </refmeta>
  1410. <refnamediv>
  1411. <refname>Charset</refname>
  1412. <refpurpose>Charset to use for stats page</refpurpose>
  1413. </refnamediv>
  1414. <refsynopsisdiv><programlisting>
  1415. <![CDATA[
  1416. <channel="#channel">
  1417. Logfile = "channel.log"
  1418. Format = "xchat"
  1419. Charset = "utf-8"
  1420. </channel>
  1421. <set Charset="iso-8859-15">
  1422. ]]>
  1423. </programlisting></refsynopsisdiv>
  1424. <refsect1>
  1425. <title>Description</title>
  1426. <para>
  1427. The pisg stats page defines a charset in a meta tag, this can be used if
  1428. your country is using a different one than the default.
  1429. </para>
  1430. </refsect1>
  1431. <refsect1>
  1432. <title>Default</title>
  1433. <para> iso-8859-1 </para>
  1434. </refsect1>
  1435. </refentry>
  1436. <!-- *** MinQuote *** -->
  1437. <refentry id="MinQuote">
  1438. <refmeta> <refentrytitle>MinQuote</refentrytitle> </refmeta>
  1439. <refnamediv>
  1440. <refname>MinQuote</refname>
  1441. <refpurpose>minimum numbers of letters for a random quote</refpurpose>
  1442. </refnamediv>
  1443. <refsynopsisdiv><programlisting>
  1444. <![CDATA[
  1445. <channel="#channel">
  1446. Logfile = "channel.log"
  1447. Format = "xchat"
  1448. MinQuote = "10"
  1449. </channel>
  1450. <set MinQuote="5">
  1451. ]]>
  1452. </programlisting></refsynopsisdiv>
  1453. <refsect1>
  1454. <title>Description</title>
  1455. <para>
  1456. The random quotes displayed in the "Most Active Nicks" section has a
  1457. certain range specified. With this option you can change the minimum
  1458. number of letters required for a random quote. Also see the
  1459. <command>maxquote</command> option.
  1460. </para>
  1461. </refsect1>
  1462. <refsect1>
  1463. <title>Default</title>
  1464. <para> 25 </para>
  1465. </refsect1>
  1466. </refentry>
  1467. <!-- *** MaxQuote *** -->
  1468. <refentry id="MaxQuote">
  1469. <refmeta> <refentrytitle>MaxQuote</refentrytitle> </refmeta>
  1470. <refnamediv>
  1471. <refname>MaxQuote</refname>
  1472. <refpurpose>maximum numbers of letters for a random quote</refpurpose>
  1473. </refnamediv>
  1474. <refsynopsisdiv><programlisting>
  1475. <![CDATA[
  1476. <channel="#channel">
  1477. Logfile = "channel.log"
  1478. Format = "xchat"
  1479. MaxQuote = "70"
  1480. </channel>
  1481. <set MaxQuote="100">
  1482. ]]>
  1483. </programlisting></refsynopsisdiv>
  1484. <refsect1>
  1485. <title>Description</title>
  1486. <para>
  1487. The random quotes displayed in the "Most Active Nicks" section has a
  1488. certain range specified. With this option you can change the maximum
  1489. number of letters required for a random quote. Also see the
  1490. <command>minquote</command> option.
  1491. </para>
  1492. </refsect1>
  1493. <refsect1>
  1494. <title>Default</title>
  1495. <para> 65 </para>
  1496. </refsect1>
  1497. </refentry>
  1498. <!-- *** WORDLENGTH *** -->
  1499. <refentry id="WordLength">
  1500. <refmeta> <refentrytitle>WordLength</refentrytitle> </refmeta>
  1501. <refnamediv>
  1502. <refname>WordLength</refname>
  1503. <refpurpose>minimum number of characters in an interesting word</refpurpose>
  1504. </refnamediv>
  1505. <refsynopsisdiv><programlisting>
  1506. <![CDATA[
  1507. <channel="#channel">
  1508. Logfile = "channel.log"
  1509. Format = "xchat"
  1510. WordLength = "10"
  1511. </channel>
  1512. <set WordLength="2">
  1513. ]]>
  1514. </programlisting></refsynopsisdiv>
  1515. <refsect1>
  1516. <title>Description</title>
  1517. <para>
  1518. The "Most Used Words" section on the stats page display the most used
  1519. words. The default is that a word only appears if it is longer than 5
  1520. characters. With this option you can change that minimum.
  1521. </para>
  1522. </refsect1>
  1523. <refsect1>
  1524. <title>Default</title>
  1525. <para> 5 </para>
  1526. </refsect1>
  1527. </refentry>
  1528. <!-- *** ACTIVENICKS *** -->
  1529. <refentry id="ActiveNicks">
  1530. <refmeta> <refentrytitle>ActiveNicks</refentrytitle> </refmeta>
  1531. <refnamediv>
  1532. <refname>ActiveNicks</refname>
  1533. <refpurpose>nicks to show in "Most Active Nicks"</refpurpose>
  1534. </refnamediv>
  1535. <refsynopsisdiv><programlisting>
  1536. <![CDATA[
  1537. <channel="#channel">
  1538. Logfile = "channel.log"
  1539. Format = "mIRC"
  1540. ActiveNicks = "50"
  1541. </channel>
  1542. <set ActiveNicks="10">
  1543. ]]>
  1544. </programlisting></refsynopsisdiv>
  1545. <refsect1>
  1546. <title>Description</title>
  1547. <para>
  1548. With this option you can define how many nicks you want to appear in the
  1549. "Most Active Nicks" section on the stats page.
  1550. </para>
  1551. </refsect1>
  1552. <refsect1>
  1553. <title>Default</title>
  1554. <para> 25 </para>
  1555. </refsect1>
  1556. </refentry>
  1557. <!-- *** ACTIVENICKS2 *** -->
  1558. <refentry id="ActiveNicks2">
  1559. <refmeta> <refentrytitle>ActiveNicks2</refentrytitle> </refmeta>
  1560. <refnamediv>
  1561. <refname>ActiveNicks2</refname>
  1562. <refpurpose>nicks to show in "These didn't make it.."</refpurpose>
  1563. </refnamediv>
  1564. <refsynopsisdiv><programlisting>
  1565. <![CDATA[
  1566. <channel="#channel">
  1567. Logfile = "channel.log"
  1568. Format = "mIRC"
  1569. ActiveNicks2 = "25"
  1570. </channel>
  1571. <set ActiveNicks2="10">
  1572. ]]>
  1573. </programlisting></refsynopsisdiv>
  1574. <refsect1>
  1575. <title>Description</title>
  1576. <para>
  1577. With this option you can define how many nicks you want to appear in the
  1578. "These didn't make it" section on the stats page.
  1579. </para>
  1580. </refsect1>
  1581. <refsect1>
  1582. <title>Default</title>
  1583. <para> 30 </para>
  1584. </refsect1>
  1585. </refentry>
  1586. <!-- *** MOSTNICKSHISTORY *** -->
  1587. <refentry id="MostNicksHistory">
  1588. <refmeta> <refentrytitle>MostNicksHistory</refentrytitle> </refmeta>
  1589. <refnamediv>
  1590. <refname>MostNicksHistory</refname>
  1591. <refpurpose>maximum number of nicks to show in "most nicks"</refpurpose>
  1592. </refnamediv>
  1593. <refsynopsisdiv><programlisting>
  1594. <![CDATA[
  1595. <channel="#channel">
  1596. Logfile = "channel.log"
  1597. Format = "mIRC"
  1598. MostNicksHistory = "2"
  1599. </channel>
  1600. <set MostNicksHistory="10">
  1601. ]]>
  1602. </programlisting></refsynopsisdiv>
  1603. <refsect1>
  1604. <title>Description</title>
  1605. <para>
  1606. With this option you can define how many nicks you want to appear in
  1607. the "Most used nicks" section.
  1608. </para>
  1609. </refsect1>
  1610. <refsect1>
  1611. <title>Default</title>
  1612. <para> 5 </para>
  1613. </refsect1>
  1614. </refentry>
  1615. <!-- *** TOPICHISTORY *** -->
  1616. <refentry id="TopicHistory">
  1617. <refmeta> <refentrytitle>TopicHistory</refentrytitle> </refmeta>
  1618. <refnamediv>
  1619. <refname>TopicHistory</refname>
  1620. <refpurpose>maximum number of topics to show</refpurpose>
  1621. </refnamediv>
  1622. <refsynopsisdiv><programlisting>
  1623. <![CDATA[
  1624. <channel="#channel">
  1625. Logfile = "channel.log"
  1626. Format = "mIRC"
  1627. TopicHistory = "2"
  1628. </channel>
  1629. <set TopicHistory="10">
  1630. ]]>
  1631. </programlisting></refsynopsisdiv>
  1632. <refsect1>
  1633. <title>Description</title>
  1634. <para>
  1635. With this option you can define how many topics you want to appear in
  1636. the "Latest topics" section.
  1637. </para>
  1638. </refsect1>
  1639. <refsect1>
  1640. <title>Default</title>
  1641. <para> 3 </para>
  1642. </refsect1>
  1643. </refentry>
  1644. <!-- *** URLHISTORY *** -->
  1645. <refentry id="UrlHistory">
  1646. <refmeta> <refentrytitle>UrlHistory</refentrytitle> </refmeta>
  1647. <refnamediv>
  1648. <refname>UrlHistory</refname>
  1649. <refpurpose>maximum number of urls to show</refpurpose>
  1650. </refnamediv>
  1651. <refsynopsisdiv><programlisting>
  1652. <![CDATA[
  1653. <channel="#channel">
  1654. Logfile = "channel.log"
  1655. Format = "mIRC"
  1656. UrlHistory = "2"
  1657. </channel>
  1658. <set UrlHistory="10">
  1659. ]]>
  1660. </programlisting></refsynopsisdiv>
  1661. <refsect1>
  1662. <title>Description</title>
  1663. <para>
  1664. With this option you can define how many urls you want to appear in
  1665. the "Most referenced URLs" section.
  1666. </para>
  1667. </refsect1>
  1668. <refsect1>
  1669. <title>Default</title>
  1670. <para> 5 </para>
  1671. </refsect1>
  1672. </refentry>
  1673. <!-- *** WORDHISTORY *** -->
  1674. <refentry id="WordHistory">
  1675. <refmeta> <refentrytitle>WordHistory</refentrytitle> </refmeta>
  1676. <refnamediv>
  1677. <refname>WordHistory</refname>
  1678. <refpurpose>maximum number of words to show</refpurpose>
  1679. </refnamediv>
  1680. <refsynopsisdiv><programlisting>
  1681. <![CDATA[
  1682. <channel="#channel">
  1683. Logfile = "channel.log"
  1684. Format = "mIRC"
  1685. WordHistory = "5"
  1686. </channel>
  1687. <set WordHistory="15">
  1688. ]]>
  1689. </programlisting></refsynopsisdiv>
  1690. <refsect1>
  1691. <title>Description</title>
  1692. <para>
  1693. With this option you can define how many words you want to appear in
  1694. the "Most used words" section.
  1695. </para>
  1696. </refsect1>
  1697. <refsect1>
  1698. <title>Default</title>
  1699. <para> 10 </para>
  1700. </refsect1>
  1701. </refentry>
  1702. <!-- *** NICKHISTORY *** -->
  1703. <refentry id="NickHistory">
  1704. <refmeta> <refentrytitle>NickHistory</refentrytitle> </refmeta>
  1705. <refnamediv>
  1706. <refname>NickHistory</refname>
  1707. <refpurpose>maximum number of nicks to show</refpurpose>
  1708. </refnamediv>
  1709. <refsynopsisdiv><programlisting>
  1710. <![CDATA[
  1711. <channel="#channel">
  1712. Logfile = "channel.log"
  1713. Format = "mIRC"
  1714. NickHistory = "3"
  1715. </channel>
  1716. <set NickHistory="15">
  1717. ]]>
  1718. </programlisting></refsynopsisdiv>
  1719. <refsect1>
  1720. <title>Description</title>
  1721. <para>
  1722. With this option you can define how many nicks you want to appear in
  1723. the "Most referenced nicks" section.
  1724. </para>
  1725. </refsect1>
  1726. <refsect1>
  1727. <title>Default</title>
  1728. <para> 5 </para>
  1729. </refsect1>
  1730. </refentry>
  1731. <!-- *** LANGFILE *** -->
  1732. <refentry id="LangFile">
  1733. <refmeta> <refentrytitle>LangFile</refentrytitle> </refmeta>
  1734. <refnamediv>
  1735. <refname>LangFile</refname>
  1736. <refpurpose>filename of language file</refpurpose>
  1737. </refnamediv>
  1738. <refsynopsisdiv><programlisting>
  1739. <![CDATA[
  1740. <set LangFile="mylang.txt">
  1741. ]]>
  1742. </programlisting></refsynopsisdiv>
  1743. <refsect1>
  1744. <title>Description</title>
  1745. <para>
  1746. With this option you have an alternative way to define the name and/or
  1747. path to the language file. Usually you don't have to touch this option.
  1748. </para>
  1749. </refsect1>
  1750. <refsect1>
  1751. <title>Default</title>
  1752. <para> lang.txt </para>
  1753. </refsect1>
  1754. </refentry>
  1755. <!-- *** NICKTRACKING *** -->
  1756. <refentry id="NickTracking">
  1757. <refmeta> <refentrytitle>NickTracking</refentrytitle> </refmeta>
  1758. <refnamediv>
  1759. <refname>NickTracking</refname>
  1760. <refpurpose>track nickchanges and create aliases</refpurpose>
  1761. </refnamediv>
  1762. <refsynopsisdiv><programlisting>
  1763. <![CDATA[
  1764. <set NickTracking="1">
  1765. ]]>
  1766. </programlisting></refsynopsisdiv>
  1767. <refsect1>
  1768. <title>Description</title>
  1769. <para>
  1770. Enabling this option will track nickchanges as well as it can. It will
  1771. then automatically create aliases for these nicks.
  1772. </para>
  1773. </refsect1>
  1774. <refsect1>
  1775. <title>Default</title>
  1776. <para> 0 (disabled) </para>
  1777. </refsect1>
  1778. </refentry>
  1779. <!-- *** LOGTYPE *** -->
  1780. <refentry id="LogType">
  1781. <refmeta> <refentrytitle>LogType</refentrytitle> </refmeta>
  1782. <refnamediv>
  1783. <refname>LogType</refname>
  1784. <refpurpose>type of log (not the format of the log)</refpurpose>
  1785. </refnamediv>
  1786. <refsynopsisdiv><programlisting>
  1787. <![CDATA[
  1788. <set LogType="Logfile">
  1789. ]]>
  1790. </programlisting></refsynopsisdiv>
  1791. <refsect1>
  1792. <title>Description</title>
  1793. <para>
  1794. The type of logs kept for your channel. Currently only "Logfile" is
  1795. supported, so you don't need to change this option.
  1796. </para>
  1797. </refsect1>
  1798. <refsect1>
  1799. <title>Default</title>
  1800. <para> Logfile </para>
  1801. </refsect1>
  1802. </chapter>
  1803. </book>