pisg-doc.xml 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498
  1. <!-- This is the raw docbook source of the pisg documentation -->
  2. <?xml version='1.0'?>
  3. <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
  4. "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd">
  5. <book id="pisg-documentation">
  6. <bookinfo>
  7. <title>pisg documentation</title>
  8. <subtitle>How to install and configure pisg</subtitle>
  9. </bookinfo>
  10. <toc></toc>
  11. <!-- <lot></lot> -->
  12. <chapter id="what-is-pisg">
  13. <title>What is pisg?</title>
  14. <para>
  15. pisg is an IRC statistics generator. It takes IRC logfiles and turns
  16. them into nice looking stats.
  17. </para>
  18. <para>
  19. In general, you would do something like this to get it running:
  20. <itemizedlist mark="bullet">
  21. <listitem>
  22. <para>
  23. Enable logging in an IRC bot, or in your IRC client. The log will be
  24. outputted into a file.
  25. </para>
  26. </listitem>
  27. <listitem>
  28. <para>
  29. You set up pisg, you define the channel name, and the path to the
  30. logfile you created.
  31. </para>
  32. </listitem>
  33. <listitem>
  34. <para>
  35. You run pisg, pisg runs the log through and create statistics, it
  36. then creates an HTML page which you can upload to a webserver.
  37. </para>
  38. </listitem>
  39. </itemizedlist>
  40. </para>
  41. <sect1 id="requirements">
  42. <title>What are the requirements to run pisg?</title>
  43. <para>
  44. <itemizedlist mark="bullet">
  45. <listitem>
  46. <para>
  47. An IRC client or bot where pisg supports the output logfile.
  48. </para>
  49. </listitem>
  50. <listitem>
  51. <para>
  52. Any operating system which Perl runs on, this includes popular OSes
  53. such as Linux, FreeBSD, Windows and Mac. You will have a hard time
  54. finding an OS where Perl isn't supported. For Windows this means
  55. that you need to download <ulink url="http://activestate.com/Products/ActivePerl/">ActivePerl</ulink>.
  56. </para>
  57. </listitem>
  58. <listitem>
  59. <para>
  60. <emphasis>Optional</emphasis> - a system to host the statistics page
  61. 24 hours a day, 7 days a week.
  62. </para>
  63. </listitem>
  64. <listitem>
  65. <para>
  66. <emphasis>Optional</emphasis> - a system to log the channel, 24 hours
  67. a day, 7 days a week.
  68. </para>
  69. </listitem>
  70. </itemizedlist>
  71. </para>
  72. </sect1>
  73. </chapter>
  74. <chapter id="setting-up-pisg">
  75. <title>Setting up pisg for the first time</title>
  76. <para>
  77. Most configuration happens through the <filename>pisg.cfg</filename>
  78. file, the file format is made to be easy to read, and easy to extend for
  79. further use. It uses an XML-like format, with elements and attributes.
  80. </para>
  81. <sect1 id="setting-up-a-channel">
  82. <title>Setting up a channel</title>
  83. <para>
  84. An element called <xref linkend="Channel" /> is made for defining
  85. channels, a quick example of a channel is here:
  86. <programlisting>
  87. <![CDATA[
  88. <channel="#channel">
  89. Logfile = "channel.log"
  90. Format = "mIRC"
  91. Maintainer = "John"
  92. OutputFile = "mychan.html"
  93. </channel>
  94. ]]>
  95. </programlisting>
  96. The above will define a channel called <command>#channel</command>, the
  97. logfile pisg will look for is called <command>channel.log</command> and
  98. the format of the logfile will be <command>mIRC</command>. The
  99. maintainer (which will be stated on the output page) is
  100. <command>John</command>.
  101. </para>
  102. <para>
  103. That is basically it! Now, there are a lot more options that you can use
  104. for your channels, for this please refer to the reference documentation.
  105. </para>
  106. <para>
  107. Also be-aware of the fact that pisg uses various images to show the
  108. time-related bars. These images are placed in the
  109. <filename>gfx/</filename> folder and should be placed into the same
  110. directory as your outputted HTML file.
  111. </para>
  112. </sect1>
  113. <sect1 id="user-options">
  114. <title>Specifying user options</title>
  115. <para>
  116. User options are set with a simple XML-like syntax in the form:
  117. <programlisting>
  118. <![CDATA[<user nick="NICK" option="VALUE">]]>
  119. </programlisting>
  120. Remember, the nick is always required.
  121. For example to add aliases to a nick, then you could do this:
  122. <programlisting>
  123. <![CDATA[<user nick="Joe" alias="Joe^*">]]>
  124. </programlisting>
  125. The asterisk (*) means that it will match all nicks starting with 'Joe^'. So
  126. it will add all Joe^'s to 'Joe' in the stats.
  127. Another thing you can do is to add a picture to a user:
  128. <programlisting>
  129. <![CDATA[<user nick="Ben" pic="ben_holiday.jpg">]]>
  130. </programlisting>
  131. If you have a larger picture of the user as well, you can make the picture
  132. on the stats page link to it:
  133. <programlisting>
  134. <![CDATA[<user nick="Ben" pic="ben_holiday.jpg" bigpic="ben-big.jpg">]]>
  135. </programlisting>
  136. You can include * or ? to enable filename globbing to randomly choose one
  137. from several pictures: (see documentation for the
  138. <xref linkend="ImageGlobPath" /> option)
  139. <programlisting>
  140. <![CDATA[<user nick="Ben" pic="ben_*.jpg">]]>
  141. </programlisting>
  142. You can also set a user's sex.
  143. The sex setting can be "f"emale, "m"ale, or "b"ot:
  144. <programlisting>
  145. <![CDATA[<user nick="Ben" sex="m">]]>
  146. </programlisting>
  147. Also you can add links to URLs and e-mails:
  148. <programlisting>
  149. <![CDATA[<user nick="Christine" link="http://www.christine.com">]]>
  150. </programlisting>
  151. or
  152. <programlisting>
  153. <![CDATA[<user nick="Chris" link="chris@host.com">]]>
  154. </programlisting>
  155. The last thing you can do is to ignore nicks (for example bots):
  156. <programlisting>
  157. <![CDATA[<user nick="nameofbot" ignore="y">]]>
  158. </programlisting>
  159. You don't have to do all this in many lines, you could just as easily do:
  160. <programlisting>
  161. <![CDATA[<user nick="Joe" alias="Joe^away Joe^work" pic="joe.jpg" link="joe@joe.com" sex="m">]]>
  162. </programlisting>
  163. (Here the aliases are a space separated list of nicks, that also works! But *
  164. as a wildcard is smarter, although it is slower).
  165. </para>
  166. </sect1>
  167. <sect1 id="global-options">
  168. <title>Setting global options</title>
  169. <para>
  170. Many times, it will be useful to set up global options, global options
  171. are set like this:
  172. <programlisting>
  173. <![CDATA[<set option="VALUE">]]>
  174. </programlisting>
  175. Any global option will override anything defined within channel
  176. elements (see <xref linkend="setting-up-a-channel" />)
  177. </para>
  178. <para>
  179. For example, to change the background color of the stats page, you
  180. could do:
  181. <programlisting>
  182. <![CDATA[<set bgcolor="black">]]>
  183. </programlisting>
  184. You can set many options in a single <command>set</command>:
  185. <programlisting>
  186. <![CDATA[<set lang="DE" timeoffset="+1">]]>
  187. </programlisting>
  188. The above will set the language on the statistics page to DE (Deutsch,
  189. German) and set the time offset to +1.
  190. All options available are mentioned in the reference documentation.
  191. </para>
  192. </sect1>
  193. <sect1 id="ignoring-links">
  194. <title>Ignoring links</title>
  195. <para>
  196. It's possible to ignore links in the "Most referenced URLs" section:
  197. <programlisting>
  198. <![CDATA[
  199. <link url="http://www.slashdot.org" ignore="y">
  200. ]]>
  201. </programlisting>
  202. </para>
  203. </sect1>
  204. <sect1 id="including-config">
  205. <title>Including common settings for various channels</title>
  206. <para>
  207. If you have, for example, more than one channel, where the users are the
  208. same, or you don't want to maintain more than one user file, you can use
  209. the "include" setting in the main config file:
  210. <programlisting>
  211. <![CDATA[
  212. <include="/home/vetinari/pisg/users.cfg">
  213. ]]>
  214. </programlisting>
  215. This will include the file /home/vetinari/pisg/users.cfg in the config
  216. at the place where the include statement is set.
  217. </para>
  218. <para>
  219. Note, that you can NOT include a file from an included file!
  220. </para>
  221. </sect1>
  222. <sect1 id="using-css">
  223. <title>Changing the layout of your stats page</title>
  224. <para>
  225. The standard layout and colors in the outputted HTML page are made to be
  226. somewhat clean and neutral. But you have the chance to change the layout
  227. yourself.
  228. </para>
  229. <para>
  230. There are a few predefined color schemes for you to use, use the
  231. <xref linkend="ColorScheme" /> option when using them. The
  232. colorschemes distributed with pisg are: default (which is the default),
  233. darkgalaxy, darkred, justgrey, ocean, orange_grey, pisg, softgreen.
  234. </para>
  235. <para>
  236. When changing it, you need a fair knowledge of CSS (Cascading Style
  237. Sheets). CSS is what most of the web uses today to define styles and
  238. layout on HTML pages.
  239. With the pisg distribution, look in the <filename>layout</filename>
  240. directory. In it resides <filename>default.css</filename> which is the
  241. file being included onto the HTML page. Open it in a text editor like
  242. vi or notepad. Then change it until you're happy with it. Be aware that
  243. you might want to look at the <link linkend="HiCell">HiCell and HiCell2</link>
  244. options through pisg.cfg for changing the last two colors.
  245. </para>
  246. <para>
  247. If you have created a nice stylesheet which other can take advantage of,
  248. you are encouraged to send it to the pisg mailing list so that it can be
  249. distributed with the next version of pisg.
  250. </para>
  251. <para>
  252. If you want to embed the statistics into another page, use the "none" color scheme.
  253. Pisg will then omit the HTML header and write only the body part.
  254. </para>
  255. </sect1>
  256. <sect1 id="running-pisg">
  257. <title>Running pisg</title>
  258. <para>
  259. When everything is set up in the pisg configuration file (pisg.cfg),
  260. then you simply run pisg on the command-line.
  261. </para>
  262. <para>
  263. Using Linux, BSD or another UNIX-like system:
  264. <screen>
  265. <prompt>user@host:pisg-0.37$</prompt> <userinput>./pisg</userinput>
  266. </screen>
  267. </para>
  268. <para>
  269. Using Windows:
  270. <screen>
  271. <prompt>c:\pisg&gt;</prompt> <userinput>perl pisg</userinput>
  272. </screen>
  273. </para>
  274. <para>
  275. The program will run and parse the logfiles you specified in the
  276. configuration file.
  277. </para>
  278. <para>
  279. If you are using Linux, BSD or another UNIX-like system and want run
  280. pisg automatically several times a day, then see the
  281. <filename>crontab</filename> file in the <filename>scripts/</filename>
  282. directory.
  283. </para>
  284. <para>
  285. For Windows, see the <filename>windows-upload-ftp.txt</filename> file
  286. with the pisg distribution, this file is also placed in the
  287. <filename>scripts/</filename> directory.
  288. </para>
  289. </sect1>
  290. <sect1 id="mailing-list-and-bugs">
  291. <title>Obtaining help and reporting bugs</title>
  292. <para>
  293. If your problem could not be resolved through here, then you should send
  294. an e-mail to the pisg mailing list. You can subscribe and see more info
  295. at <ulink
  296. url="http://lists.sourceforge.net/lists/listinfo/pisg-general">http://lists.sourceforge.net/lists/listinfo/pisg-general</ulink>.
  297. </para>
  298. <para>
  299. If you believe that you have found a bug, you should use the SourceForge
  300. <ulink
  301. url="http://sourceforge.net/tracker/?group_id=31862&amp;atid=403711">bug
  302. tracking system.</ulink>
  303. </para>
  304. </sect1>
  305. </chapter>
  306. <chapter id="reference">
  307. <title>General pisg options</title>
  308. <!-- *** CHANNEL *** -->
  309. <refentry id="Channel">
  310. <refmeta> <refentrytitle>Channel</refentrytitle> </refmeta>
  311. <refnamediv>
  312. <refname>Channel</refname>
  313. <refpurpose>define channel name</refpurpose>
  314. </refnamediv>
  315. <refsynopsisdiv><programlisting>
  316. <![CDATA[
  317. <channel="#channel">
  318. Logfile = "channel.log"
  319. Format = "mIRC"
  320. Maintainer = "John"
  321. </channel>
  322. ]]>
  323. </programlisting></refsynopsisdiv>
  324. <refsect1>
  325. <title>Description</title>
  326. <para>
  327. <command>Channel</command> is used in two contexts, globally when using
  328. &lt;set&gt; and when defining new channels. It sets the name of the
  329. channel.
  330. </para>
  331. </refsect1>
  332. <refsect1>
  333. <title>Default</title>
  334. <para> Unset </para>
  335. </refsect1>
  336. </refentry>
  337. <!-- *** FORMAT *** -->
  338. <refentry id="Format">
  339. <refmeta> <refentrytitle>Format</refentrytitle> </refmeta>
  340. <refnamediv>
  341. <refname>Format</refname>
  342. <refpurpose>the logfile format</refpurpose>
  343. </refnamediv>
  344. <refsynopsisdiv><programlisting>
  345. <![CDATA[
  346. <channel="#channel">
  347. Logfile = "channel.log"
  348. Format = "eggdrop"
  349. Maintainer = "John"
  350. </channel>
  351. <set Format="mIRC">
  352. ]]>
  353. </programlisting></refsynopsisdiv>
  354. <refsect1>
  355. <title>Description</title>
  356. <para>
  357. <command>Format</command> is used to define the format of the logfile,
  358. pisg supports a various number of different logfiles, see the FORMATS
  359. file included with the pisg distribution.
  360. </para>
  361. </refsect1>
  362. <refsect1>
  363. <title>Default</title>
  364. <para> Unset </para>
  365. </refsect1>
  366. </refentry>
  367. <!-- *** NETWORK *** -->
  368. <refentry id="Network">
  369. <refmeta> <refentrytitle>Network</refentrytitle> </refmeta>
  370. <refnamediv>
  371. <refname>Network</refname>
  372. <refpurpose>the IRC network of the channel</refpurpose>
  373. </refnamediv>
  374. <refsynopsisdiv><programlisting>
  375. <![CDATA[
  376. <channel="#channel">
  377. Logfile = "channel.log"
  378. Format = "eggdrop"
  379. Network = "Undernet"
  380. </channel>
  381. <set Network="Quakenet">
  382. ]]>
  383. </programlisting></refsynopsisdiv>
  384. <refsect1>
  385. <title>Description</title>
  386. <para>
  387. <command>Network</command> is used to set the network which the channel
  388. resides on, this name is displayed on the stats page.
  389. </para>
  390. </refsect1>
  391. <refsect1>
  392. <title>Default</title>
  393. <para> SomeIRCNetwork </para>
  394. </refsect1>
  395. </refentry>
  396. <!-- *** OUTPUTFILE *** -->
  397. <refentry id="OutputFile">
  398. <refmeta> <refentrytitle>OutputFile</refentrytitle> </refmeta>
  399. <refnamediv>
  400. <refname>OutputFile</refname>
  401. <refpurpose>name of the generated HTML page</refpurpose>
  402. </refnamediv>
  403. <refsynopsisdiv><programlisting>
  404. <![CDATA[
  405. <channel="#channel">
  406. Logfile = "channel.log"
  407. Format = "eggdrop"
  408. OutputFile = "mychan.html"
  409. </channel>
  410. <set OutputFile="mychan.html">
  411. ]]>
  412. </programlisting></refsynopsisdiv>
  413. <refsect1>
  414. <title>Description</title>
  415. <para>
  416. <command>OutputFile</command> is used to define the name of the
  417. generated statistics page.
  418. </para>
  419. </refsect1>
  420. <refsect1>
  421. <title>Default</title>
  422. <para> index.html </para>
  423. </refsect1>
  424. </refentry>
  425. <!-- *** OUTPUTTAG *** -->
  426. <refentry id="OutputTag">
  427. <refmeta> <refentrytitle>OutputTag</refentrytitle> </refmeta>
  428. <refnamediv>
  429. <refname>OutputTag</refname>
  430. <refpurpose>tag to insert into OutputFile</refpurpose>
  431. </refnamediv>
  432. <refsynopsisdiv><programlisting>
  433. <![CDATA[
  434. <channel="#channel">
  435. LogDir = "logs/"
  436. Format = "eggdrop"
  437. OutputFile = "mychan%t.html"
  438. OutputTag = "-week"
  439. </channel>
  440. <set OutputTag="-week">
  441. ]]>
  442. </programlisting></refsynopsisdiv>
  443. <refsect1>
  444. <title>Description</title>
  445. <para>
  446. <command>OutputTag</command> specifies a string that will replace
  447. occurrences of "%t" in <xref linkend="OutputFile" />. This option is most
  448. useful when used as a command line switch (-t) to pisg in conjunction with
  449. <xref linkend="NFiles" /> (-nf). Example:
  450. <programlisting>
  451. <![CDATA[
  452. $ pisg -co pisg.conf
  453. $ pisg -co pisg.conf -nf 8 -t -week
  454. ]]>
  455. </programlisting>
  456. Leaving out the <command>OutputTag</command> settings from the above
  457. pisg.conf snippet, this writes both the full statistics (mychan.html) and
  458. statistics for the last week (mychan-week.html) using the same pisg config
  459. file. (Assuming that there are separate logfiles for each day.)
  460. </para>
  461. </refsect1>
  462. <refsect1>
  463. <title>Default</title>
  464. <para> unset </para>
  465. </refsect1>
  466. </refentry>
  467. <!-- *** LOGFILE *** -->
  468. <refentry id="Logfile">
  469. <refmeta> <refentrytitle>Logfile</refentrytitle> </refmeta>
  470. <refnamediv>
  471. <refname>Logfile</refname>
  472. <refpurpose>name of logfile to parse</refpurpose>
  473. </refnamediv>
  474. <refsynopsisdiv><programlisting>
  475. <![CDATA[
  476. <channel="#channel">
  477. Logfile="/home/foo/eggdrop/logs/mylog.txt"
  478. Format = "eggdrop"
  479. </channel>
  480. <set Logfile="foo.log">
  481. ]]>
  482. </programlisting></refsynopsisdiv>
  483. <refsect1>
  484. <title>Description</title>
  485. <para>
  486. This defines the filename of the logfile to parse for the channel. If
  487. you want to parse a directory full of logfiles, you should use the
  488. <xref linkend="LogDir" /> option instead. Providing this option multiple
  489. times will parse multiple files in the order the statements appear.
  490. </para>
  491. </refsect1>
  492. <refsect1>
  493. <title>Default</title>
  494. <para> unset </para>
  495. </refsect1>
  496. </refentry>
  497. <!-- *** LOGDIR *** -->
  498. <refentry id="LogDir">
  499. <refmeta> <refentrytitle>LogDir</refentrytitle> </refmeta>
  500. <refnamediv>
  501. <refname>LogDir</refname>
  502. <refpurpose>parse a directory full of logs</refpurpose>
  503. </refnamediv>
  504. <refsynopsisdiv><programlisting>
  505. <![CDATA[
  506. <channel="#channel">
  507. LogDir="/home/foo/eggdrop/logs/"
  508. Format = "eggdrop"
  509. </channel>
  510. <set LogDir="dailylogs/">
  511. ]]>
  512. </programlisting></refsynopsisdiv>
  513. <refsect1>
  514. <title>Description</title>
  515. <para>
  516. When <command>LogDir</command> is defined to valid path to a directory,
  517. then pisg will run through that directory, parse all logfiles in it and
  518. create 1 HTML from it. Useful with for example eggdrop logs. Providing
  519. this option multiple times will parse all the files in multiple
  520. directories in the order the statements appear.
  521. </para>
  522. </refsect1>
  523. <refsect1>
  524. <title>Default</title>
  525. <para> unset </para>
  526. </refsect1>
  527. </refentry>
  528. <!-- *** NFILES *** -->
  529. <refentry id="NFiles">
  530. <refmeta> <refentrytitle>NFiles</refentrytitle> </refmeta>
  531. <refnamediv>
  532. <refname>NFiles</refname>
  533. <refpurpose>parse only the last files in <xref linkend="LogDir" /></refpurpose>
  534. </refnamediv>
  535. <refsynopsisdiv><programlisting>
  536. <![CDATA[
  537. <channel="#channel">
  538. LogDir="/home/foo/eggdrop/logs/"
  539. NFiles="8"
  540. Format="eggdrop"
  541. </channel>
  542. <set NFiles="8">
  543. ]]>
  544. </programlisting></refsynopsisdiv>
  545. <refsect1>
  546. <title>Description</title>
  547. <para>
  548. When <command>NFiles</command> is set to a positive integer, pisg will
  549. process at most that much files from <xref linkend="LogDir" />. Useful to
  550. create statistics that cover the last week or month. Note that if multiple
  551. <xref linkend="LogDir" /> options are provided, <command>NFiles</command>
  552. refers to the number of files which will be processed from each
  553. <xref linkend="LogDir" />
  554. </para>
  555. </refsect1>
  556. <refsect1>
  557. <title>Default</title>
  558. <para> 0 (process all files) </para>
  559. </refsect1>
  560. </refentry>
  561. <!-- *** MAINTAINER *** -->
  562. <refentry id="Maintainer">
  563. <refmeta> <refentrytitle>Maintainer</refentrytitle> </refmeta>
  564. <refnamediv>
  565. <refname>Maintainer</refname>
  566. <refpurpose>name of the maintainer</refpurpose>
  567. </refnamediv>
  568. <refsynopsisdiv><programlisting>
  569. <![CDATA[
  570. <channel="#channel">
  571. Logfile = "channel.log"
  572. Format = "mIRC"
  573. Maintainer = "Benny"
  574. </channel>
  575. <set Maintainer="Benny">
  576. ]]>
  577. </programlisting></refsynopsisdiv>
  578. <refsect1>
  579. <title>Description</title>
  580. <para>
  581. <command>Maintainer</command> is used to define the name of the
  582. maintainer of the statistics page, this can be either the person
  583. generating the stats or the bot/client doing the logging.
  584. The maintainer is displayed in the outputted stats page.
  585. </para>
  586. </refsect1>
  587. <refsect1>
  588. <title>Default</title>
  589. <para> MAINTAINER </para>
  590. </refsect1>
  591. </refentry>
  592. <!-- *** COLORSCHEME *** -->
  593. <refentry id="ColorScheme">
  594. <refmeta> <refentrytitle>ColorScheme</refentrytitle> </refmeta>
  595. <refnamediv>
  596. <refname>ColorScheme</refname>
  597. <refpurpose>use a different color scheme for stats page</refpurpose>
  598. </refnamediv>
  599. <refsynopsisdiv><programlisting>
  600. <![CDATA[
  601. <channel="#channel">
  602. Logfile = "channel.log"
  603. ColorScheme = "darkgalaxy"
  604. Maintainer = "John"
  605. </channel>
  606. <set ColorScheme="default">
  607. ]]>
  608. </programlisting></refsynopsisdiv>
  609. <refsect1>
  610. <title>Description</title>
  611. <para>
  612. <command>ColorScheme</command> is used to define the color scheme used
  613. for the statistics page. Actually it's the CSS file being included.
  614. CSS files distributed with pisg are: darkgalaxy, darkred, default,
  615. justgrey, ocean, orange_grey, pisg, softgreen (omit the .css). The file
  616. will be included statically in the generated HTML page. If you give a file
  617. name or URL (i.e. a color scheme name with .css or a path), the file will
  618. be linked to instead. Using "none" will cause pisg to write only the body
  619. of the page; use this to include the statistics into a custom page. See
  620. also <xref linkend="CssDir" />,
  621. <link linkend="HiCell">HiCell/HiCell2</link>.
  622. </para>
  623. </refsect1>
  624. <refsect1>
  625. <title>Default</title>
  626. <para> default </para>
  627. </refsect1>
  628. </refentry>
  629. <!-- *** LANG *** -->
  630. <refentry id="Lang">
  631. <refmeta> <refentrytitle>Lang</refentrytitle> </refmeta>
  632. <refnamediv>
  633. <refname>Lang</refname>
  634. <refpurpose>define the language / translation to use</refpurpose>
  635. </refnamediv>
  636. <refsynopsisdiv><programlisting>
  637. <![CDATA[
  638. <channel="#channel">
  639. Logfile = "channel.log"
  640. Format = "mIRC"
  641. Lang = "DE"
  642. </channel>
  643. <set Lang="FR">
  644. ]]>
  645. </programlisting></refsynopsisdiv>
  646. <refsect1>
  647. <title>Description</title>
  648. <para>
  649. <command>Lang</command> defines the language to use for the stats.
  650. Currently, lang.txt includes:
  651. EN (English),
  652. BG (Bulgarian),
  653. CA (Catalan),
  654. CZ (Czech),
  655. DA (Danish),
  656. DE (German),
  657. EE (Estonian),
  658. ES (Spanish),
  659. FI (Finnish),
  660. FR (French),
  661. GR (Greek),
  662. HE (Hebrew),
  663. HU (Hungarian),
  664. IS (Icelandic),
  665. IT (Italian),
  666. NL (Dutch),
  667. NO (Norwegian),
  668. PL (Polish),
  669. PT (Portuguese),
  670. PT-BR (Portuguese/Brazil),
  671. RO (Romanian),
  672. RU (Russian),
  673. SE (Swedish),
  674. SI (Slovenian),
  675. SK (Slovak),
  676. SQ (Albanian),
  677. TR (Turkish),
  678. YU (Serbian).
  679. See also <xref linkend="LangFile" />.
  680. </para>
  681. </refsect1>
  682. <refsect1>
  683. <title>Default</title>
  684. <para> EN (English) </para>
  685. </refsect1>
  686. </refentry>
  687. <!-- *** PAGEHEAD *** -->
  688. <refentry id="PageHead">
  689. <refmeta> <refentrytitle>PageHead</refentrytitle> </refmeta>
  690. <refnamediv>
  691. <refname>PageHead</refname>
  692. <refpurpose>define a file as page header</refpurpose>
  693. </refnamediv>
  694. <refsynopsisdiv><programlisting>
  695. <![CDATA[
  696. <channel="#channel">
  697. Logfile = "channel.log"
  698. Format = "mIRC"
  699. OutputFile = "stats.html"
  700. PageHead = "myheader.txt"
  701. </channel>
  702. <set PageHead="someheader.txt">
  703. ]]>
  704. </programlisting></refsynopsisdiv>
  705. <refsect1>
  706. <title>Description</title>
  707. <para>
  708. <command>PageHead</command> is used to include a file in the stats page,
  709. for example an introduction text, a link to an image or a banner. The
  710. file can hold anything, it will be included raw in the stats page -
  711. so HTML should be preferred. The file will be included in the top of
  712. the page. This option is the opposite of <xref linkend="PageFoot" />.
  713. </para>
  714. </refsect1>
  715. <refsect1>
  716. <title>Default</title>
  717. <para> none </para>
  718. </refsect1>
  719. </refentry>
  720. <!-- *** PAGEFOOT *** -->
  721. <refentry id="PageFoot">
  722. <refmeta> <refentrytitle>PageFoot</refentrytitle> </refmeta>
  723. <refnamediv>
  724. <refname>PageFoot</refname>
  725. <refpurpose>define a file as page footer</refpurpose>
  726. </refnamediv>
  727. <refsynopsisdiv><programlisting>
  728. <![CDATA[
  729. <channel="#channel">
  730. Logfile = "channel.log"
  731. Format = "mIRC"
  732. outputfile = "stats.html"
  733. PageFoot = "myfooter.txt"
  734. </channel>
  735. <set PageFoot="somefooter.txt">
  736. ]]>
  737. </programlisting></refsynopsisdiv>
  738. <refsect1>
  739. <title>Description</title>
  740. <para>
  741. <command>PageFoot</command> is used to include a file in the stats page,
  742. for example an introduction text, a link to an image or a banner. The
  743. file can hold anything, it will be included raw in the stats page -
  744. so HTML should be preferred. The file will be included in the bottom of
  745. the page. This option is the opposite of <xref linkend="PageHead" />.
  746. </para>
  747. </refsect1>
  748. <refsect1>
  749. <title>Default</title>
  750. <para> none </para>
  751. </refsect1>
  752. </refentry>
  753. <!-- *** LogPrefix *** -->
  754. <refentry id="LogPrefix">
  755. <refmeta> <refentrytitle>LogPrefix</refentrytitle> </refmeta>
  756. <refnamediv>
  757. <refname>LogPrefix</refname>
  758. <refpurpose>only parse logs LogPrefixed with a user defined string</refpurpose>
  759. </refnamediv>
  760. <refsynopsisdiv><programlisting>
  761. <![CDATA[
  762. <channel="#channel">
  763. LogDir="/home/foo/eggdrop/logs/"
  764. Format = "eggdrop"
  765. LogPrefix = "logjun"
  766. </channel>
  767. <set LogPrefix="logjanuary">
  768. ]]>
  769. </programlisting></refsynopsisdiv>
  770. <refsect1>
  771. <title>Description</title>
  772. <para>
  773. When using the <xref linkend="LogDir" /> option and you only want to use
  774. a slew of the files in it, you can have pisg choose only files which are
  775. prefixed with a special string.
  776. </para>
  777. </refsect1>
  778. <refsect1>
  779. <title>Default</title>
  780. <para> unset </para>
  781. </refsect1>
  782. </refentry>
  783. <!-- *** LOGSUFFIX *** -->
  784. <refentry id="LogSuffix">
  785. <refmeta> <refentrytitle>LogSuffix</refentrytitle> </refmeta>
  786. <refnamediv>
  787. <refname>LogSuffix</refname>
  788. <refpurpose>Regexp to sort logfiles by format month||day||year</refpurpose>
  789. </refnamediv>
  790. <refsynopsisdiv><programlisting>
  791. <![CDATA[
  792. <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)">
  793. ]]>
  794. </programlisting></refsynopsisdiv>
  795. <refsect1>
  796. <title>Description</title>
  797. <para>
  798. <command>LogSuffix</command> is used to define the suffix of a logfile,
  799. it only works when <xref linkend="LogDir" /> is defined. The example in
  800. the synopsis is for the eggdrop bots default format.
  801. </para>
  802. </refsect1>
  803. <refsect1>
  804. <title>Default</title>
  805. <para> Unset </para>
  806. </refsect1>
  807. </refentry>
  808. <!-- *** SILENT *** -->
  809. <refentry id="Silent">
  810. <refmeta> <refentrytitle>Silent</refentrytitle> </refmeta>
  811. <refnamediv>
  812. <refname>Silent</refname>
  813. <refpurpose>make pisg silent, suppress messages</refpurpose>
  814. </refnamediv>
  815. <refsynopsisdiv><programlisting>
  816. <![CDATA[
  817. <set Silent="1">
  818. ]]>
  819. </programlisting></refsynopsisdiv>
  820. <refsect1>
  821. <title>Description</title>
  822. <para>
  823. This option is useful mainly from command line when invoking pisg with
  824. <command>--silent 1</command>. But it can also used in the configuration
  825. file. It will suppress all standard output from pisg. Error messages
  826. will still be sent.
  827. </para>
  828. </refsect1>
  829. <refsect1>
  830. <title>Default</title>
  831. <para> 0 (disabled) </para>
  832. </refsect1>
  833. </refentry>
  834. </chapter>
  835. <chapter id="reference-stats">
  836. <title>Options for various statistics features</title>
  837. <!-- *** SHOWACTIVETIMES *** -->
  838. <refentry id="ShowActiveTimes">
  839. <refmeta> <refentrytitle>ShowActiveTimes</refentrytitle> </refmeta>
  840. <refnamediv>
  841. <refname>ShowActiveTimes</refname>
  842. <refpurpose>enable/disable "Most Active Times"</refpurpose>
  843. </refnamediv>
  844. <refsynopsisdiv><programlisting>
  845. <![CDATA[
  846. <channel="#channel">
  847. Logfile = "channel.log"
  848. Format = "xchat"
  849. ShowActiveTimes = "0"
  850. </channel>
  851. <set ShowActiveTimes="1">
  852. ]]>
  853. </programlisting></refsynopsisdiv>
  854. <refsect1>
  855. <title>Description</title>
  856. <para>
  857. With this option you can disable the "Most Active Times" section on the
  858. stats page. It will simply disappear when specifying 0.
  859. </para>
  860. </refsect1>
  861. <refsect1>
  862. <title>Default</title>
  863. <para> 1 (enabled) </para>
  864. </refsect1>
  865. </refentry>
  866. <!-- *** SHOWACTIVENICKS *** -->
  867. <refentry id="ShowActiveNicks">
  868. <refmeta> <refentrytitle>ShowActiveNicks</refentrytitle> </refmeta>
  869. <refnamediv>
  870. <refname>ShowActiveNicks</refname>
  871. <refpurpose>enable/disable "Most Active Nicks"</refpurpose>
  872. </refnamediv>
  873. <refsynopsisdiv><programlisting>
  874. <![CDATA[
  875. <channel="#channel">
  876. Logfile = "channel.log"
  877. Format = "xchat"
  878. ShowActiveNicks = "0"
  879. </channel>
  880. <set ShowActiveNicks="1">
  881. ]]>
  882. </programlisting></refsynopsisdiv>
  883. <refsect1>
  884. <title>Description</title>
  885. <para>
  886. With this option you can disable the "Most Active Nicks" section on the
  887. stats page.
  888. </para>
  889. </refsect1>
  890. <refsect1>
  891. <title>Default</title>
  892. <para> 1 (enabled) </para>
  893. </refsect1>
  894. </refentry>
  895. <!-- *** SHOWBIGNUMBERS *** -->
  896. <refentry id="ShowBigNumbers">
  897. <refmeta> <refentrytitle>ShowBigNumbers</refentrytitle> </refmeta>
  898. <refnamediv>
  899. <refname>ShowBigNumbers</refname>
  900. <refpurpose>enable/disable "Big Numbers" sections</refpurpose>
  901. </refnamediv>
  902. <refsynopsisdiv><programlisting>
  903. <![CDATA[
  904. <channel="#channel">
  905. Logfile = "channel.log"
  906. Format = "xchat"
  907. ShowBigNumbers = "0"
  908. </channel>
  909. <set ShowBigNumbers="1">
  910. ]]>
  911. </programlisting></refsynopsisdiv>
  912. <refsect1>
  913. <title>Description</title>
  914. <para>
  915. With this option you can disable the "Big Numbers" and "Other
  916. Interesting numbers" sections on the stats page. They will simply
  917. disappear when specifying 0.
  918. </para>
  919. </refsect1>
  920. <refsect1>
  921. <title>Default</title>
  922. <para> 1 (enabled) </para>
  923. </refsect1>
  924. </refentry>
  925. <!-- *** SHOWTOPICS *** -->
  926. <refentry id="ShowTopics">
  927. <refmeta> <refentrytitle>ShowTopics</refentrytitle> </refmeta>
  928. <refnamediv>
  929. <refname>ShowTopics</refname>
  930. <refpurpose>enable/disable "Latest topics" sections</refpurpose>
  931. </refnamediv>
  932. <refsynopsisdiv><programlisting>
  933. <![CDATA[
  934. <channel="#channel">
  935. Logfile = "channel.log"
  936. Format = "xchat"
  937. ShowTopics = "0"
  938. </channel>
  939. <set ShowTopics="1">
  940. ]]>
  941. </programlisting></refsynopsisdiv>
  942. <refsect1>
  943. <title>Description</title>
  944. <para>
  945. With this option you can disable the "Latest topics" section on the
  946. stats page. It will simply disappear when specifying 0.
  947. </para>
  948. </refsect1>
  949. <refsect1>
  950. <title>Default</title>
  951. <para> 1 (enabled) </para>
  952. </refsect1>
  953. </refentry>
  954. <!-- *** SHOWLINES *** -->
  955. <refentry id="ShowLines">
  956. <refmeta> <refentrytitle>ShowLines</refentrytitle> </refmeta>
  957. <refnamediv>
  958. <refname>ShowLines</refname>
  959. <refpurpose>enable/disable "words per line"</refpurpose>
  960. </refnamediv>
  961. <refsynopsisdiv><programlisting>
  962. <![CDATA[
  963. <channel="#channel">
  964. Logfile = "channel.log"
  965. Format = "xchat"
  966. ShowLines = "0"
  967. </channel>
  968. <set ShowLines="1">
  969. ]]>
  970. </programlisting></refsynopsisdiv>
  971. <refsect1>
  972. <title>Description</title>
  973. <para>
  974. The default behaviour is to add a column to the "Most Active Nicks"
  975. section displaying the number of lines a user wrote. With this option it
  976. can be disabled.
  977. </para>
  978. </refsect1>
  979. <refsect1>
  980. <title>Default</title>
  981. <para> 1 (enabled) </para>
  982. </refsect1>
  983. </refentry>
  984. <!-- *** SHOWWPL *** -->
  985. <refentry id="ShowWpl">
  986. <refmeta> <refentrytitle>ShowWpl</refentrytitle> </refmeta>
  987. <refnamediv>
  988. <refname>ShowWpl</refname>
  989. <refpurpose>enable/disable "words per line"</refpurpose>
  990. </refnamediv>
  991. <refsynopsisdiv><programlisting>
  992. <![CDATA[
  993. <channel="#channel">
  994. Logfile = "channel.log"
  995. Format = "xchat"
  996. ShowWpl = "0"
  997. </channel>
  998. <set ShowWpl="1">
  999. ]]>
  1000. </programlisting></refsynopsisdiv>
  1001. <refsect1>
  1002. <title>Description</title>
  1003. <para>
  1004. With this option you can enable the "words per line" column in the
  1005. "Most Active Nicks" section. It will add a column describing the average
  1006. words per line for a person.
  1007. </para>
  1008. </refsect1>
  1009. <refsect1>
  1010. <title>Default</title>
  1011. <para> 0 (disabled) </para>
  1012. </refsect1>
  1013. </refentry>
  1014. <!-- *** SHOWCPL *** -->
  1015. <refentry id="ShowCpl">
  1016. <refmeta> <refentrytitle>ShowCpl</refentrytitle> </refmeta>
  1017. <refnamediv>
  1018. <refname>ShowCpl</refname>
  1019. <refpurpose>enable/disable "characters per line"</refpurpose>
  1020. </refnamediv>
  1021. <refsynopsisdiv><programlisting>
  1022. <![CDATA[
  1023. <channel="#channel">
  1024. Logfile = "channel.log"
  1025. Format = "xchat"
  1026. ShowCpl = "0"
  1027. </channel>
  1028. <set ShowCpl="1">
  1029. ]]>
  1030. </programlisting></refsynopsisdiv>
  1031. <refsect1>
  1032. <title>Description</title>
  1033. <para>
  1034. With this option you can enable the "characters per line" column in the
  1035. "Most Active Nicks" section. It will add a column describing the average
  1036. number of characters per line for a person.
  1037. </para>
  1038. </refsect1>
  1039. <refsect1>
  1040. <title>Default</title>
  1041. <para> 0 (disabled) </para>
  1042. </refsect1>
  1043. </refentry>
  1044. <!-- *** SHOWWORDS *** -->
  1045. <refentry id="ShowWords">
  1046. <refmeta> <refentrytitle>ShowWords</refentrytitle> </refmeta>
  1047. <refnamediv>
  1048. <refname>ShowWords</refname>
  1049. <refpurpose>enable/disable "number of words"</refpurpose>
  1050. </refnamediv>
  1051. <refsynopsisdiv><programlisting>
  1052. <![CDATA[
  1053. <channel="#channel">
  1054. Logfile = "channel.log"
  1055. Format = "xchat"
  1056. ShowWords = "0"
  1057. </channel>
  1058. <set ShowWords="1">
  1059. ]]>
  1060. </programlisting></refsynopsisdiv>
  1061. <refsect1>
  1062. <title>Description</title>
  1063. <para>
  1064. The <command>ShowWords</command> option adds a column to the "Most
  1065. Active Nicks" list which list the total number of words a user has
  1066. typed.
  1067. </para>
  1068. </refsect1>
  1069. <refsect1>
  1070. <title>Default</title>
  1071. <para> 0 (disabled) </para>
  1072. </refsect1>
  1073. </refentry>
  1074. <!-- *** ShowLastSeen *** -->
  1075. <refentry id="ShowLastSeen">
  1076. <refmeta> <refentrytitle>ShowLastSeen</refentrytitle> </refmeta>
  1077. <refnamediv>
  1078. <refname>ShowLastSeen</refname>
  1079. <refpurpose>show when a user was last seen on a channel</refpurpose>
  1080. </refnamediv>
  1081. <refsynopsisdiv><programlisting>
  1082. <![CDATA[
  1083. <channel="#channel">
  1084. Logfile = "channel.log"
  1085. Format = "xchat"
  1086. ShowLastSeen = "0"
  1087. </channel>
  1088. <set ShowLastSeen="1">
  1089. ]]>
  1090. </programlisting></refsynopsisdiv>
  1091. <refsect1>
  1092. <title>Description</title>
  1093. <para>
  1094. With this option enabled, a column will be added to the "Most Active
  1095. Nicks" section to display when a user was last seen. E.g. "2 days ago".
  1096. </para>
  1097. </refsect1>
  1098. <refsect1>
  1099. <title>Default</title>
  1100. <para> 0 (disabled) </para>
  1101. </refsect1>
  1102. </refentry>
  1103. <!-- *** SHOWTIME *** -->
  1104. <refentry id="ShowTime">
  1105. <refmeta> <refentrytitle>ShowTime</refentrytitle> </refmeta>
  1106. <refnamediv>
  1107. <refname>ShowTime</refname>
  1108. <refpurpose>show when a nick was active</refpurpose>
  1109. </refnamediv>
  1110. <refsynopsisdiv><programlisting>
  1111. <![CDATA[
  1112. <channel="#channel">
  1113. Logfile = "channel.log"
  1114. Format = "xchat"
  1115. ShowTime = "0"
  1116. </channel>
  1117. <set ShowTime="1">
  1118. ]]>
  1119. </programlisting></refsynopsisdiv>
  1120. <refsect1>
  1121. <title>Description</title>
  1122. <para>
  1123. The default behaviour is to add a column to the "Most Active Nicks"
  1124. section displaying a fancy time bar to show when a user was active. With
  1125. this option it can be disabled.
  1126. </para>
  1127. </refsect1>
  1128. <refsect1>
  1129. <title>Default</title>
  1130. <para> 1 (enabled) </para>
  1131. </refsect1>
  1132. </refentry>
  1133. <!-- *** SHOWLINETIME *** -->
  1134. <refentry id="ShowLineTime">
  1135. <refmeta> <refentrytitle>ShowLineTime</refentrytitle> </refmeta>
  1136. <refnamediv>
  1137. <refname>ShowLineTime</refname>
  1138. <refpurpose>mIRCStats like behaviour of time bar</refpurpose>
  1139. </refnamediv>
  1140. <refsynopsisdiv><programlisting>
  1141. <![CDATA[
  1142. <channel="#channel">
  1143. Logfile = "channel.log"
  1144. Format = "bobot"
  1145. ShowLineTime = "0"
  1146. </channel>
  1147. <set ShowLineTime="1">
  1148. ]]>
  1149. </programlisting></refsynopsisdiv>
  1150. <refsect1>
  1151. <title>Description</title>
  1152. <para>
  1153. The default behaviour is to add a column to the "Most Active Nicks"
  1154. section displaying a fancy time bar to show when a user was active.
  1155. With this option it can be done the same way as mIRCStats does it; that
  1156. is, by putting that time bar next to the number of lines, in the same
  1157. column.
  1158. </para>
  1159. </refsect1>
  1160. <refsect1>
  1161. <title>Default</title>
  1162. <para> 0 (disabled) </para>
  1163. </refsect1>
  1164. </refentry>
  1165. <!-- *** SHOWWORDTIME *** -->
  1166. <refentry id="ShowWordTime">
  1167. <refmeta> <refentrytitle>ShowWordTime</refentrytitle> </refmeta>
  1168. <refnamediv>
  1169. <refname>ShowWordTime</refname>
  1170. <refpurpose>ShowLineTime like behavior of words column</refpurpose>
  1171. </refnamediv>
  1172. <refsynopsisdiv><programlisting>
  1173. <![CDATA[
  1174. <channel="#channel">
  1175. Logfile = "channel.log"
  1176. Format = "bobot"
  1177. ShowWordTime = "0"
  1178. </channel>
  1179. <set ShowWordTime="1">
  1180. ]]>
  1181. </programlisting></refsynopsisdiv>
  1182. <refsect1>
  1183. <title>Description</title>
  1184. <para>
  1185. The default behaviour is to add a column to the "Most Active Nicks"
  1186. section displaying a fancy time bar to show when a user was active.
  1187. With this option it can be done similarly to mIRCStats does it and like
  1188. the ShowLineTime option, but using words instead of lines; that is, by
  1189. putting that time bar next to the number of words, in the same column.
  1190. </para>
  1191. </refsect1>
  1192. <refsect1>
  1193. <title>Default</title>
  1194. <para> 0 (disabled) </para>
  1195. </refsect1>
  1196. </refentry>
  1197. <!-- *** SHOWRANDQUOTE *** -->
  1198. <refentry id="ShowRandQuote">
  1199. <refmeta> <refentrytitle>ShowRandQuote</refentrytitle> </refmeta>
  1200. <refnamediv>
  1201. <refname>ShowRandQuote</refname>
  1202. <refpurpose>enable or disable the random quotes</refpurpose>
  1203. </refnamediv>
  1204. <refsynopsisdiv><programlisting>
  1205. <![CDATA[
  1206. <channel="#channel">
  1207. Logfile = "channel.log"
  1208. Format = "bobot"
  1209. ShowRandQuote = "0"
  1210. </channel>
  1211. <set ShowRandQuote="1">
  1212. ]]>
  1213. </programlisting></refsynopsisdiv>
  1214. <refsect1>
  1215. <title>Description</title>
  1216. <para>
  1217. The default behaviour is to add a column to the "Most Active Nicks"
  1218. section displaying a users random quote. With this option it can be
  1219. disabled.
  1220. </para>
  1221. </refsect1>
  1222. <refsect1>
  1223. <title>Default</title>
  1224. <para> 1 (enabled) </para>
  1225. </refsect1>
  1226. </refentry>
  1227. <!-- *** SHOWLEGEND *** -->
  1228. <refentry id="ShowLegend">
  1229. <refmeta> <refentrytitle>ShowLegend</refentrytitle> </refmeta>
  1230. <refnamediv>
  1231. <refname>ShowLegend</refname>
  1232. <refpurpose>enable or disable the legend of the time bars</refpurpose>
  1233. </refnamediv>
  1234. <refsynopsisdiv><programlisting>
  1235. <![CDATA[
  1236. <channel="#channel">
  1237. Logfile = "channel.log"
  1238. Format = "bobot"
  1239. ShowLegend = "0"
  1240. </channel>
  1241. <set ShowLegend="1">
  1242. ]]>
  1243. </programlisting></refsynopsisdiv>
  1244. <refsect1>
  1245. <title>Description</title>
  1246. <para>
  1247. By default, pisg shows a legend below the "Most Active Times" displaying
  1248. what the different colors means. With this option it can be disabled.
  1249. </para>
  1250. </refsect1>
  1251. <refsect1>
  1252. <title>Default</title>
  1253. <para> 1 (enabled) </para>
  1254. </refsect1>
  1255. </refentry>
  1256. <!-- *** SHOWKICKLINE *** -->
  1257. <refentry id="ShowKickLine">
  1258. <refmeta> <refentrytitle>ShowKickLine</refentrytitle> </refmeta>
  1259. <refnamediv>
  1260. <refname>ShowKickLine</refname>
  1261. <refpurpose>enable or disable the kick line</refpurpose>
  1262. </refnamediv>
  1263. <refsynopsisdiv><programlisting>
  1264. <![CDATA[
  1265. <channel="#channel">
  1266. Logfile = "channel.log"
  1267. Format = "bobot"
  1268. ShowKickLine = "0"
  1269. </channel>
  1270. <set ShowKickLine="1">
  1271. ]]>
  1272. </programlisting></refsynopsisdiv>
  1273. <refsect1>
  1274. <title>Description</title>
  1275. <para>
  1276. By default, pisg shows an example kick line in the "Most kicked"-stats.
  1277. With this option it can be disabled.
  1278. </para>
  1279. </refsect1>
  1280. <refsect1>
  1281. <title>Default</title>
  1282. <para> 1 (enabled) </para>
  1283. </refsect1>
  1284. </refentry>
  1285. <!-- *** SHOWACTIONLINE *** -->
  1286. <refentry id="ShowActionLine">
  1287. <refmeta> <refentrytitle>ShowActionLine</refentrytitle> </refmeta>
  1288. <refnamediv>
  1289. <refname>ShowActionLine</refname>
  1290. <refpurpose>enable or disable the action line</refpurpose>
  1291. </refnamediv>
  1292. <refsynopsisdiv><programlisting>
  1293. <![CDATA[
  1294. <channel="#channel">
  1295. Logfile = "channel.log"
  1296. Format = "bobot"
  1297. ShowActionLine = "0"
  1298. </channel>
  1299. <set ShowActionLine="1">
  1300. ]]>
  1301. </programlisting></refsynopsisdiv>
  1302. <refsect1>
  1303. <title>Description</title>
  1304. <para>
  1305. By default, pisg shows an example action line in the "Most actions"-stats.
  1306. With this option it can be disabled.
  1307. </para>
  1308. </refsect1>
  1309. <refsect1>
  1310. <title>Default</title>
  1311. <para> 1 (enabled) </para>
  1312. </refsect1>
  1313. </refentry>
  1314. <!-- *** SHOWSHOUTLINE *** -->
  1315. <refentry id="ShowShoutLine">
  1316. <refmeta> <refentrytitle>ShowShoutLine</refentrytitle> </refmeta>
  1317. <refnamediv>
  1318. <refname>ShowShoutLine</refname>
  1319. <refpurpose>enable or disable the shout line</refpurpose>
  1320. </refnamediv>
  1321. <refsynopsisdiv><programlisting>
  1322. <![CDATA[
  1323. <channel="#channel">
  1324. Logfile = "channel.log"
  1325. Format = "bobot"
  1326. ShowShoutLine = "0"
  1327. </channel>
  1328. <set ShowShoutLine="1">
  1329. ]]>
  1330. </programlisting></refsynopsisdiv>
  1331. <refsect1>
  1332. <title>Description</title>
  1333. <para>
  1334. By default, pisg shows an example shout line in the "Most shouting
  1335. people"-stats. With this option it can be disabled.
  1336. </para>
  1337. </refsect1>
  1338. <refsect1>
  1339. <title>Default</title>
  1340. <para> 1 (enabled) </para>
  1341. </refsect1>
  1342. </refentry>
  1343. <!-- *** SHOWFOULDECIMALS *** -->
  1344. <refentry id="ShowFoulDecimals">
  1345. <refmeta> <refentrytitle>ShowFoulDecimals</refentrytitle> </refmeta>
  1346. <refnamediv>
  1347. <refname>ShowFoulDecimals</refname>
  1348. <refpurpose>set how many decimals to show</refpurpose>
  1349. </refnamediv>
  1350. <refsynopsisdiv><programlisting>
  1351. <![CDATA[
  1352. <channel="#channel">
  1353. Logfile = "channel.log"
  1354. Format = "bobot"
  1355. ShowFoulDecimals = "2"
  1356. </channel>
  1357. <set ShowFoulDecimals="1">
  1358. ]]>
  1359. </programlisting></refsynopsisdiv>
  1360. <refsect1>
  1361. <title>Description</title>
  1362. <para>
  1363. By default, pisg uses 1 decimal. With this option you could change
  1364. it to whatever you like. Negative is treated as the default value.
  1365. </para>
  1366. </refsect1>
  1367. <refsect1>
  1368. <title>Default</title>
  1369. <para> 1 decimal </para>
  1370. </refsect1>
  1371. </refentry>
  1372. <!-- *** SHOWFOULLINE *** -->
  1373. <refentry id="ShowFoulLine">
  1374. <refmeta> <refentrytitle>ShowFoulLine</refentrytitle> </refmeta>
  1375. <refnamediv>
  1376. <refname>ShowFoulLine</refname>
  1377. <refpurpose>enable or disable the foul line</refpurpose>
  1378. </refnamediv>
  1379. <refsynopsisdiv><programlisting>
  1380. <![CDATA[
  1381. <channel="#channel">
  1382. Logfile = "channel.log"
  1383. Format = "bobot"
  1384. ShowFoulLine = "0"
  1385. </channel>
  1386. <set ShowFoulLine="1">
  1387. ]]>
  1388. </programlisting></refsynopsisdiv>
  1389. <refsect1>
  1390. <title>Description</title>
  1391. <para>
  1392. By default, pisg doesn't show an example foul line in the "Most
  1393. fouls"-stats. With this option it can be enabled.
  1394. </para>
  1395. </refsect1>
  1396. <refsect1>
  1397. <title>Default</title>
  1398. <para> 0 (disabled) </para>
  1399. </refsect1>
  1400. </refentry>
  1401. <!-- *** SHOWVIOLENTLINES *** -->
  1402. <refentry id="ShowViolentLines">
  1403. <refmeta> <refentrytitle>ShowViolentLines</refentrytitle> </refmeta>
  1404. <refnamediv>
  1405. <refname>ShowViolentLines</refname>
  1406. <refpurpose>enable or disable the violent lines</refpurpose>
  1407. </refnamediv>
  1408. <refsynopsisdiv><programlisting>
  1409. <![CDATA[
  1410. <channel="#channel">
  1411. Logfile = "channel.log"
  1412. Format = "bobot"
  1413. ShowViolentLines = "0"
  1414. </channel>
  1415. <set ShowViolentLines="1">
  1416. ]]>
  1417. </programlisting></refsynopsisdiv>
  1418. <refsect1>
  1419. <title>Description</title>
  1420. <para>
  1421. By default, pisg shows example violent lines in the "Most aggressive"
  1422. and "Most attacked"-stats. With this option it can be disabled.
  1423. </para>
  1424. </refsect1>
  1425. <refsect1>
  1426. <title>Default</title>
  1427. <para> 1 (enabled) </para>
  1428. </refsect1>
  1429. </refentry>
  1430. <!-- *** SHOWMUW *** -->
  1431. <refentry id="ShowMuw">
  1432. <refmeta> <refentrytitle>ShowMuw</refentrytitle> </refmeta>
  1433. <refnamediv>
  1434. <refname>ShowMuw</refname>
  1435. <refpurpose>enable or disable "Most used words"</refpurpose>
  1436. </refnamediv>
  1437. <refsynopsisdiv><programlisting>
  1438. <![CDATA[
  1439. <channel="#channel">
  1440. Logfile = "channel.log"
  1441. Format = "xchat"
  1442. ShowMuw = "0"
  1443. </channel>
  1444. <set ShowMuw="1">
  1445. ]]>
  1446. </programlisting></refsynopsisdiv>
  1447. <refsect1>
  1448. <title>Description</title>
  1449. <para>
  1450. By default, pisg adds an "Most used words" section to the stats page.
  1451. With this option you can disable it from being shown.
  1452. See also <xref linkend="WordHistory" />.
  1453. </para>
  1454. </refsect1>
  1455. <refsect1>
  1456. <title>Default</title>
  1457. <para> 1 (enabled) </para>
  1458. </refsect1>
  1459. </refentry>
  1460. <!-- *** SHOWMRN *** -->
  1461. <refentry id="ShowMrn">
  1462. <refmeta> <refentrytitle>ShowMrn</refentrytitle> </refmeta>
  1463. <refnamediv>
  1464. <refname>ShowMrn</refname>
  1465. <refpurpose>enable or disable "Most referenced nicks"</refpurpose>
  1466. </refnamediv>
  1467. <refsynopsisdiv><programlisting>
  1468. <![CDATA[
  1469. <channel="#channel">
  1470. Logfile = "channel.log"
  1471. Format = "xchat"
  1472. ShowMrn = "0"
  1473. </channel>
  1474. <set ShowMrn="1">
  1475. ]]>
  1476. </programlisting></refsynopsisdiv>
  1477. <refsect1>
  1478. <title>Description</title>
  1479. <para>
  1480. By default, pisg adds an "Most referenced nicks" section to the stats
  1481. page. With this option you can disable it from being shown.
  1482. See also <xref linkend="NickHistory" />.
  1483. </para>
  1484. </refsect1>
  1485. <refsect1>
  1486. <title>Default</title>
  1487. <para> 1 (enabled) </para>
  1488. </refsect1>
  1489. </refentry>
  1490. <!-- *** SHOWMRU *** -->
  1491. <refentry id="ShowMru">
  1492. <refmeta> <refentrytitle>ShowMru</refentrytitle> </refmeta>
  1493. <refnamediv>
  1494. <refname>ShowMru</refname>
  1495. <refpurpose>enable or disable "Most referenced URLs"</refpurpose>
  1496. </refnamediv>
  1497. <refsynopsisdiv><programlisting>
  1498. <![CDATA[
  1499. <channel="#channel">
  1500. Logfile = "channel.log"
  1501. Format = "xchat"
  1502. ShowMru = "0"
  1503. </channel>
  1504. <set ShowMru="1">
  1505. ]]>
  1506. </programlisting></refsynopsisdiv>
  1507. <refsect1>
  1508. <title>Description</title>
  1509. <para>
  1510. By default, pisg adds an "Most referenced URLs" section to the stats
  1511. page. With this option you can disable it from being shown.
  1512. See also <xref linkend="UrlHistory" />.
  1513. </para>
  1514. </refsect1>
  1515. <refsect1>
  1516. <title>Default</title>
  1517. <para> 1 (enabled) </para>
  1518. </refsect1>
  1519. </refentry>
  1520. <!-- *** SHOWOPS *** -->
  1521. <refentry id="ShowOps">
  1522. <refmeta> <refentrytitle>ShowOps</refentrytitle> </refmeta>
  1523. <refnamediv>
  1524. <refname>ShowOps</refname>
  1525. <refpurpose>enable or disable op statistics</refpurpose>
  1526. </refnamediv>
  1527. <refsynopsisdiv><programlisting>
  1528. <![CDATA[
  1529. <channel="#channel">
  1530. Logfile = "channel.log"
  1531. Format = "xchat"
  1532. ShowOps = "0"
  1533. </channel>
  1534. <set ShowOps="0">
  1535. ]]>
  1536. </programlisting></refsynopsisdiv>
  1537. <refsect1>
  1538. <title>Description</title>
  1539. <para>
  1540. By default, pisg has op statistics in the "Most interesting numbers"
  1541. section. Here you can disable the feature, it's useful if you don't feel
  1542. that the information is of any value, or your log format doesn't support
  1543. ops/deops.
  1544. </para>
  1545. </refsect1>
  1546. <refsect1>
  1547. <title>Default</title>
  1548. <para> 1 (enabled) </para>
  1549. </refsect1>
  1550. </refentry>
  1551. <!-- *** SHOWVOICES *** -->
  1552. <refentry id="ShowVoices">
  1553. <refmeta> <refentrytitle>ShowVoices</refentrytitle> </refmeta>
  1554. <refnamediv>
  1555. <refname>ShowVoices</refname>
  1556. <refpurpose>enable or disable voice statistics</refpurpose>
  1557. </refnamediv>
  1558. <refsynopsisdiv><programlisting>
  1559. <![CDATA[
  1560. <channel="#channel">
  1561. Logfile = "channel.log"
  1562. Format = "xchat"
  1563. ShowVoices = "0"
  1564. </channel>
  1565. <set ShowVoices="1">
  1566. ]]>
  1567. </programlisting></refsynopsisdiv>
  1568. <refsect1>
  1569. <title>Description</title>
  1570. <para>
  1571. By default, pisg doesn't have voice statistics like it has op
  1572. statistics. Enabling this option will add a section to the "Most
  1573. interesting numbers" displaying who got most voices.
  1574. </para>
  1575. </refsect1>
  1576. <refsect1>
  1577. <title>Default</title>
  1578. <para> 0 (disabled) </para>
  1579. </refsect1>
  1580. </refentry>
  1581. <!-- *** SHOWHALFOPS *** -->
  1582. <refentry id="ShowHalfops">
  1583. <refmeta> <refentrytitle>ShowHalfops</refentrytitle> </refmeta>
  1584. <refnamediv>
  1585. <refname>ShowHalfops</refname>
  1586. <refpurpose>enable or disable halfop statistics</refpurpose>
  1587. </refnamediv>
  1588. <refsynopsisdiv><programlisting>
  1589. <![CDATA[
  1590. <channel="#channel">
  1591. Logfile = "channel.log"
  1592. Format = "xchat"
  1593. ShowHalfops = "0"
  1594. </channel>
  1595. <set ShowHalfops="1">
  1596. ]]>
  1597. </programlisting></refsynopsisdiv>
  1598. <refsect1>
  1599. <title>Description</title>
  1600. <para>
  1601. By default, pisg doesn't have halfop statistics (+h on some servers)
  1602. like it has op statistics. Enabling this option will add a section to
  1603. the "Most interesting numbers" displaying who gave most half-ops.
  1604. </para>
  1605. </refsect1>
  1606. <refsect1>
  1607. <title>Default</title>
  1608. <para> 0 (disabled) </para>
  1609. </refsect1>
  1610. </refentry>
  1611. <!-- *** SHOWMOSTNICKS *** -->
  1612. <refentry id="ShowMostNicks">
  1613. <refmeta> <refentrytitle>ShowMostNicks</refentrytitle> </refmeta>
  1614. <refnamediv>
  1615. <refname>ShowMostNicks</refname>
  1616. <refpurpose>show who changed nick most often</refpurpose>
  1617. </refnamediv>
  1618. <refsynopsisdiv><programlisting>
  1619. <![CDATA[
  1620. <channel="#channel">
  1621. Logfile = "channel.log"
  1622. Format = "xchat"
  1623. ShowMostNicks = "0"
  1624. </channel>
  1625. <set ShowMostNicks="1">
  1626. ]]>
  1627. </programlisting></refsynopsisdiv>
  1628. <refsect1>
  1629. <title>Description</title>
  1630. <para>
  1631. By enabling this option, pisg will add a section to the stats showing
  1632. who had the most nicks, and what the nicks were. This option only works
  1633. properly when <xref linkend="NickTracking" /> is enabled.
  1634. See also <xref linkend="MostNicksHistory" />,
  1635. <xref linkend="MostNicksVerbose" />, and
  1636. <xref linkend="NickLimit" />.
  1637. </para>
  1638. </refsect1>
  1639. <refsect1>
  1640. <title>Default</title>
  1641. <para> 0 (disabled) </para>
  1642. </refsect1>
  1643. </refentry>
  1644. <!-- *** SHOWACTIVEGENDERS *** -->
  1645. <refentry id="ShowActiveGenders">
  1646. <refmeta> <refentrytitle>ShowActiveGenders</refentrytitle> </refmeta>
  1647. <refnamediv>
  1648. <refname>ShowActiveGenders</refname>
  1649. <refpurpose>show stats on which gender talked most</refpurpose>
  1650. </refnamediv>
  1651. <refsynopsisdiv><programlisting>
  1652. <![CDATA[
  1653. <channel="#channel">
  1654. Logfile = "channel.log"
  1655. Format = "xchat"
  1656. ShowActiveGenders = "0"
  1657. </channel>
  1658. <set ShowActiveGenders="1">
  1659. ]]>
  1660. </programlisting></refsynopsisdiv>
  1661. <refsect1>
  1662. <title>Description</title>
  1663. <para>
  1664. Setting this option will make pisg create statistics on which gender
  1665. (female/male/bot) talked most (see the "sex" option in <xref
  1666. linkend="user-options" />). See also <xref linkend="NickLimit" />.
  1667. </para>
  1668. </refsect1>
  1669. <refsect1>
  1670. <title>Default</title>
  1671. <para> 0 (disabled) </para>
  1672. </refsect1>
  1673. </refentry>
  1674. <!-- *** SHOWKARMA *** -->
  1675. <refentry id="ShowKarma">
  1676. <refmeta> <refentrytitle>ShowKarma</refentrytitle> </refmeta>
  1677. <refnamediv>
  1678. <refname>ShowKarma</refname>
  1679. <refpurpose>show channel karma</refpurpose>
  1680. </refnamediv>
  1681. <refsynopsisdiv><programlisting>
  1682. <![CDATA[
  1683. <channel="#channel">
  1684. Logfile = "channel.log"
  1685. Format = "xchat"
  1686. ShowKarma = "0"
  1687. </channel>
  1688. <set ShowKarma="1">
  1689. ]]>
  1690. </programlisting></refsynopsisdiv>
  1691. <refsect1>
  1692. <title>Description</title>
  1693. <para>
  1694. With this option, pisg will analyze the channel karma. Users can give other
  1695. users (or things) good or bad karma by saying "nickname++" or "nickname--";
  1696. "nickname==" resets it to zero. Only the last karma is remembered per
  1697. nick/nick combination, so there is at most +- 1 karma point.
  1698. See also <xref linkend="KarmaHistory" /> and <xref linkend="NickLimit" />.
  1699. </para>
  1700. </refsect1>
  1701. <refsect1>
  1702. <title>Default</title>
  1703. <para> 0 (disabled) </para>
  1704. </refsect1>
  1705. </refentry>
  1706. <!-- *** SHOWMOSTACTIVEBYHOUR *** -->
  1707. <refentry id="ShowMostActiveByHour">
  1708. <refmeta> <refentrytitle>ShowMostActiveByHour</refentrytitle> </refmeta>
  1709. <refnamediv>
  1710. <refname>ShowMostActiveByHour</refname>
  1711. <refpurpose>show most active nicks by hour</refpurpose>
  1712. </refnamediv>
  1713. <refsynopsisdiv><programlisting>
  1714. <![CDATA[
  1715. <channel="#channel">
  1716. Logfile = "channel.log"
  1717. Format = "xchat"
  1718. ShowMostActiveByHour = "0"
  1719. </channel>
  1720. <set ShowMostActiveByHour="1">
  1721. ]]>
  1722. </programlisting></refsynopsisdiv>
  1723. <refsect1>
  1724. <title>Description</title>
  1725. <para>
  1726. By enabling this option, pisg will add a section to the stats showing
  1727. "Most Active Nicks By Hour" - also look at the
  1728. <xref linkend="ShowMostActiveByHourGraph" /> and
  1729. <xref linkend="ActiveNicksByHour" /> settings.
  1730. </para>
  1731. </refsect1>
  1732. <refsect1>
  1733. <title>Default</title>
  1734. <para> 0 (disabled) </para>
  1735. </refsect1>
  1736. </refentry>
  1737. <!-- *** SHOWONLYTOP *** -->
  1738. <refentry id="ShowOnlyTop">
  1739. <refmeta> <refentrytitle>ShowOnlyTop</refentrytitle> </refmeta>
  1740. <refnamediv>
  1741. <refname>ShowOnlyTop</refname>
  1742. <refpurpose>only count stats for top talkers, ignore less-active users</refpurpose>
  1743. </refnamediv>
  1744. <refsynopsisdiv><programlisting>
  1745. <![CDATA[
  1746. <channel="#channel">
  1747. Logfile = "channel.log"
  1748. Format = "xchat"
  1749. ShowOnlyTop = "1"
  1750. </channel>
  1751. <set ShowOnlyTop="1">
  1752. ]]>
  1753. </programlisting></refsynopsisdiv>
  1754. <refsect1>
  1755. <title>Description</title>
  1756. <para>
  1757. By enabling this option, stats in the "Big Numbers" and "Interesting
  1758. Numbers" section will only be counted for users who were the most
  1759. active. E.g. users who appear in the "Most Active Nicks" section, as
  1760. respected by the ActiveNicks and ActiveNicks2 options. See also
  1761. <xref linkend="BigNumbersThreshold" />.
  1762. </para>
  1763. </refsect1>
  1764. <refsect1>
  1765. <title>Default</title>
  1766. <para> 0 (disabled) </para>
  1767. </refsect1>
  1768. </refentry>
  1769. <!-- *** SHOWMOSTACTIVEBYHOURGRAPH *** -->
  1770. <refentry id="ShowMostActiveByHourGraph">
  1771. <refmeta> <refentrytitle>ShowMostActiveByHourGraph</refentrytitle> </refmeta>
  1772. <refnamediv>
  1773. <refname>ShowMostActiveByHourGraph</refname>
  1774. <refpurpose>show graphs in most active nicks by hour</refpurpose>
  1775. </refnamediv>
  1776. <refsynopsisdiv><programlisting>
  1777. <![CDATA[
  1778. <channel="#channel">
  1779. Logfile = "channel.log"
  1780. Format = "xchat"
  1781. ShowMostActiveByHourGraph = "0"
  1782. </channel>
  1783. <set ShowMostActiveByHour="1">
  1784. <set ShowMostActiveByHourGraph="1">
  1785. ]]>
  1786. </programlisting></refsynopsisdiv>
  1787. <refsect1>
  1788. <title>Description</title>
  1789. <para>
  1790. By enabling this option and the <xref linkend="ShowMostActiveByHour" />
  1791. option, pisg will show graphs in the "Most Active Nicks By Hour"
  1792. section.
  1793. </para>
  1794. </refsect1>
  1795. <refsect1>
  1796. <title>Default</title>
  1797. <para> 0 (disabled) </para>
  1798. </refsect1>
  1799. </refentry>
  1800. <!-- *** IGNOREWORDS *** -->
  1801. <refentry id="IgnoreWords">
  1802. <refmeta> <refentrytitle>IgnoreWords</refentrytitle> </refmeta>
  1803. <refnamediv>
  1804. <refname>IgnoreWords</refname>
  1805. <refpurpose>ignore specified words</refpurpose>
  1806. </refnamediv>
  1807. <refsynopsisdiv><programlisting>
  1808. <![CDATA[
  1809. <set IgnoreWords="there about">
  1810. ]]>
  1811. </programlisting></refsynopsisdiv>
  1812. <refsect1>
  1813. <title>Description</title>
  1814. <para>
  1815. Sometimes words in the "most used words" appears which you don't want to
  1816. see, with this option you can ignore these words. It also applies to the
  1817. "most referenced nicks" section. It's a space separated list of words.
  1818. You can use * like in nick aliases.
  1819. Can not be used in a channel-only context.
  1820. </para>
  1821. </refsect1>
  1822. <refsect1>
  1823. <title>Default</title>
  1824. <para> unset </para>
  1825. </refsect1>
  1826. </refentry>
  1827. <!-- *** NOIGNOREDQUOTES *** -->
  1828. <refentry id="NoIgnoredQuotes">
  1829. <refmeta> <refentrytitle>NoIgnoredQuotes</refentrytitle> </refmeta>
  1830. <refnamediv>
  1831. <refname>NoIgnoredQuotes</refname>
  1832. <refpurpose>Control random quote output</refpurpose>
  1833. </refnamediv>
  1834. <refsynopsisdiv><programlisting>
  1835. <![CDATA[
  1836. <set NoIgnoredQuotes="1">
  1837. ]]>
  1838. </programlisting></refsynopsisdiv>
  1839. <refsect1>
  1840. <title>Description</title>
  1841. <para>
  1842. When set to "1", pisg will not output quotes containing ignored words.
  1843. Pisg will output a blank line after trying 20 random quotes if all 20 random quotes were ignored.
  1844. </para>
  1845. </refsect1>
  1846. <refsect1>
  1847. <title>Default</title>
  1848. <para> 0 </para>
  1849. </refsect1>
  1850. </refentry>
  1851. <!-- *** FOULWORDS *** -->
  1852. <refentry id="FoulWords">
  1853. <refmeta> <refentrytitle>FoulWords</refentrytitle> </refmeta>
  1854. <refnamediv>
  1855. <refname>FoulWords</refname>
  1856. <refpurpose>specify words considered to be bad/FoulWords language</refpurpose>
  1857. </refnamediv>
  1858. <refsynopsisdiv><programlisting>
  1859. <![CDATA[
  1860. <set FoulWords="ass fuck bitch">
  1861. ]]>
  1862. </programlisting></refsynopsisdiv>
  1863. <refsect1>
  1864. <title>Description</title>
  1865. <para>
  1866. There is a section in the "Most interesting numbers" which tells who had
  1867. a "dirty mouth" - here you can define which words are considered being
  1868. bad/foul. It is a space separated list of words.
  1869. You can use * like in nick aliases.
  1870. Can not be used in a channel-only context.
  1871. </para>
  1872. </refsect1>
  1873. <refsect1>
  1874. <title>Default</title>
  1875. <para> ass fuck bitch shit scheisse kacke arsch ficker ficken schlampe </para>
  1876. </refsect1>
  1877. </refentry>
  1878. <!-- *** VIOLENTWORDS *** -->
  1879. <refentry id="ViolentWords">
  1880. <refmeta> <refentrytitle>ViolentWords</refentrytitle> </refmeta>
  1881. <refnamediv>
  1882. <refname>ViolentWords</refname>
  1883. <refpurpose>specify words considered to be aggressive/violent</refpurpose>
  1884. </refnamediv>
  1885. <refsynopsisdiv><programlisting>
  1886. <![CDATA[
  1887. <set ViolentWords="slaps beats kick">
  1888. ]]>
  1889. </programlisting></refsynopsisdiv>
  1890. <refsect1>
  1891. <title>Description</title>
  1892. <para>
  1893. There is a section in the "Most interesting numbers" which tells who is
  1894. most "aggressive" - here you can define which words are considered being
  1895. "violent". It is a space separated list of words. You can use * like in
  1896. nick aliases. Can not be used in a channel-only context.
  1897. </para>
  1898. </refsect1>
  1899. <refsect1>
  1900. <title>Default</title>
  1901. <para> slaps beats smacks </para>
  1902. </refsect1>
  1903. </refentry>
  1904. <!-- *** MinQuote *** -->
  1905. <refentry id="MinQuote">
  1906. <refmeta> <refentrytitle>MinQuote</refentrytitle> </refmeta>
  1907. <refnamediv>
  1908. <refname>MinQuote</refname>
  1909. <refpurpose>minimum numbers of letters for a random quote</refpurpose>
  1910. </refnamediv>
  1911. <refsynopsisdiv><programlisting>
  1912. <![CDATA[
  1913. <channel="#channel">
  1914. Logfile = "channel.log"
  1915. Format = "xchat"
  1916. MinQuote = "10"
  1917. </channel>
  1918. <set MinQuote="5">
  1919. ]]>
  1920. </programlisting></refsynopsisdiv>
  1921. <refsect1>
  1922. <title>Description</title>
  1923. <para>
  1924. The random quotes displayed in the "Most Active Nicks" section has a
  1925. certain range specified. With this option you can change the minimum
  1926. number of letters required for a random quote. Also see the
  1927. <xref linkend="MaxQuote" /> option.
  1928. </para>
  1929. </refsect1>
  1930. <refsect1>
  1931. <title>Default</title>
  1932. <para> 25 </para>
  1933. </refsect1>
  1934. </refentry>
  1935. <!-- *** MaxQuote *** -->
  1936. <refentry id="MaxQuote">
  1937. <refmeta> <refentrytitle>MaxQuote</refentrytitle> </refmeta>
  1938. <refnamediv>
  1939. <refname>MaxQuote</refname>
  1940. <refpurpose>maximum numbers of letters for a random quote</refpurpose>
  1941. </refnamediv>
  1942. <refsynopsisdiv><programlisting>
  1943. <![CDATA[
  1944. <channel="#channel">
  1945. Logfile = "channel.log"
  1946. Format = "xchat"
  1947. MaxQuote = "70"
  1948. </channel>
  1949. <set MaxQuote="100">
  1950. ]]>
  1951. </programlisting></refsynopsisdiv>
  1952. <refsect1>
  1953. <title>Description</title>
  1954. <para>
  1955. The random quotes displayed in the "Most Active Nicks" section has a
  1956. certain range specified. With this option you can change the maximum
  1957. number of letters required for a random quote. Also see the
  1958. <xref linkend="MinQuote" /> option.
  1959. </para>
  1960. </refsect1>
  1961. <refsect1>
  1962. <title>Default</title>
  1963. <para> 65 </para>
  1964. </refsect1>
  1965. </refentry>
  1966. <!-- *** WORDLENGTH *** -->
  1967. <refentry id="WordLength">
  1968. <refmeta> <refentrytitle>WordLength</refentrytitle> </refmeta>
  1969. <refnamediv>
  1970. <refname>WordLength</refname>
  1971. <refpurpose>minimum number of characters in an interesting word</refpurpose>
  1972. </refnamediv>
  1973. <refsynopsisdiv><programlisting>
  1974. <![CDATA[
  1975. <channel="#channel">
  1976. Logfile = "channel.log"
  1977. Format = "xchat"
  1978. WordLength = "10"
  1979. </channel>
  1980. <set WordLength="2">
  1981. ]]>
  1982. </programlisting></refsynopsisdiv>
  1983. <refsect1>
  1984. <title>Description</title>
  1985. <para>
  1986. The "Most Used Words" section on the stats page display the most used
  1987. words. The default is that a word only appears if it is longer than 5
  1988. characters. With this option you can change that minimum.
  1989. </para>
  1990. </refsect1>
  1991. <refsect1>
  1992. <title>Default</title>
  1993. <para> 5 </para>
  1994. </refsect1>
  1995. </refentry>
  1996. <!-- *** QUOTEWIDTH *** -->
  1997. <refentry id="QuoteWidth">
  1998. <refmeta> <refentrytitle>QuoteWidth</refentrytitle> </refmeta>
  1999. <refnamediv>
  2000. <refname>QuoteWidth</refname>
  2001. <refpurpose>maximum allowed length of a "word" with no spaces</refpurpose>
  2002. </refnamediv>
  2003. <refsynopsisdiv><programlisting>
  2004. <![CDATA[
  2005. <channel="#channel">
  2006. Logfile = "channel.log"
  2007. Format = "xchat"
  2008. QuoteWidth = "48"
  2009. </channel>
  2010. <set QuoteWidth="48">
  2011. ]]>
  2012. </programlisting></refsynopsisdiv>
  2013. <refsect1>
  2014. <title>Description</title>
  2015. <para>
  2016. Pisg will automatically insert a space in words that have a length
  2017. over the amount QuoteWidth is set to. When used in breaking up
  2018. URLs it will insert a space in the displayed URL, but not in the
  2019. actual URL referenced by the HREF.
  2020. </para>
  2021. </refsect1>
  2022. <refsect1>
  2023. <title>Default</title>
  2024. <para> 80</para>
  2025. </refsect1>
  2026. </refentry>
  2027. <!-- *** BIGNUMBERSTHRESHOLD *** -->
  2028. <refentry id="BigNumbersThreshold">
  2029. <refmeta> <refentrytitle>BigNumbersThreshold</refentrytitle> </refmeta>
  2030. <refnamediv>
  2031. <refname>BigNumbersThreshold</refname>
  2032. <refpurpose>Minimum number of lines per user for some "Big Numbers" statistics</refpurpose>
  2033. </refnamediv>
  2034. <refsynopsisdiv><programlisting>
  2035. <![CDATA[
  2036. <channel="#channel">
  2037. Logfile = "channel.log"
  2038. Format = "xchat"
  2039. BigNumbersThreshold = "10"
  2040. </channel>
  2041. <set BigNumbersThreshold="sqrt">
  2042. ]]>
  2043. </programlisting></refsynopsisdiv>
  2044. <refsect1>
  2045. <title>Description</title>
  2046. <para>
  2047. Pisg will ignore users with less than this setting lines in the "questions
  2048. asked", "shouts loudest", "CAPSLOCK", "longest line", "most sad", and "most
  2049. happy" sections. If the setting is "sqrt" (the default), it will be
  2050. dynamically replaced with the square root of the number of lines of the
  2051. most active nick. See also <xref linkend="ShowOnlyTop" />.
  2052. </para>
  2053. </refsect1>
  2054. <refsect1>
  2055. <title>Default</title>
  2056. <para> sqrt </para>
  2057. </refsect1>
  2058. </refentry>
  2059. <!-- *** ACTIVENICKS *** -->
  2060. <refentry id="ActiveNicks">
  2061. <refmeta> <refentrytitle>ActiveNicks</refentrytitle> </refmeta>
  2062. <refnamediv>
  2063. <refname>ActiveNicks</refname>
  2064. <refpurpose>nicks to show in "Most Active Nicks"</refpurpose>
  2065. </refnamediv>
  2066. <refsynopsisdiv><programlisting>
  2067. <![CDATA[
  2068. <channel="#channel">
  2069. Logfile = "channel.log"
  2070. Format = "mIRC"
  2071. ActiveNicks = "50"
  2072. </channel>
  2073. <set ActiveNicks="10">
  2074. ]]>
  2075. </programlisting></refsynopsisdiv>
  2076. <refsect1>
  2077. <title>Description</title>
  2078. <para>
  2079. With this option you can define how many nicks you want to appear in the
  2080. "Most Active Nicks" section on the stats page.
  2081. </para>
  2082. </refsect1>
  2083. <refsect1>
  2084. <title>Default</title>
  2085. <para> 25 </para>
  2086. </refsect1>
  2087. </refentry>
  2088. <!-- *** ACTIVENICKS2 *** -->
  2089. <refentry id="ActiveNicks2">
  2090. <refmeta> <refentrytitle>ActiveNicks2</refentrytitle> </refmeta>
  2091. <refnamediv>
  2092. <refname>ActiveNicks2</refname>
  2093. <refpurpose>nicks to show in "These didn't make it.."</refpurpose>
  2094. </refnamediv>
  2095. <refsynopsisdiv><programlisting>
  2096. <![CDATA[
  2097. <channel="#channel">
  2098. Logfile = "channel.log"
  2099. Format = "mIRC"
  2100. ActiveNicks2 = "25"
  2101. </channel>
  2102. <set ActiveNicks2="10">
  2103. ]]>
  2104. </programlisting></refsynopsisdiv>
  2105. <refsect1>
  2106. <title>Description</title>
  2107. <para>
  2108. With this option you can define how many nicks you want to appear in the
  2109. "These didn't make it" section on the stats page.
  2110. </para>
  2111. </refsect1>
  2112. <refsect1>
  2113. <title>Default</title>
  2114. <para> 30 </para>
  2115. </refsect1>
  2116. </refentry>
  2117. <!-- *** ACTIVENICKSBYHOUR *** -->
  2118. <refentry id="ActiveNicksByHour">
  2119. <refmeta> <refentrytitle>ActiveNicksByHour</refentrytitle> </refmeta>
  2120. <refnamediv>
  2121. <refname>ActiveNicksByHour</refname>
  2122. <refpurpose>number of nicks to show in "Most Active Nicks By Hour"</refpurpose>
  2123. </refnamediv>
  2124. <refsynopsisdiv><programlisting>
  2125. <![CDATA[
  2126. <channel="#channel">
  2127. Logfile = "channel.log"
  2128. Format = "mIRC"
  2129. ActiveNicksByHour = "25"
  2130. </channel>
  2131. <set ActiveNicksByHour="10">
  2132. ]]>
  2133. </programlisting></refsynopsisdiv>
  2134. <refsect1>
  2135. <title>Description</title>
  2136. <para>
  2137. With this option you can define how many nicks you want to appear in the
  2138. "Most Active Nicks By Hour" section on the stats page.
  2139. </para>
  2140. </refsect1>
  2141. <refsect1>
  2142. <title>Default</title>
  2143. <para> 10 </para>
  2144. </refsect1>
  2145. </refentry>
  2146. <!-- *** MOSTNICKSHISTORY *** -->
  2147. <refentry id="MostNicksHistory">
  2148. <refmeta> <refentrytitle>MostNicksHistory</refentrytitle> </refmeta>
  2149. <refnamediv>
  2150. <refname>MostNicksHistory</refname>
  2151. <refpurpose>maximum number of nicks to show in "users with most nicknames"</refpurpose>
  2152. </refnamediv>
  2153. <refsynopsisdiv><programlisting>
  2154. <![CDATA[
  2155. <channel="#channel">
  2156. Logfile = "channel.log"
  2157. Format = "mIRC"
  2158. MostNicksHistory = "2"
  2159. </channel>
  2160. <set MostNicksHistory="10">
  2161. ]]>
  2162. </programlisting></refsynopsisdiv>
  2163. <refsect1>
  2164. <title>Description</title>
  2165. <para>
  2166. With this option you can define how many nicks you want to appear in
  2167. the "Users with most nicknames" section. See also
  2168. <xref linkend="ShowMostNicks" /> and <xref linkend="MostNicksVerbose" />.
  2169. </para>
  2170. </refsect1>
  2171. <refsect1>
  2172. <title>Default</title>
  2173. <para> 5 </para>
  2174. </refsect1>
  2175. </refentry>
  2176. <!-- *** MOSTNICKSVERBOSE *** -->
  2177. <refentry id="MostNicksVerbose">
  2178. <refmeta> <refentrytitle>MostNicksVerbose</refentrytitle> </refmeta>
  2179. <refnamediv>
  2180. <refname>MostNicksVerbose</refname>
  2181. <refpurpose>show nicks used in "most nicks"</refpurpose>
  2182. </refnamediv>
  2183. <refsynopsisdiv><programlisting>
  2184. <![CDATA[
  2185. <channel="#channel">
  2186. Logfile = "channel.log"
  2187. Format = "mIRC"
  2188. MostNicksVerbose = "0"
  2189. </channel>
  2190. <set MostNicksVerbose="1">
  2191. ]]>
  2192. </programlisting></refsynopsisdiv>
  2193. <refsect1>
  2194. <title>Description</title>
  2195. <para>
  2196. By disabling this option you can stop pisg from displaying all the nicks
  2197. a user has had in the "Most used nicks" section.
  2198. See also <xref linkend="ShowMostNicks" />,
  2199. <xref linkend="MostNicksHistory" />, and <xref linkend="NickLimit" />.
  2200. </para>
  2201. </refsect1>
  2202. <refsect1>
  2203. <title>Default</title>
  2204. <para> 1 (enabled) </para>
  2205. </refsect1>
  2206. </refentry>
  2207. <!-- *** TOPICHISTORY *** -->
  2208. <refentry id="TopicHistory">
  2209. <refmeta> <refentrytitle>TopicHistory</refentrytitle> </refmeta>
  2210. <refnamediv>
  2211. <refname>TopicHistory</refname>
  2212. <refpurpose>maximum number of topics to show</refpurpose>
  2213. </refnamediv>
  2214. <refsynopsisdiv><programlisting>
  2215. <![CDATA[
  2216. <channel="#channel">
  2217. Logfile = "channel.log"
  2218. Format = "mIRC"
  2219. TopicHistory = "2"
  2220. </channel>
  2221. <set TopicHistory="10">
  2222. ]]>
  2223. </programlisting></refsynopsisdiv>
  2224. <refsect1>
  2225. <title>Description</title>
  2226. <para>
  2227. With this option you can define how many topics you want to appear in
  2228. the "Latest topics" section.
  2229. </para>
  2230. </refsect1>
  2231. <refsect1>
  2232. <title>Default</title>
  2233. <para> 3 </para>
  2234. </refsect1>
  2235. </refentry>
  2236. <!-- *** URLHISTORY *** -->
  2237. <refentry id="UrlHistory">
  2238. <refmeta> <refentrytitle>UrlHistory</refentrytitle> </refmeta>
  2239. <refnamediv>
  2240. <refname>UrlHistory</refname>
  2241. <refpurpose>maximum number of URLs to show</refpurpose>
  2242. </refnamediv>
  2243. <refsynopsisdiv><programlisting>
  2244. <![CDATA[
  2245. <channel="#channel">
  2246. Logfile = "channel.log"
  2247. Format = "mIRC"
  2248. UrlHistory = "2"
  2249. </channel>
  2250. <set UrlHistory="10">
  2251. ]]>
  2252. </programlisting></refsynopsisdiv>
  2253. <refsect1>
  2254. <title>Description</title>
  2255. <para>
  2256. With this option you can define how many URLs you want to appear in
  2257. the "Most referenced URLs" section. See also <xref linkend="ShowMru" />.
  2258. </para>
  2259. </refsect1>
  2260. <refsect1>
  2261. <title>Default</title>
  2262. <para> 5 </para>
  2263. </refsect1>
  2264. </refentry>
  2265. <!-- *** WORDHISTORY *** -->
  2266. <refentry id="WordHistory">
  2267. <refmeta> <refentrytitle>WordHistory</refentrytitle> </refmeta>
  2268. <refnamediv>
  2269. <refname>WordHistory</refname>
  2270. <refpurpose>maximum number of words to show</refpurpose>
  2271. </refnamediv>
  2272. <refsynopsisdiv><programlisting>
  2273. <![CDATA[
  2274. <channel="#channel">
  2275. Logfile = "channel.log"
  2276. Format = "mIRC"
  2277. WordHistory = "5"
  2278. </channel>
  2279. <set WordHistory="15">
  2280. ]]>
  2281. </programlisting></refsynopsisdiv>
  2282. <refsect1>
  2283. <title>Description</title>
  2284. <para>
  2285. With this option you can define how many words you want to appear in
  2286. the "Most used words" section. See also <xref linkend="ShowMuw" />.
  2287. </para>
  2288. </refsect1>
  2289. <refsect1>
  2290. <title>Default</title>
  2291. <para> 10 </para>
  2292. </refsect1>
  2293. </refentry>
  2294. <!-- *** NICKHISTORY *** -->
  2295. <refentry id="NickHistory">
  2296. <refmeta> <refentrytitle>NickHistory</refentrytitle> </refmeta>
  2297. <refnamediv>
  2298. <refname>NickHistory</refname>
  2299. <refpurpose>maximum number of nicks to show in "Most referenced nicks"</refpurpose>
  2300. </refnamediv>
  2301. <refsynopsisdiv><programlisting>
  2302. <![CDATA[
  2303. <channel="#channel">
  2304. logfile = "channel.log"
  2305. format = "mIRC"
  2306. NickHistory = "3"
  2307. </channel>
  2308. <set NickHistory="15">
  2309. ]]>
  2310. </programlisting></refsynopsisdiv>
  2311. <refsect1>
  2312. <title>Description</title>
  2313. <para>
  2314. With this option you can define how many nicks you want to appear in
  2315. the "Most referenced nicks" section. See also <xref linkend="ShowMrn" />.
  2316. </para>
  2317. </refsect1>
  2318. <refsect1>
  2319. <title>Default</title>
  2320. <para> 5 </para>
  2321. </refsect1>
  2322. </refentry>
  2323. <!-- *** KarmaHistory *** -->
  2324. <refentry id="KarmaHistory">
  2325. <refmeta> <refentrytitle>KarmaHistory</refentrytitle> </refmeta>
  2326. <refnamediv>
  2327. <refname>KarmaHistory</refname>
  2328. <refpurpose>maximum number of nicks to show in "Karma"</refpurpose>
  2329. </refnamediv>
  2330. <refsynopsisdiv><programlisting>
  2331. <![CDATA[
  2332. <channel="#channel">
  2333. logfile = "channel.log"
  2334. format = "mIRC"
  2335. KarmaHistory = "3"
  2336. </channel>
  2337. <set KarmaHistory="15">
  2338. ]]>
  2339. </programlisting></refsynopsisdiv>
  2340. <refsect1>
  2341. <title>Description</title>
  2342. <para>
  2343. At most this many nicks will appear in the good and bad karma stats.
  2344. See also <xref linkend="ShowKarma" /> and <xref linkend="NickLimit" />.
  2345. </para>
  2346. </refsect1>
  2347. <refsect1>
  2348. <title>Default</title>
  2349. <para> 5 </para>
  2350. </refsect1>
  2351. </refentry>
  2352. <!-- *** NICKTRACKING *** -->
  2353. <refentry id="NickTracking">
  2354. <refmeta> <refentrytitle>NickTracking</refentrytitle> </refmeta>
  2355. <refnamediv>
  2356. <refname>NickTracking</refname>
  2357. <refpurpose>track nick changes and create aliases</refpurpose>
  2358. </refnamediv>
  2359. <refsynopsisdiv><programlisting>
  2360. <![CDATA[
  2361. <set NickTracking="1">
  2362. ]]>
  2363. </programlisting></refsynopsisdiv>
  2364. <refsect1>
  2365. <title>Description</title>
  2366. <para>
  2367. Enabling this option will track nick changes as well as it can. It will
  2368. then automatically create aliases for these nicks. Useful for
  2369. <xref linkend="ShowMostNicks" /> and other stats.
  2370. </para>
  2371. </refsect1>
  2372. <refsect1>
  2373. <title>Default</title>
  2374. <para> 0 (disabled) </para>
  2375. </refsect1>
  2376. </refentry>
  2377. <!-- *** NickLimit *** -->
  2378. <refentry id="NickLimit">
  2379. <refmeta> <refentrytitle>NickLimit</refentrytitle> </refmeta>
  2380. <refnamediv>
  2381. <refname>NickLimit</refname>
  2382. <refpurpose>maximum number of nicks in lists</refpurpose>
  2383. </refnamediv>
  2384. <refsynopsisdiv><programlisting>
  2385. <![CDATA[
  2386. <set NickLimit="0">
  2387. ]]>
  2388. </programlisting></refsynopsisdiv>
  2389. <refsect1>
  2390. <title>Description</title>
  2391. <para>
  2392. This option trims lists of nicks to a maximum length, replacing the rest
  2393. with "...". Setting to 0 disables trimming. Affected are the used nicks in
  2394. the "Users with most nicknames" section, nicks in "Most active genders",
  2395. and nicks in the "Good/bad karma by" columns. See
  2396. <xref linkend="ShowMostNicks" />, <xref linkend="ShowKarma" />, and
  2397. <xref linkend="ShowActiveGenders" />.
  2398. </para>
  2399. </refsect1>
  2400. <refsect1>
  2401. <title>Default</title>
  2402. <para> 10 </para>
  2403. </refsect1>
  2404. </refentry>
  2405. <!-- *** SORTBYWORDS *** -->
  2406. <refentry id="SortByWords">
  2407. <refmeta> <refentrytitle>SortByWords</refentrytitle> </refmeta>
  2408. <refnamediv>
  2409. <refname>SortByWords</refname>
  2410. <refpurpose>sort "most active nicks" by words</refpurpose>
  2411. </refnamediv>
  2412. <refsynopsisdiv><programlisting>
  2413. <![CDATA[
  2414. <channel="#channel">
  2415. logfile = "channel.log"
  2416. format = "xchat"
  2417. SortByWords = "0"
  2418. </channel>
  2419. <set SortByWords="1">
  2420. ]]>
  2421. </programlisting></refsynopsisdiv>
  2422. <refsect1>
  2423. <title>Description</title>
  2424. <para>
  2425. The default for the "Most Active Nicks" section - is to sort users by
  2426. lines. Enabling this will sort it by words instead.
  2427. </para>
  2428. </refsect1>
  2429. <refsect1>
  2430. <title>Default</title>
  2431. <para> 0 (disabled) </para>
  2432. </refsect1>
  2433. </refentry>
  2434. </chapter>
  2435. <chapter id="reference-pictures">
  2436. <title>Picture options</title>
  2437. <!-- *** PICLOCATION *** -->
  2438. <refentry id="PicLocation">
  2439. <refmeta> <refentrytitle>PicLocation</refentrytitle> </refmeta>
  2440. <refnamediv>
  2441. <refname>PicLocation</refname>
  2442. <refpurpose>path to images on stats page</refpurpose>
  2443. </refnamediv>
  2444. <refsynopsisdiv><programlisting>
  2445. <![CDATA[
  2446. <set PicLocation="gfx/">
  2447. ]]>
  2448. </programlisting></refsynopsisdiv>
  2449. <refsect1>
  2450. <title>Description</title>
  2451. <para>
  2452. The location to the pictures used on the stats page - not the user
  2453. pictures but the different bars in "Most Active Times".
  2454. </para>
  2455. </refsect1>
  2456. <refsect1>
  2457. <title>Default</title>
  2458. <para> Current directory </para>
  2459. </refsect1>
  2460. </refentry>
  2461. <!-- *** USERPICS *** -->
  2462. <refentry id="UserPics">
  2463. <refmeta> <refentrytitle>UserPics</refentrytitle> </refmeta>
  2464. <refnamediv>
  2465. <refname>UserPics</refname>
  2466. <refpurpose>number of user pictures per row</refpurpose>
  2467. </refnamediv>
  2468. <refsynopsisdiv><programlisting>
  2469. <![CDATA[
  2470. <channel="#channel">
  2471. Logfile = "channel.log"
  2472. UserPics = "no"
  2473. </channel>
  2474. <set UserPics="3">
  2475. ]]>
  2476. </programlisting></refsynopsisdiv>
  2477. <refsect1>
  2478. <title>Description</title>
  2479. <para>
  2480. <command>UserPics</command> allows you to configure the number of user
  2481. pictures per row. Per default, one picture will be shown. Since pictures
  2482. are usually higher than one line of text, this lets the table grow. With
  2483. settings greater than 1, several pictures will be placed next to each
  2484. other. A good setting would be <command>UserPics</command>=3 and pictures
  2485. of size 60x60. Set <command>UserPics</command> to no or 0 to disable user
  2486. pictures. The latter is useful if you share a user config file between
  2487. channels and want to disable user pictures for some channels.
  2488. </para>
  2489. </refsect1>
  2490. <refsect1>
  2491. <title>Default</title>
  2492. <para> yes (1) </para>
  2493. </refsect1>
  2494. </refentry>
  2495. <!-- *** IMAGEPATH *** -->
  2496. <refentry id="ImagePath">
  2497. <refmeta> <refentrytitle>ImagePath</refentrytitle> </refmeta>
  2498. <refnamediv>
  2499. <refname>ImagePath</refname>
  2500. <refpurpose>path to user pictures (HTML page)</refpurpose>
  2501. </refnamediv>
  2502. <refsynopsisdiv><programlisting>
  2503. <![CDATA[
  2504. <channel="#channel">
  2505. Logfile = "channel.log"
  2506. Format = "mIRC"
  2507. ImagePath = "userpics/"
  2508. </channel>
  2509. <set ImagePath="users/">
  2510. ]]>
  2511. </programlisting></refsynopsisdiv>
  2512. <refsect1>
  2513. <title>Description</title>
  2514. <para>
  2515. <command>ImagePath</command> defines the path to where user
  2516. pictures are located, relative to the HTML page generated. The default is
  2517. that user pictures is located in the same directory as the HTML page.
  2518. </para>
  2519. </refsect1>
  2520. <refsect1>
  2521. <title>Default</title>
  2522. <para> current directory </para>
  2523. </refsect1>
  2524. </refentry>
  2525. <!-- *** DEFAULTPIC *** -->
  2526. <refentry id="DefaultPic">
  2527. <refmeta> <refentrytitle>DefaultPic</refentrytitle> </refmeta>
  2528. <refnamediv>
  2529. <refname>DefaultPic</refname>
  2530. <refpurpose>use a default user picture</refpurpose>
  2531. </refnamediv>
  2532. <refsynopsisdiv><programlisting>
  2533. <![CDATA[
  2534. <channel="#channel">
  2535. Logfile = "channel.log"
  2536. Format = "mIRC"
  2537. DefaultPic = "not_available.jpg"
  2538. </channel>
  2539. <set DefaultPic="unknown.gif">
  2540. ]]>
  2541. </programlisting></refsynopsisdiv>
  2542. <refsect1>
  2543. <title>Description</title>
  2544. <para>
  2545. <command>DefaultPic</command> defines a picture to be displayed for all
  2546. users which have no other picture defined in the <command>user</command>
  2547. element. This is good for showing "No picture available" or something.
  2548. May contain globbing patterns, see <xref linkend="ImageGlobPath" /> below.
  2549. </para>
  2550. </refsect1>
  2551. <refsect1>
  2552. <title>Default</title>
  2553. <para> unset </para>
  2554. </refsect1>
  2555. </refentry>
  2556. <!-- *** IMAGEGLOBPATH *** -->
  2557. <refentry id="ImageGlobPath">
  2558. <refmeta> <refentrytitle>ImageGlobPath</refentrytitle> </refmeta>
  2559. <refnamediv>
  2560. <refname>ImageGlobPath</refname>
  2561. <refpurpose>path to user pictures (output generation)</refpurpose>
  2562. </refnamediv>
  2563. <refsynopsisdiv><programlisting>
  2564. <![CDATA[
  2565. <channel="#channel">
  2566. Logfile = "channel.log"
  2567. Format = "mIRC"
  2568. ImageGlobPath = "users/"
  2569. </channel>
  2570. <set ImageGlobPath="/var/www/pisg/">
  2571. <set DefaultPic="default-??.gif">
  2572. ]]>
  2573. </programlisting></refsynopsisdiv>
  2574. <refsect1>
  2575. <title>Description</title>
  2576. <para>
  2577. <command>ImageGlobPath</command> defines the path to the directory where
  2578. user pictures are located, relative to the current directory. This setting
  2579. is used to choose random pictures if ? or * (globbing characters) are used
  2580. in the picture name. ? matches a single character, * matches a (possibly
  2581. empty) string. The default is the <xref linkend="ImagePath" /> setting.
  2582. (NB: This setting will be different from <xref linkend="ImagePath" /> if
  2583. the latter is not relative to the current directory, e.g. if you are
  2584. writing the HTML file outside of the current directory.)
  2585. </para>
  2586. </refsect1>
  2587. <refsect1>
  2588. <title>Default</title>
  2589. <para> current <xref linkend="ImagePath" /> setting </para>
  2590. </refsect1>
  2591. </refentry>
  2592. <!-- *** PICWIDTH *** -->
  2593. <refentry id="PicWidth">
  2594. <refmeta> <refentrytitle>PicWidth</refentrytitle> </refmeta>
  2595. <refnamediv>
  2596. <refname>PicWidth</refname>
  2597. <refpurpose>define a standard width for user pictures</refpurpose>
  2598. </refnamediv>
  2599. <refsynopsisdiv><programlisting>
  2600. <![CDATA[
  2601. <channel="#channel">
  2602. Logfile = "channel.log"
  2603. Format = "mIRC"
  2604. PicWidth = "500"
  2605. </channel>
  2606. <set PicWidth="500">
  2607. ]]>
  2608. </programlisting></refsynopsisdiv>
  2609. <refsect1>
  2610. <title>Description</title>
  2611. <para>
  2612. <command>PicWidth</command> defines the standard width for user
  2613. pictures. Setting the 'width' attribute of image-elements on the
  2614. outputted stats page. See also <xref linkend="PicHeight" />.
  2615. </para>
  2616. </refsect1>
  2617. <refsect1>
  2618. <title>Default</title>
  2619. <para> unset </para>
  2620. </refsect1>
  2621. </refentry>
  2622. <!-- *** PICHEIGHT *** -->
  2623. <refentry id="PicHeight">
  2624. <refmeta> <refentrytitle>PicHeight</refentrytitle> </refmeta>
  2625. <refnamediv>
  2626. <refname>PicHeight</refname>
  2627. <refpurpose>define a standard height for user pictures</refpurpose>
  2628. </refnamediv>
  2629. <refsynopsisdiv><programlisting>
  2630. <![CDATA[
  2631. <channel="#channel">
  2632. Logfile = "channel.log"
  2633. Format = "mIRC"
  2634. PicHeight = "500"
  2635. </channel>
  2636. <set PicHeight="500">
  2637. ]]>
  2638. </programlisting></refsynopsisdiv>
  2639. <refsect1>
  2640. <title>Description</title>
  2641. <para>
  2642. <command>PicHeight</command> defines the standard height for user
  2643. pictures. Setting the 'height' attribute of image-elements on the
  2644. outputted stats page. See also <xref linkend="PicWidth" />.
  2645. </para>
  2646. </refsect1>
  2647. <refsect1>
  2648. <title>Default</title>
  2649. <para> unset </para>
  2650. </refsect1>
  2651. </refentry>
  2652. </chapter>
  2653. <chapter id="reference-misc">
  2654. <title>Misc options</title>
  2655. <!-- *** CHARSET *** -->
  2656. <refentry id="Charset">
  2657. <refmeta> <refentrytitle>Charset</refentrytitle> </refmeta>
  2658. <refnamediv>
  2659. <refname>Charset</refname>
  2660. <refpurpose>character set to use for stats page</refpurpose>
  2661. </refnamediv>
  2662. <refsynopsisdiv><programlisting>
  2663. <![CDATA[
  2664. <channel="#channel">
  2665. Logfile = "channel.log"
  2666. Format = "xchat"
  2667. Charset = "utf-8"
  2668. </channel>
  2669. <set Charset="iso-8859-15">
  2670. ]]>
  2671. </programlisting></refsynopsisdiv>
  2672. <refsect1>
  2673. <title>Description</title>
  2674. <para>
  2675. The pisg stats page defines a character set in a meta tag, this can be
  2676. used if your country is using a different one than the default. Pisg
  2677. will also use this setting to convert the language templates from
  2678. <xref linkend="LangFile" /> if the language defines a source charset.
  2679. Note: you also have to tell your webserver to transmit the charset to
  2680. the browser. With Apache, use "AddDefaultCharset off" in the server
  2681. config.
  2682. </para>
  2683. </refsect1>
  2684. <refsect1>
  2685. <title>Default</title>
  2686. <para> iso-8859-1 </para>
  2687. </refsect1>
  2688. </refentry>
  2689. <!-- *** LOGCHARSET *** -->
  2690. <refentry id="LogCharset">
  2691. <refmeta> <refentrytitle>LogCharset</refentrytitle> </refmeta>
  2692. <refnamediv>
  2693. <refname>LogCharset</refname>
  2694. <refpurpose>character set for logfiles</refpurpose>
  2695. </refnamediv>
  2696. <refsynopsisdiv><programlisting>
  2697. <![CDATA[
  2698. <channel="#channel">
  2699. Logfile = "channel.log"
  2700. Format = "xchat"
  2701. Charset = "iso-8859-1"
  2702. LogCharset = "utf-8"
  2703. </channel>
  2704. <set Charset="iso-8859-15">
  2705. <set LogCharset="iso-8859-15">
  2706. ]]>
  2707. </programlisting></refsynopsisdiv>
  2708. <refsect1>
  2709. <title>Description</title>
  2710. <para>
  2711. If <command>LogCharset</command> is set and different from
  2712. <xref linkend="Charset" />, pisg will convert the charset using
  2713. Text::Iconv. Using this option slows down log processing.
  2714. </para>
  2715. </refsect1>
  2716. <refsect1>
  2717. <title>Default</title>
  2718. <para> empty (no conversion) </para>
  2719. </refsect1>
  2720. </refentry>
  2721. <!-- *** LOGCHARSETFALLBACK *** -->
  2722. <refentry id="LogCharsetFallback">
  2723. <refmeta> <refentrytitle>LogCharsetFallback</refentrytitle> </refmeta>
  2724. <refnamediv>
  2725. <refname>LogCharsetFallback</refname>
  2726. <refpurpose>fallback character set for logfiles</refpurpose>
  2727. </refnamediv>
  2728. <refsynopsisdiv><programlisting>
  2729. <![CDATA[
  2730. <channel="#channel">
  2731. Logfile = "channel.log"
  2732. Format = "xchat"
  2733. Charset = "utf-8"
  2734. LogCharset = "utf-8"
  2735. LogCharsetFallback = "iso-8859-1"
  2736. </channel>
  2737. <set Charset="utf-8">
  2738. <set LogCharset="utf-8">
  2739. <set LogCharsetFallback="iso-8859-15">
  2740. ]]>
  2741. </programlisting></refsynopsisdiv>
  2742. <refsect1>
  2743. <title>Description</title>
  2744. <para>
  2745. <command>LogCharsetFallback</command> defines a fallback charset for
  2746. the <xref linkend="LogCharset" /> conversion. This is useful if you
  2747. have mixed unicode/iso-8859-* logs. Pisg will first try the conversion
  2748. from <xref linkend="LogCharset" />. If that fails,
  2749. <command>LogCharsetFallback</command> is used. Note that this only works
  2750. for charsets where certain byte sequences are illegal, like UTF-8. (In
  2751. short: <command>LogCharset</command> = utf-8,
  2752. <command>LogCharsetFallback</command> = iso-8859-15 works, the other way
  2753. round does not.)
  2754. </para>
  2755. </refsect1>
  2756. <refsect1>
  2757. <title>Default</title>
  2758. <para> empty (no fallback conversion) </para>
  2759. </refsect1>
  2760. </refentry>
  2761. <!-- *** TIMEOFFSET *** -->
  2762. <refentry id="TimeOffset">
  2763. <refmeta> <refentrytitle>TimeOffset</refentrytitle> </refmeta>
  2764. <refnamediv>
  2765. <refname>TimeOffset</refname>
  2766. <refpurpose>use a different time zone than the local machine</refpurpose>
  2767. </refnamediv>
  2768. <refsynopsisdiv><programlisting>
  2769. <![CDATA[
  2770. <channel="#channel">
  2771. Logfile = "channel.log"
  2772. Format = "mIRC"
  2773. Maintainer = "John"
  2774. TimeOffset = "+5"
  2775. </channel>
  2776. <set TimeOffset="+2">
  2777. ]]>
  2778. </programlisting></refsynopsisdiv>
  2779. <refsect1>
  2780. <title>Description</title>
  2781. <para>
  2782. By default, pisg uses the time of the local machine to display the time
  2783. of the generated stats. Sometimes when you have a shell on an external
  2784. box, and it's in another country, you want to use another time. This is
  2785. accomplished by the <command>TimeOffset</command> command.
  2786. </para>
  2787. </refsect1>
  2788. <refsect1>
  2789. <title>Default</title>
  2790. <para> +0 </para>
  2791. </refsect1>
  2792. </refentry>
  2793. <!-- *** REGEXPALIASES *** -->
  2794. <refentry id="RegexpAliases">
  2795. <refmeta> <refentrytitle>RegexpAliases</refentrytitle> </refmeta>
  2796. <refnamediv>
  2797. <refname>RegexpAliases</refname>
  2798. <refpurpose>use regular expressions in user aliases</refpurpose>
  2799. </refnamediv>
  2800. <refsynopsisdiv><programlisting>
  2801. <![CDATA[
  2802. <user nick="Joe" alias="Joe\d+">
  2803. <set RegexpAliases="1">
  2804. ]]>
  2805. </programlisting></refsynopsisdiv>
  2806. <refsect1>
  2807. <title>Description</title>
  2808. <para>
  2809. Enabling this option will make all aliases in &lt;user&gt; lines be
  2810. parsed as regular expressions; this setting also applies to the
  2811. <xref linkend="IgnoreWords" />, <xref linkend="FoulWords" />, and
  2812. <xref linkend="ViolentWords" /> settings.
  2813. </para>
  2814. </refsect1>
  2815. <refsect1>
  2816. <title>Default</title>
  2817. <para> 0 (disabled) </para>
  2818. </refsect1>
  2819. </refentry>
  2820. <!-- *** LANGFILE *** -->
  2821. <refentry id="LangFile">
  2822. <refmeta> <refentrytitle>LangFile</refentrytitle> </refmeta>
  2823. <refnamediv>
  2824. <refname>LangFile</refname>
  2825. <refpurpose>filename of language file</refpurpose>
  2826. </refnamediv>
  2827. <refsynopsisdiv><programlisting>
  2828. <![CDATA[
  2829. <set LangFile="mylang.txt">
  2830. ]]>
  2831. </programlisting></refsynopsisdiv>
  2832. <refsect1>
  2833. <title>Description</title>
  2834. <para>
  2835. With this option you have an alternative way to define the name and/or
  2836. path to the language file. Usually you don't have to touch this option.
  2837. </para>
  2838. </refsect1>
  2839. <refsect1>
  2840. <title>Default</title>
  2841. <para> lang.txt </para>
  2842. </refsect1>
  2843. </refentry>
  2844. <!-- *** CSSDIR *** -->
  2845. <refentry id="CssDir">
  2846. <refmeta> <refentrytitle>CssDir</refentrytitle> </refmeta>
  2847. <refnamediv>
  2848. <refname>CssDir</refname>
  2849. <refpurpose>path to directory with CSS files</refpurpose>
  2850. </refnamediv>
  2851. <refsynopsisdiv><programlisting>
  2852. <![CDATA[
  2853. <set CssDir="/usr/share/pisg/layout/">
  2854. ]]>
  2855. </programlisting></refsynopsisdiv>
  2856. <refsect1>
  2857. <title>Description</title>
  2858. <para>
  2859. <command>CssDir</command> is used to define the paths to the CSS files
  2860. (the <xref linkend="ColorScheme" />s). Usually you don't
  2861. need to change this. This setting is only used when statically including
  2862. the CSS file.
  2863. </para>
  2864. </refsect1>
  2865. <refsect1>
  2866. <title>Default</title>
  2867. <para> layout/ (in current directory) </para>
  2868. </refsect1>
  2869. </refentry>
  2870. <!-- *** HICELL *** -->
  2871. <refentry id="HiCell">
  2872. <refmeta> <refentrytitle>HiCell, HiCell2</refentrytitle> </refmeta>
  2873. <refnamediv>
  2874. <refname>HiCell, HiCell2</refname>
  2875. <refpurpose>colors for color gradient in most active nicks section</refpurpose>
  2876. </refnamediv>
  2877. <refsynopsisdiv><programlisting>
  2878. <![CDATA[
  2879. <set HiCell="#BABADD" HiCell2="#CCCCCC">
  2880. ]]>
  2881. </programlisting></refsynopsisdiv>
  2882. <refsect1>
  2883. <title>Description</title>
  2884. <para>
  2885. <command>HiCell</command> and <command>HiCell2</command> define the colors
  2886. to be used for the color gradient in the most active nicks section. They should
  2887. match your <xref linkend="ColorScheme" />.
  2888. </para>
  2889. </refsect1>
  2890. <refsect1>
  2891. <title>Default</title>
  2892. <para> #BABADD, #CCCCCC </para>
  2893. </refsect1>
  2894. </refentry>
  2895. <!-- *** LOGTYPE *** -->
  2896. <refentry id="LogType">
  2897. <refmeta> <refentrytitle>LogType</refentrytitle> </refmeta>
  2898. <refnamediv>
  2899. <refname>LogType</refname>
  2900. <refpurpose>type of log (not the format of the log)</refpurpose>
  2901. </refnamediv>
  2902. <refsynopsisdiv><programlisting>
  2903. <![CDATA[
  2904. <set LogType="Logfile">
  2905. ]]>
  2906. </programlisting></refsynopsisdiv>
  2907. <refsect1>
  2908. <title>Description</title>
  2909. <para>
  2910. The type of logs kept for your channel. Currently only "Logfile" is
  2911. supported, so you don't need to change this option.
  2912. </para>
  2913. </refsect1>
  2914. <refsect1>
  2915. <title>Default</title>
  2916. <para> Logfile </para>
  2917. </refsect1>
  2918. </refentry>
  2919. </chapter>
  2920. </book>