Changelog 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769
  1. pisg (x.xx)
  2. * Fix bug where multiple URLs in same line would have save name as first URL
  3. (EG: <A HREF="http://www.google.com">http://www.yahoo.com</A> if yahoo
  4. was referenced first)
  5. * Update config parser to match the same character and only the same
  6. character (" or ') that started the quote to end the string.
  7. (Will now accept <set foo="you're"> correctly, before it would have parsed
  8. it as <set foo="you">. Will now NOT work with mis-matched quotes... which
  9. it probably never should have. EG: <set foo="bar'>)
  10. * Fix bug in xchat format - was not recognizing joins
  11. * Fix really old bug with foulwords - was only applying the wordbreak settings
  12. to the first and last words in the list of foulwords. Now applies it to
  13. each word.
  14. * Add note to lang.txt that the <set lang=""> line should be inserted into
  15. the configuration file. Some users were confused about this.
  16. * Add config option "NoIgnoredQuotes" - will not output quotes containing
  17. ignored words if this is set. Will output a blank line after trying 20
  18. random quotes if all 20 random quotes were ignored.
  19. * Add support for HydraIRC logfiles (thanks, David Lynch)
  20. * When a logfile had no matching lines according to the format, pisg
  21. outputted that no lines were found in the logfile. This was confusing
  22. because files in the wrong format usually contained lines. Now be more
  23. verbose.
  24. * ShowOps option added. Has similar effect as ShowVoices and ShowHalfops.
  25. pisg (0.46) - Tue Feb, 11th 2003
  26. * Fix serious bug which caused garbled output i "Latest topics" and other
  27. places with URLs.
  28. * The default for the QuoteWidth option has been changed to 80.
  29. * Be in-casesensitive on charsets.
  30. * Small translations update to lang.txt
  31. pisg (0.45) - Wed Feb, 5th 2003
  32. * Fix 3 small gramattical errors in english language. (thanks Cheetah)
  33. * Add half-op support to irssi format. (thanks, arsonist)
  34. * Fix a bug/crash with the DCpp format when a nick contained special
  35. characters.
  36. * Added justgrey colorscheme (thanks, Jens Bergmann)
  37. * Update URL for oer format in docs/FORMATS (thanks, EQU)
  38. * Update irssi format to accept 1 or more spaces before * for action lines
  39. instead of requiring 2
  40. * Add modified version of patch from minicus - allows browser to split words
  41. at QuoteWidth number of characters into any given word, without splitting
  42. URL's (new config option)
  43. * When CharSet is not 'iso-8859-1' or 'iso-8859-15', don't provide
  44. conversions for characters. Fixes problems for many other languages, e.g.
  45. greek, korean etc.
  46. * Fix bug in mIRC6 format where it didn't recognize logfiles logging seconds
  47. * Fix bug in mIRC6 format where it didn't recognize kicks of the maintainer
  48. * Added support for sirc format (thanks bartko)
  49. * Added support for blootbot format (thanks, Tim Riker)
  50. * Added support for dircproxy format.
  51. * Move 'valign="middle"' statements out of <img> blocks to <td> blocks where
  52. they belong. According to HTML validator, valign is an invalid attribute
  53. for an <img> statement. (see http://validator.w3.org/)
  54. pisg (0.44) - Sun Dec, 15th 2002
  55. * Fixed an error in the mIRC6 format which caused pisg to abort on some
  56. lines.
  57. * mirc2egg script updated.
  58. * The random line in "Most Active Nicks" now wraps words that are longer
  59. than 40 characters. (thanks, glen)
  60. * Check if a userpic link begins with http:// -- if so, dont prepend image
  61. directory to URL
  62. * Look for a nick that has been referenced before in attacks, if one is not
  63. in the line fall back to using word following attack word
  64. * Chop lines added to sayings to the length of maxquote (so we don't have
  65. super long quotes showing up - BugID#594618)
  66. * Only match emails if it begins at the beginning of a line or after
  67. something other than ':' URL on that line. Fixes BugID#618540
  68. * Strip DOS Formatting from files - Fixes space at end of line BugID#628580
  69. * Fixed bug in hour tracking - Formats hours to 2 digits correctly now,
  70. previously was only forcing to 2 digit times if there was a time offset
  71. configured. Fixes BugID#632883
  72. * Fixed bug - shouldn't have been grabbing 2 parts of the pircbot string
  73. to variables, was part of Rev 1.3 but apparently I forgot to actually put
  74. in that part. Thanks Marc Roberts for pointing this out. BugID#651485
  75. * Added support for 'DC++' format, used by Direct Connect hub chat
  76. * Fixed bug in infobot format -- was matching any line that began lowercase
  77. as an action line. Infobot does not log actions in a recognizable format
  78. ... I even examined the output in hex to be sure. Fix BugID#652239
  79. * Fixed a bug in logsuffix handling where pisg would blow up if the
  80. 'logsuffix' expression did not return dates for every filename. It will
  81. now not parse any files that logsuffix does not match.
  82. pisg (0.43) - Fri Nov, 22th 2002
  83. * Add "ShowOnlyTop" option which can be used if you only want to have stats
  84. for the users which appeared in the "Most Active Nicks" (top talkers)
  85. section. (thanks, mincus)
  86. * Fix voice/devoice detection with xchat format.
  87. * mIRC6 format wasn't actually distributed with pisg, it is now.
  88. * mirc2egg.sed script added in the scripts/ folder, it's used to convert
  89. mIRC logs to eggdrop logs. (thanks, Geoff Simmons)
  90. * Hopefully fix xchat logs interpreting asterixs as the nick.
  91. * If a sex has been specified for a user in pisg.cfg, that user will now
  92. have a sex-dependent color in the stats page. (E.g. one color for males,
  93. another for females etc.) (thanks, Olivier 'Babar' Raginel)
  94. * For languages which have a general unknown-sex verb, this can now be
  95. specified. E.g. French has 'un' for male, 'une' for females and 'un(e)'
  96. as a general unknown-sex verb. (thanks, Gaël Roualland)
  97. pisg (0.42) - Fri Nov, 1st 2002
  98. * ircII logfile support added (thanks, James Andrewartha)
  99. * Changed behavior of most active nicks to print an action line if no
  100. normal line is available for that nick
  101. * Added support for formatting of "for example" lines to standard format
  102. * Added retarded support for retarded logformat used for mIRC6.x
  103. * A bug in the zcbot format where the first character would be truncated
  104. has been fixed (thanks, Guillaume Leclanche)
  105. * New 'softgreen' colorscheme (thanks, Melody Mayberry)
  106. * Fixed wrong reference to PicHeight in docs which should be PicWidth.
  107. (thanks, J Lehto)
  108. * The ocean colorscheme has been updated, the link-hover color is now
  109. white.
  110. * A bug which appeared with some variations of xchat logfiles have been
  111. fixed. (thanks, Michael Hostbaek).
  112. pisg (0.41) - Sun Aug, 11th 2002
  113. * Fix a bug in the winbot logfile format where lines containing the channel
  114. name in a wrong case wouldn't get counted.
  115. * Fix a bug in the mIRC format, where characters in the nick would be
  116. counted as mode changes.
  117. * When ShowTopics was set to 0, the headline "Latest topics" was still
  118. shown, fixed (thanks, Kean "zakarun" Pedersen)
  119. * New 'ocean' colorscheme (thanks, Mikko Nissinen)
  120. * New 'darkred' colorscheme (thanks, Hanno Hecker)
  121. * mIRC, Trillian, perlbot and virc98 formats now strips half-op prefixes
  122. from nicks as well.
  123. * moobot logfile support added (thanks, Phil Gregory)
  124. * Greek language support added (thanks, Konstantinos Tzanidis)
  125. pisg (0.40) - Thu Jul, 4th 2002
  126. * The "It's Summer And The Sun Is Shining"-release.
  127. * When ShowMostAtiveByHour was enabled, unitialized values could appear
  128. which caused the HTML file not to be created. (thanks, Gissehel)
  129. * RacBot logfile support added (thanks, Hanno Hecker)
  130. * kvirc logfile support added (thanks, wwp)
  131. * Correct pircbot.pm to work with !channel, &channel and +channel in
  132. addition to #channel (thanks, Hanno Hecker)
  133. * Half-op statistics (+h), enabled by ShowHalfops. (thanks, crazycat)
  134. pisg (0.39) - Tue May, 14th 2002
  135. * ShowFoulLine option added (thanks, Adam Spiers <adam@spiers.net>).
  136. * The "foul-words" counting is now done word-wise instead of line-wise
  137. (thanks, Adam Spiers <adam@spiers.net>)
  138. * Files in a LogDir is now run through alphabetically incase-sensitive
  139. (thanks, Gissehel <gissehel-pisggene@giss.mine.nu>)
  140. * --prefix commandline option wasn't working, fixed.
  141. * Slovak translation added (thanks, Gabriel Svajko <snowman@ew.sk>)
  142. * Russian translation added (thanks, Anton Tretiakov, <manager@ykt.ru)
  143. * The 'bgpic' option has been removed (you should use CSS instead)
  144. * "Most Active Nicks By Hour" added, new options:
  145. - ShowMostActiveByHour
  146. - ShowMostActiveByHourGraph
  147. - ActiveNicksByHour
  148. (thanks, Gissehel <gissehel-pisggene@giss.mine.nu>)
  149. * A problem with links in Trillian log formats has been fixed (thanks,
  150. Hanno Hecker <hanno-pisg@bee.de>)
  151. * A problem with multiple mode changes (+vv, +oo) in Trillian format has
  152. been fixed.
  153. * README has been polished/modified
  154. * It's now possible to include different configuration files using a new
  155. <include ... > syntax (thanks, Hanno Hecker <hanno-pisg@bee.de>)
  156. * Changes thanks to Matthew "Cheetah" Gabeler-Lee (<msg2@po.cwru.edu>):
  157. * A ShowWordTime option now exists that works the same as ShowLineTime,
  158. but uses word stats
  159. * SortByWords option added
  160. * Foul-words matching is now more strict. It no longer matches inside a
  161. word, but only in the end or at the start of a word
  162. * --cchannels commandline option added, when a channel is specified here,
  163. it will be the only channel to run stats for in pisg.cfg.
  164. * A bug previously that could cause pisg to error out in channels with
  165. untalkative users in the active list when sorting by words is fixed.
  166. * Random quotes wrap in the output html now
  167. pisg (0.38) - Thu Apr, 25th 2002
  168. * Grammar fixes in documentation (thanks, Azhrarn <diablo2@krock.com>)
  169. * Added support for pircbot (http://www.jibble.org/pircbot.php)
  170. * Note added to docs/FORMATS file about oer format limitations (thanks, EQU
  171. <equ@equnet.org>)
  172. * Icelandic translation added (thanks, Birkir <dkf@visir.is>)
  173. * scripts/windows-ftp-upload.txt has been added; a sample script and
  174. description on how to upload files automatically on Windows. (thanks,
  175. Azhrarn)
  176. * A old configuration option appeared on commandline when doing pisg --help
  177. * Configuration options renamed: pic_width => PicWidth, pic_height =>
  178. PicHeight, pic_loc => PicLocation. Documentation also added.
  179. * Split up the documentation of options into different categories, for
  180. better overview.
  181. * Fix minor typo in bxlog formats which caused joins to a channel not being
  182. registered properly (thanks, comcute <comcute@blastnet.ee>)
  183. * A dutch translation appeared in the English version of pisg; fixed.
  184. * Nicktracking wasn't working with the irssi logfile format, fixed (thanks,
  185. Matthäus Wander <jonny_b.good@gmx.de>)
  186. * Time-bars are now centered properly
  187. * Czech translation added (thanks, Jaroslav Ostadal <s98704@tacheon.dkm.cz>)
  188. pisg (0.37) - Mon Apr, 8th 2002
  189. * The "lets clean up and move things around"-release
  190. * pisg.pl has been renamed to pisg
  191. * Colors/layout options has been removed. You now control the HTML page
  192. by using CSS. The 'layout' directory contains the default CSS file. Also,
  193. you are encouraged to provide your own CSS files for pisg so we can have
  194. different themes, send them to me and they will become a part of pisg :-)
  195. * Options has been renamed, the underscore has been removed, but they can
  196. still be used with a small warning.
  197. * prefix option has been renamed to LogPrefix
  198. * foul option has been renamed to FoulWords
  199. * The 'use_activetime_alt' option has been removed, not needed.
  200. * There is now an "MostNicksHistory" option to define how many nicks you
  201. want to have in the "Most Used Nicks" box
  202. * Some HTML columns were missing their end-tag when no voices had been
  203. made. Fixed.
  204. * It was not possible to use the LogSuffix option before, it's now working
  205. again.
  206. * 'names/name' is now translateable in the 'Most Used Nicks' section.
  207. * Remove CONFIG-README, obsoleted by new and better doc/pisg-doc.txt and
  208. doc/html/index.html
  209. * Nicks ignored are now properly ignored in 'Most Used Nicks'
  210. * pisg warned about an unrecognized line in the configuration file when you
  211. had empty lines in the channel section. Fixed.
  212. * When dealing with multiple channels; aliases, ignores etc. would get
  213. passed on to the next channel, so you could see nicks appearing which
  214. never existed on that channel. Fixed. This should also give a performance
  215. increase.
  216. * When using the TimeOffset option, the wrong hours was highlighted both in
  217. the vertical and horizontal bars - fixed. (thanks, Mircea Ionut Bardac)
  218. * When nicktracking is on, if a nick was changed but also appeared as a
  219. regex-alias, an errornous new alias would be created (thanks,
  220. Phil Gregory)
  221. * mIRC-logfiles were not recognizing nick-changes, fixed (Sam Bingner)
  222. * Support for muh-bouncer logs (thanks, Sebastian Erlhofer & Bastian
  223. Friedrich)
  224. * Support for dancer-bot logs (thanks, Elmar Hoffmann)
  225. * Support for energymech bot (thanks, Torsten Karwoth)
  226. * Support for virc98 logs (thanks, HceZar <hcezar@freemail.it>)
  227. * Romanian translation added (thanks, Vlad <vlad@ifrance.com>)
  228. * The usual translation updates.
  229. pisg (0.36) - Fri Feb, 8th 2002
  230. * Many translation updates (thanks all)
  231. * Add new translation templates to translate the bottom of the stats page
  232. * Add Portugese/Brazil translation(PT-BR) (thanks Peter <peter@brasnet.org>)
  233. * addalias.pl script v2.2 by Jens Bergmann <gimmick@1cu.de>, see the
  234. changes in the README in scripts/addalias/
  235. * The lang option is no longer case sensitive
  236. * "Most used nicks" no longer thinks that two differently cased nicks are
  237. different nicks.
  238. * Action lines fixed in axur format (thanks, Andrew <andy@lewman.com>)
  239. * Fix serious bug in addalias.pl where a nick with a metacharacter in it
  240. would wipe out whole config (thanks for the report, Jens Bergmann)
  241. pisg (0.35) - Sat Jan, 26th 2002
  242. * Translate mouse-over items (eg. "Open in new window: URL")
  243. * Support for oer bot logfiles (thanks to EQU <equ@equnet.org>)
  244. * Support for perlbot logfiles (thanks to Travis Roy <travis@scootz.net>)
  245. * Add -v / --version commandline option
  246. * Fix a rare bug where a user with only one line, and no words were causing
  247. unitialized values error.
  248. * Many fixes to axur logfile format (thanks, Andrew <andy@lewman.com>)
  249. * Fix to irssi logfile handling, where a user was recognized as a mode
  250. (thanks, David Leadbeater <dgl@dgl.cx>)
  251. * Support new xchat logfile format (from 1.8.6 and up)
  252. * Add "show_mostnicks" feature (thanks to "ST8" <st8@barrysworld.com>),
  253. this adds a box on the stats page showing how many different nick uses
  254. people had
  255. * Fix bug in documentation, which said nicktracking was enabled by default,
  256. but it really isn't.
  257. * The addalias.pl script is no longer case sensitive when updating nicks
  258. already in the config file
  259. pisg (0.34) - Tue, Jan 8th 2002
  260. * New option 'show_topics', to enable/disable 'last topics'
  261. * New feature 'bigpic' for users, see CONFIG-README. 'bigpic' will link to
  262. a bigger picture (thanks, Phil Gregory)
  263. * axur logfile support (thanks to Andrew <andy@lewman.com>)
  264. * Nicks in 'most referenced nicks' is now being aliased properly, the
  265. "number of uses" wasn't being incremented for the aliases (thanks to Phil
  266. Gregory and The Paladin)
  267. * bobot++ logfile support added (thanks to Oct@zoy.org)
  268. * New option 'nickhistory' to define the maximum number of nicks in 'most
  269. referenced nicks' (as suggested by Zapp <box@uni.de>)
  270. * The usual slew of translation updates
  271. pisg (0.33) - Tue, Dec 20th 2001
  272. * The "Merry Christmas" release
  273. * Internet Explorer 6 centered all table contents, fixed.
  274. * Trillian logfile support added (thanks to Azhrarn <Azhrarn@winbot.co.uk>)
  275. * Remove a lot of debugging code which was never really used, this should
  276. give a small increase in performance
  277. * 'show_voices' wasn't working, fixed (thanks, Stefan D.)
  278. * Small bugfix to pisg.cfg parsing
  279. * Add 'pagefoot' option, works like the 'pagehead function' (thanks Jean
  280. Delvare)
  281. * Filter URLs with ampersands, & -> &amp; (thanks Jean Delvare)
  282. * Changed README a bit
  283. * Add 'wordshistory' configuration option, to define how many words to be
  284. in 'most used words'
  285. pisg (0.32) - Sun, Dec 9th 2001
  286. * infobot log support added by Nicholas Frampton <whyrl@avians.net>
  287. * HTML changes:
  288. - Convert stats page to use more CSS, never use 'bgcolor' HTML attribute.
  289. - Make the page XHTML compatible, and use XHTML 1.0 Transititional doctype.
  290. * When a logfile had the same topic multiple times, all of the same topics
  291. was being shown on the stats page, now duplicate topics is removed.
  292. * The hour being highlighted in 'most active times' is now the hour with
  293. most activity, if you want to highlight the hour which the stats are
  294. being generated in, use 'use_activetime_alt'
  295. * More improvements to pisg.cfg parsing
  296. * irssi logfile fixes:
  297. - Was interpreting nicks with '-' in it incorrectly.
  298. - Topics wasn't being displayed correctly
  299. * All configuration options in CONFIG-README can now be specified on
  300. commandline, eg. 'pisg.pl --cfg show_wpl=1 --cfg show_cpl=1'
  301. pisg (0.31) - Mon, Dec 3rd 2001
  302. * Fix serious bug where pisg would end up in an endless loop when multiple
  303. URLs were on a line.
  304. * More improved parsing: pisg will now complain if a configuration option
  305. is used, which doesn't exist in the real world.
  306. * Fix some documentation bugs
  307. * Report the right line number when displaying parse errors in pisg.cfg
  308. pisg (0.30) - Sun, Dec 2nd 2001
  309. * New feature: 'show_lastseen' - will add a column in the stats to display
  310. when the user was last seen on the channel.
  311. * When using mIRC logs which have a prefix (eg. <@osama> hi!), the prefix
  312. will be removed automatically, works for both @ and +.
  313. * New 'urlhistory' option added to define the maximum number of URLs to
  314. show in 'most referenced URLs'
  315. * zcbot (http://zcbot.sourceforge.net/) support added by Mo-Ize <mo-ize@pas-tres.net>
  316. * Preliminary support for 'ircle' logformats
  317. * Also translate the title of stats page
  318. * More precise docs, to document the defaults of the options.
  319. * When a topic or a line had multiple URLs/e-mails, only the first one was
  320. replaced by a link, fixed (thanks, Zapp <box@uni.de>)
  321. * Add 'logsuffix' option, to get around problem with eggdrop logs not being
  322. sorted correctly.
  323. * 'wordlength' was applying to nicks in 'most referenced nicks' as well,
  324. don't do that.
  325. * Improved parsing of config file. pisg will now complain if a line isn't
  326. what it's supposed to be.
  327. * Lines with only a single smiley, eg. '<user> :P' got counted as a
  328. UPPERCASE line, now ignored.
  329. pisg (0.29) - Sat, Nov 10th 2001
  330. * When using multiple channels, and not all channels have user pics, it was
  331. showing a big empty coloumn with no userpics. Now it checks whether any
  332. users in top xx has a userpic, and if yes, add the coloumn.
  333. * Additionaly, users can force pictures of a channel with the new
  334. 'userpics="n"' option. (This could be useful if a nick appears on many
  335. channels, but you only want the userpics on one..)
  336. * New version of addalias.pl by deadlock <deadlock@cheeseheadz.net>:
  337. - Doesn't need addalias.htm anymore, addalias.pl takes care of everything
  338. - Can dynamically change user data when a nick is already added in the
  339. config file
  340. - Improved error handling
  341. - Improved code
  342. * Can now show voices/devoices like the showing of ops/deops, disabled by
  343. default. Can be enabled with <set show_voice="1">
  344. * A relative URL to the pisg image bars can now be defined with 'pic_loc',
  345. defaults to current dir.
  346. * Counted 'http://name.com/' differently from 'http://name.com' - fixed.
  347. * Fixed bug where mbot logs didnt count lines with only a 1 digit day
  348. value, thanks to Teemu Ikonen <tpikonen@pcu.helsinki.fi>
  349. * Add support for winbot logfiles (www.winbot.co.uk) by Azhrarn
  350. <diablo2@krock.com>
  351. * Updates to Swedish translation (thanks to Andreas Henriksson
  352. <andreas.henriksson@linux.se>)
  353. * Fix bug where when you had less than 5 urls in 'most referenced urls',
  354. one wasn't being shown. (thanks Hanno Hecker)
  355. * 'Hello' and 'hello' are no longer treated as seperate words in 'Most
  356. Referenced Words'
  357. * Added Estonian translation by comcute <comcute@surfdata.ee>
  358. * Added Italian translation by Pascal Brax
  359. * Added Catalan translatino by Roger Utgés (Nikoru) <nikoru@menta.net>
  360. pisg (0.28) - Sun, Oct 21th 2001
  361. * Added Hungarian translation by Gyuri Horak <dyuri@dyuri.org>
  362. * Performance improvements in HTML generation
  363. * Fix bug where the 'These didn't make it to the top' section wasn't being
  364. shown on the stats page when 'activenicks2' was less than the people in
  365. the top 25.
  366. * New options:
  367. - 'show_activetimes' enable/disable 'Most Active Times' section.
  368. - 'show_bignumbers' enable/disable 'Big Numbers' and 'Other Interesting
  369. Numbers' section.
  370. * The numbers below the timebars in 'Most Active Times' wasnt using the
  371. 'rankc' color option, it now does, and additionally adds a color
  372. 'hi_rankc' for highlighted ranks.
  373. * A topic like "<Joe> blah blah blah" was showing up as "blah blah blah" in
  374. 'latest topics' - fixed.
  375. * Hopefully fix pisg on Win32.
  376. * Add charset to the HTML page to make validator.w3.org happy, it's user
  377. defineable with the new 'charset' option, default is 'iso-8859-1'.
  378. * The color of the links in the bottom of the page (not in tables) can be
  379. set by the new 'bg_link', 'bg_hlink' and 'bg_vlink' options.
  380. * New option: 'default_pic' makes it possible to display a default picture
  381. for a user if no picture defined. For example to display a picture
  382. showing 'No picture available.'
  383. pisg (0.27) - Sun, Oct 7th 2001
  384. * Stats page was showing [:total] instead of the actual number, fixed.
  385. * Added Slovenian translation by Ales Tepina <ales.tepina@guest.arnes.si>
  386. * Updates to various language templates
  387. * Cleaned up addalias script (scripts/addalias/), it now shows a prettier
  388. page, and it's now possible to add the sex of a user as well.
  389. * It's now possible to ignore unwanted URLs in 'most referenced urls':
  390. <link url="http://www.mydomain.com" ignore="y">
  391. pisg (0.26) - Mon, Oct 1st 2001
  392. * Internet Explorer interpreted width="" and height="" as a picture of 0x0
  393. pictures, fix so we dont set empty values.
  394. * Updates to French template by Mouky <mouky@m6net.fr> and aNa|0Gue
  395. <analogue@glop.org>
  396. * Add --silent switch to pisg; makes pisg quiet, and only display error
  397. messages. (thanks, S. William Schulz)
  398. * Added Finish translation by Kirler@paincreators <kirler@letku.net>
  399. * Added missing template, 'bylinetopic', to translate "by <nick> on <time>"
  400. in lang.txt
  401. * Hopefully fix a lot of problems with FindBin permission problems.
  402. pisg (0.25) - Wed, Sep 26th 2001
  403. * Fixed days counting wrong when using logdir option.
  404. * New options by Patrick Aussems:
  405. - show_mrn, disable/enable most referenced nicks
  406. - show_mru, disable/enable most referenced urls
  407. - show_muw, disable/enable most used words
  408. - show_randquote, disable/enable the showing of the random quotes
  409. * More flexibility to irssi logfile format, will now work with more irssi
  410. logfile configurations. (David Leadbeater)
  411. * Some fixes for eggdrop format where the nick was in nick!user@host
  412. format.
  413. * Added new options 'pic_width' and 'pic_height', enables people to specify
  414. the sizes of userpictures.
  415. pisg (0.24) - Mon, Sep 24th 2001
  416. * Logdirs not working, fixed.
  417. * Fix bug where it posted garbage on stats page where it should say
  418. "he/she"
  419. * Small changes/corrections to psybnc format (Marco Dieckhoff)
  420. * Kickers and 'victims' (/me beats john) wasn't being ignored, fixed.
  421. pisg (0.23) - Sun, Sep 23th 2001
  422. * Support irssi logfiles
  423. * Support psybnc logfiles
  424. * Topics in mIRC format wasn't being recognized. Fixed.
  425. * Don't go beserk when the logfile doesn't contain any data; just tell it
  426. to the user.
  427. * Fix: Don't show empty quotes on the stats page.
  428. * More work on the object oriented goal of pisg:
  429. - cleanups, don't use globals in modules, define these in the object.
  430. - add HTMLGenerator.pm, and move all HTML generation code from pisg.pl
  431. to this new module.
  432. - New module Pisg.pm brings the rest of the main code into it's own
  433. module, this means that Pisg is no longer dependent of pisg.pl.
  434. Again, please report back if you find any trouble with any of these
  435. changes.
  436. * Better logic when no channels are defined. Instead of just defaulting to
  437. #channel and channel.log, then force the user to define these on either
  438. commandline or in the config file. This should be better for first-time
  439. users.
  440. * Ship developer docs in docs/dev/ instead of just dumping it in docs/,
  441. docs/ should be for end users.
  442. * Various updates to language templates
  443. pisg (0.22) - Sat, Sep 15th 2001
  444. * pisg.cfg now supports regexs in user.cfg when 'regexp_aliases' is
  445. enabled. (thanks, Phil Gregory)
  446. * When using logdirs, files is now sorted properly, so files are read in the
  447. right order (thanks, Sascha Lüdecke)
  448. * A bunch of English grammar corrections (thanks, Phil Gregory)
  449. * Words like //www is now being ignored as they should.
  450. * Instead of 'slaps' we now have 'violence', so one can define their own
  451. action lines to be counted. Like '/me hits nick on the forehead',
  452. configured by the 'violent' variable.
  453. * pisg is undergoing a large change of it's code structure, meaning that
  454. things will be built with modules instead of one giant Perl script,
  455. making it easier to maintain and read, and it will enable us to make pisg
  456. get data, or parse data from another source than a logfile; for example
  457. an SQL database, *sometime*. This means that pisg is now coming with a
  458. new subdir 'modules/' containing all the modules pisg need. (thanks to
  459. Phil Gregory) if you expierence any problems with this change, please
  460. report back.
  461. * Moved some documentation to a new 'docs/' folder.
  462. * Joins wasn't working in mIRC format, fixed.
  463. * Support both [HH::mm::ss] and [HH::mm] in mIRC logformats.
  464. * Timebars was broken when using timeoffset, showing the wrong colors
  465. comparing with the legend.
  466. * Many bugs in documentation fixed, should be cleaner now.
  467. * Usual minor optimizations and fixes
  468. pisg (0.21) - Mon, Aug 27th 2001
  469. * Fix stupid legend bug; 0-6 should be 0-5, and 7-11 should be 6-11.
  470. * Added "Most referenced URLs".
  471. * Stop matching 'user@host blah' as a mailto link.
  472. * Fix a word counting bug - was counting a lot less words than in the
  473. previous version.
  474. * Supplied some extra info to the 'got kicked' stats, now it shows an
  475. example kick line from the stats. (Thanks to Michael Dales for
  476. show_kickline-patch)
  477. * The same for 'most slaps', 'most slapped', 'most actions' and
  478. 'most shouted' stats. Every option has it's own activation_variable,
  479. see CONFIG-README for more infos
  480. * Display the remaining nicks on the stats page (those who didnt reach the
  481. stats at all)
  482. * Display the total count of topics that were set
  483. * Some small HTML validation fixes
  484. * Fix: pisg didn't find the alias for the kicker.
  485. * Stop hardcoding filenames in 'legend'
  486. * Removed support for unnamed arguments on commandline, everyone should now
  487. use the named arguments. (For example you must do 'pisg.pl -l
  488. logfile-name', and not just do 'pisg.pl chan logfile format maintainer')
  489. * Add support for 'sex' for users in pisg.cfg, this will make the stats
  490. always mention text with the right sex when saying for example 'she was
  491. very ..'
  492. * Updated Spanish translation from Sheuron
  493. * Add support for mbot logs (http://darksun.com.pt/mbot/)
  494. * Some nice speedup improvements
  495. pisg (0.20) - Tue, Aug 14th 2001
  496. * Add 'bgpic' config setting for the possibility to add a userdefined
  497. background picture to the page (Vetinari)
  498. * If pisg can't find the config file in the current directory (when running
  499. from crontab), then try opening the config file in which pisg.pl resides
  500. instead..
  501. * <words foul="..."> is now known as <set words="...">
  502. * Add new options 'show_wpl' and 'show_cpl', this enables user to view the
  503. 'chars per line' and 'words per line' in the 'most active nicks',
  504. disabled by default.
  505. * New option 'show_time', this will display a small bar in the 'most active
  506. nicks' of when the respective people actually speak. [enabled]
  507. * Because of the above change, there is new png files for pisg, remember to
  508. use the new ones and not the old ones! (thanks Christian Legler)
  509. * Remember to distribute the 'FORMATS' file (was missed in the last two
  510. releases)
  511. * Swedish translation (thanks to Andreas Henriksson)
  512. * New feature: 'Most actions'
  513. * Add option 'show_legend' which can be used if you want to show the legend
  514. for the different times..
  515. * New option 'ignorewords' which is to be used if you want to ignore some
  516. words in the stats.
  517. * Usual cleanups and improvements
  518. pisg (0.19) - Tue, Aug 7th 2001
  519. * Fix critical bug where <channel="#chan"> in pisg.cfg didn't work at all.
  520. * Warn the user when a translation template doesn't exist for a specific
  521. language (so people know why some of the stats is in English, and
  522. hopefully encourages people to send in the missing template(s))
  523. * Don't try parsing . and .. 'files' in a directory when using logdir
  524. * Small updates to Danish translation
  525. * Small bug in documentation fixed
  526. pisg (0.18) - Mon, Aug 6th 2001
  527. * Added pisg.cfg support which now obsoletes user.cfg, in this file
  528. everything should be set, instead of in the script - this makes it easier
  529. upgrading pisg. Read CONFIG-README in order to "understand" it.
  530. * Commandline option -c is now -ch
  531. * Uncompress files with *.gz and *.bz2 automatically (Sascha Lüdecke)
  532. * Add new feature --prefix, this works on commandline so you only get logs
  533. starting with what you specify, for example -p '#mychan' will only get
  534. dir/#mychan* files. (Sascha Lüdecke)
  535. * Fix op tracking with bxlog logs
  536. * Added Foulwords-Variable to pisg.cfg
  537. * Make pisg die when there is no files in logdir
  538. * Portugese translation (thanks to JaMiR0W <jamirow@ig.com.br>)
  539. * Norweigan translation (thanks to Andreas Blaafladt)
  540. * Dutch translation (thanks to Pyrofikiemaan)
  541. * New feature: 'Those who couldnt control the shift key and wrote UPPERCASE'
  542. * New feature: 'Who got slapped the most'
  543. * New feature; 'Average words per line'
  544. * Stop copying CVS dirs with distribution
  545. * Also count words in actions, and a new feature: 'most words' (thanks to
  546. Hanno Hecker)
  547. * Updated a lot of documentation (README and CONFIG-README), you should
  548. reread it ;)
  549. * The usual small improvements (and bug additions)
  550. pisg (0.17) - Sat, July 28th 2001
  551. * Timezone offset now understands two digits as it should
  552. * The 'time bars' were broken, fix them.
  553. * Spanish translation (thanks to Sheuron Azxe)
  554. * Polish translation (thanks to Gandalf the Grey)
  555. * Moved translations over to new file -> lang.txt, to remove bloat in
  556. pisg.pl
  557. * Fixed a few minor bugs
  558. pisg (0.16a) - Wed, July 25th 2001
  559. * Forgot to remove some debugging :(
  560. pisg (0.16) - Wed, July 25th 2001
  561. * Danish translation (thanks to Kim Ingemann aka Tuxi)
  562. * Fixed some unitialized values which came up in some situations
  563. * Eggdrop log had 'last message repeated x times' - pisg didn't understood
  564. this before, now it does! :) (thanks to Jamie Cheetham).
  565. * French translation (thanks Molator)
  566. * Also use the timeoffset in 'most active times'
  567. * Started to distribute various scripts with pisg:
  568. - 'dropegg.pl' - takes a bunch of eggdrop logs and converts them into
  569. mIRC format (Emil Mikulic <darkmoon7@optushome.com.au>)
  570. - 'addalias.pl' - webinterface for allowing users to add their own stuff
  571. to the users.cfg file. (Doomshammer <doomshammer@doomshammer.yi.org>)
  572. - 'crontab' - small file explaining how to use pisg with crontab
  573. pisg (0.15) - Fri, July 20th 2001
  574. * Fixed bug where grufti-logfiles wouldn't ignore oppers.
  575. * Fixed pisg dying when there is no action and normallines in logfile
  576. * Also strip mIRC bold and underline codes
  577. * Nick tracking code optimized
  578. * Eggdrop logs were logging server mode changes.. fixed.
  579. * The 'active times' bars should now be more logical and always have a max
  580. height of 100px
  581. * Added new users.cfg file which obsoletes aliasfile and ignorefile
  582. * New feature: ability to add user pictures to stats
  583. * New feature: ability to add user links to stats (homepages, e-mail)
  584. * Made a big code change so it now supports somekind of template system so
  585. pisg can support more than one language
  586. * German language support added (thanks Winfried aka Doomshammer)
  587. * Now shows the time when the topic was changed in 'Latest topics'.
  588. * Thousands of small things which I forgot.
  589. * Removed the documentation for unnamed arguments on the commandline..
  590. people should start using the named arguments (--logfile, -f etc.)
  591. pisg (0.14) - Mon, July 16th 2001
  592. * 'Most referenced nicks' and 'most used words' now ignores the nicks in
  593. ignore.txt
  594. * 'Most used words' now ignores nicks
  595. * Fixed critical bug; --format wasn't working. (thanks S. William Schulz)
  596. pisg (0.13) - Sun, July 15th 2001
  597. * New feature: Now supports 'grufti' (bot) logfiles.
  598. * New feature: Now supports 'bxlog' (logging script for bitchx) logfiles
  599. * Improved some debugging
  600. * Cleaned up a lot of code, so it's structured better - less global
  601. variables and everything is now in subs, also found some variables which
  602. weren't used.. so it should be more correct and more efficient now
  603. * Fix up some speed in the kicking stats... it was doing the same grep twice
  604. * Fixed a stupid bug which caused pisg to die if the alias.txt wasn't
  605. there.
  606. * Really fix typo, sherif -> sheriff
  607. * Added a FORMATS file explaining the supported fileformats, and updated
  608. the README accordingly
  609. * Added a new feature where one can specify a log directory, and then pisg
  610. will run through all the files in the directory and combine them into one
  611. big html file.
  612. * -d on commandline now specifies logdir instead of debugging (removed)
  613. * Also added --aliasfile and --ignorefile as commandline options.
  614. pisg (0.12) - Thu, July 12th 2001
  615. * Strip mIRC color codes (Sam Bingner)
  616. * New feature: Support eggdrop logformats (Sam Bingner)
  617. * Track nicks/aliases dynamically [as an option] (Sam Bingner)
  618. * Added better commandline arguments (like --channel=#blah) and pisg now
  619. has a cool usage --help option. (thanks S. William Schulz)
  620. * xchat logformats which are indented should now be supported
  621. * New feature: 'most fouls' (bad language)
  622. * New feature: 'shortest lines' (as opposite to longest lines)
  623. * Added $timeoffset so people can get times in their own time zones.
  624. * It's now possible to define a pageheader file which can be included on
  625. the HTML page, with $pageheader
  626. * Changed 'no topics' text
  627. pisg (0.11) - Fri, June 29th 2001
  628. * Before http:// didn't get counted as a smiley, now "all" protocols
  629. doesn't get counted as smilies (ftp://, gohper://).
  630. * Fixed typo, sherif -> sheriff
  631. * Changed the appearence of 'most ref nicks/words', email me if you don't
  632. like it.. :)
  633. * Also add some fade stuff to the 'most active nicks'
  634. * Topic history variable wasn't used, fixed.
  635. * Replace & with &amp;
  636. * Replace URLs and e-mail addys in 'random quote' and 'last topic' to HTML
  637. hrefs
  638. * Some other small changes which I forgot
  639. pisg (0.10) - Fri, June 22th 2001
  640. * The 'Im going on vacation'-release. Fixes very small things.
  641. * Small bug in counting kicker/kicked person when using xchat - fixed.
  642. * Fixed a bug where some lines didn't catch up the alias for a nick
  643. * Join counting was broken.. fixed.
  644. * Use 'px' to define font sizes instead of 'pt' in CSS.
  645. * Fix some colors in the page which couldn't get set by variables in the
  646. top
  647. * Other small changes
  648. pisg (0.09) - Tue, June 5th 2001
  649. * Some small improvements in the count of sadfaces/smilies
  650. * New features:
  651. - 'most used words'
  652. - 'most referenced nick'
  653. * Rewrote a LOT of the format dependent code, now it's very easy adding
  654. new IRC log formats
  655. * Fixed random bugs here and there
  656. * The usual small, nice code enhancements.
  657. pisg (0.08) - Sat, April 14th 2001
  658. * Documentation updates (remember to up the version number :))
  659. * A lot of nice changes from Vetinary <iranitev@gmx.net>:
  660. - 'op/deop stats'
  661. - 'join stats'
  662. - 'action counting'
  663. - 'counting of :(, :-('
  664. * use strict;
  665. pisg (0.07) - Sun, March 11th 2001
  666. * New feature: Now supports xchat logfiles <:)
  667. * Should render pages 100% HTML 4.01/CSS2 compatible now
  668. * Some minor code cleanups (use strict; soon)
  669. pisg (0.06) - Wed, February 21th 2001
  670. * Even more workarounds for small logfiles
  671. * More customization options
  672. * Now shows processtime
  673. * You can now specify nicks to ignore in the logfile (bots etc)
  674. * Now supports commandline arguments (./pisg.pl chan logfile outputfile)
  675. * Some speedup improvements
  676. * A bit more HTML 4 compliant :)
  677. pisg (0.05) - Thu, February 15th 2001
  678. * New features:
  679. - 'Runners-up to Big numbers'
  680. - 'Latest topics'
  681. * More fixes for small logfiles
  682. * Enhanced 'Most active times'
  683. * Speedup improvements
  684. * Added CREDITS file to the nice people who have contributed :)
  685. pisg (0.04) - Fri, January 26th 2001
  686. * New features:
  687. - 'the person that smiled the most'
  688. - 'can now connect nicks together through alias file'
  689. - 'person that wrote the most monologues (5 or more lines in a row)'
  690. * Fixes for small logfiles
  691. * Restrutured code
  692. * More customization through variables in the top of the script
  693. pisg (0.03) - Thu, January 11rd 2001
  694. * Code cleanups
  695. * New features:
  696. - 'the op who kicked most'
  697. - 'the one who got kicked the most'
  698. - 'longest lines'
  699. * Highlight most active hour
  700. * New images, 'pipe-blue.png' and 'pipe-purple.png', removed 'pipe3v.gif'
  701. * Updated README
  702. * Added Changes file
  703. pisg (0.02) - Wed, January 3rd 2001
  704. * Initial release.