irclog2html


Nameirclog2html JSON
Version 3.0.0 PyPI version JSON
download
home_pagehttps://mg.pov.lt/irclog2html/
SummaryConvert IRC logs to HTML
upload_time2023-08-28 10:42:06
maintainer
docs_urlNone
authorMarius Gedminas
requires_python>=3.7
licenseGPL v2 or v3
keywords irc log colorizer html wsgi
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===========
irclog2html
===========

Converts IRC log files to HTML with pretty colours.


Quick start
===========

Installation::

  pip install irclog2html

Quick usage for a single log file::

  irclog2html --help
  irclog2html filename.log                  (produces filename.log.html)

Mass-conversion of logs (one file per day, with YYYY-MM-DD in the filename)
with next/prev links, with mtime checks, usable from cron::

  logs2html directory/     (looks for *.log and *.log.gz, produces *.log.html)


Configuration files
===================

Since you probably don't want to keep specifying the same options on the
command line every time you run logs2html, you can create a config file.
For example::

  -t 'IRC logs for #mychannel'
  -p 'IRC logs for #mychannel for '
  # the following needs some extra Apache setup to enable the CGI/WSGI script
  --searchbox
  # where we keep the logs
  /full/path/to/directory/

Use it like this::

  logs2html -c /path/to/mychannel.conf

Lines starting with a ``#`` are ignored.  Other lines are interpreted as 
command-line options.

The order matters: options on the command line before the ``-c FILE`` will
be overriden by option in the config file.  Options specified after ``-c FILE``
will override the options in the config file.

You can include more than one config file by repeating ``-c FILE``.  You
can include config files from other config files.  You can even create loops of
config files and then watch and laugh manically as logs2html sits there burning
your CPU.


CGI script for log searching
============================

.. warning::
   The script can be easily abused to cause a denial of service attack; it
   parses *all* log files every time you perform a search.

You can generate search boxes on IRC log pages by passing the ``--searchbox``
option to ``logs2html``.  Here's an example Apache config snippet that makes
it work::

  RewriteRule ^/my-irclog/search/$ /my-irclog/search [R,L]
  ScriptAlias /my-irclog/search /usr/local/bin/irclogsearch
  <Location /my-irclog/search>
    SetEnv IRCLOG_LOCATION "/var/www/my-irclog/"
    # Uncomment the following if your log files use a different format
    #SetEnv IRCLOG_GLOB "*.log.????-??-??"
    # (this will also automatically handle *.log.????-??-??.gz)
  </Location>


WSGI script for log serving
===========================

.. warning::
   The script can be easily abused to cause a denial of service attack; it
   parses *all* log files every time you perform a search.

There's now an experimental WSGI script that can generate HTML for the
logs on the fly.  You can use it if you don't like cron scripts and CGI.

Here's an example Apache config snippet::

  WSGIScriptAlias /irclogs /usr/local/bin/irclogserver
  <Location /irclogs>
    SetEnv IRCLOG_LOCATION "/var/www/my-irclog/"
    # Uncomment the following if your log files use a different format
    #SetEnv IRCLOG_GLOB "*.log.????-??-??"
    # (this will also automatically handle *.log.????-??-??.gz)
  </Location>

Currently it has certain downsides:

- configuration is very limited, e.g you cannot specify titles or styles
  or enable dircproxy mode
- HTML files in the irc log directory will take precedence over
  dynamically-generated logs even if they're older than the corresponding
  log file (but on the plus side you can use that to have dynamic search
  via WSGI, but keep statically-generated HTML files with your own config
  tweaks)


WSGI script for multi-channel log serving
=========================================

.. warning::
   The script can be easily abused to cause a denial of service attack; it
   parses *all* log files every time you perform a search.

The experimental WSGI script can serve logs for multiple channels::

  WSGIScriptAlias /irclogs /usr/local/bin/irclogserver
  <Location /irclogs>
    SetEnv IRCLOG_CHAN_DIR "/var/www/my-irclog/"
    # Uncomment the following if your log files use a different format
    #SetEnv IRCLOG_GLOB "*.log.????-??-??"
    # (this will also automatically handle *.log.????-??-??.gz)
  </Location>

Now ``/irclogs`` will show a list of channels (subdirectories under
``/var/www/my-irclog/``), and ``/irclogs/channel/`` will show the
date index for that channel.


Misc
====

Website: https://mg.pov.lt/irclog2html/

Bug tracker:
https://github.com/mgedmin/irclog2html/issues

Licence: GPL v2 or v3 (https://www.gnu.org/copyleft/gpl.html)

|buildstatus|_ |appveyor|_ |coverage|_

.. |buildstatus| image:: https://github.com/mgedmin/irclog2html/workflows/build/badge.svg?branch=master
.. _buildstatus: https://github.com/mgedmin/irclog2html/actions

.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/irclog2html?branch=master&svg=true
.. _appveyor: https://ci.appveyor.com/project/mgedmin/irclog2html

.. |coverage| image:: https://coveralls.io/repos/mgedmin/irclog2html/badge.svg?branch=master
.. _coverage: https://coveralls.io/r/mgedmin/irclog2html



Changelog
=========

3.0.0 (2023-08-28)
------------------

- Drop support for Python 2.7 and 3.6.

- Add support for Python 3.10 and 3.11.

- Make permalinks permanent even from the latest.html file, by emitting the
  filename in the links.

- Add <meta name="viewport"> to set initial scale to 1 for improved mobile
  experience (`PR 32 <https://github.com/mgedmin/irclog2html/pull/32>`_).

- Support logs files created by `ii (Irc it) <https://tools.suckless.org/ii/>`_
  (`PR 33 <https://github.com/mgedmin/irclog2html/pull/33>`_).


2.17.3 (2021-07-08)
-------------------

- Add support for Python 3.8 and 3.9.

- Drop support for Python 3.5.

- Fix a bug where specifying --output-dir (-o) to logs2html would mistakenly
  skip generating some HTML files if they existed in the source directory
  (`issue 29 <https://github.com/mgedmin/irclog2html/issues/29>`_).


2.17.2 (2019-04-23)
-------------------

- Drop support for Python 3.4.


2.17.1 (2018-11-25)
-------------------

- Add support for Python 3.7.

- Drop support for Python 3.3.

- Support ``python -m irclog2html`` as shortcut for
  ``python -m irclog2html.irclog2html``.

- Make irclogserver ignore hidden directories (such as .git).


2.17.0 (2018-02-21)
-------------------

- Support `ii <https://tools.suckless.org/ii/>`_ logs which use Unix
  timestamps (https://github.com/mgedmin/irclog2html/pull/21).
  Pull request by Cédric Krier.


2.16.0 (2017-12-20)
-------------------

- Support Python 3.6.

- Fix for duplicated lines with the same time where the resulting HTML ``id``
  anchors would evolve into long form like "t22:24:49-2-3-4-5-6-7-8-9-10"
  instead of "t22:24:49-10" resulting in significant output file size growth
  in some cases.

- Add --output-dir (-o) parameter to logs2html so you can place the generated
  HTML files in a directory different from the input directory (`PR #20
  <https://github.com/mgedmin/irclog2html/issues/#20>`_).


2.15.3 (2016-12-08)
-------------------

- In some circumstances parts of a message up to the last '>' could be lost
  (https://github.com/mgedmin/irclog2html/issues/19).


2.15.2 (2016-10-07)
-------------------

- ``irclogserver`` channel list is now split into old channels and active
  channels, detected by checking whether the directory modification date
  is newer or older than 7 days.

- 2nd-level headings now have the same color as 1st-level headings.

- ``irclogserver`` no longer shows a 404 if you omit the trailing ``/``
  after a channel name in the URL.


2.15.1 (2016-09-25)
-------------------

- Lines with the same timestamp now get different HTML anchors
  (https://github.com/mgedmin/irclog2html/issues/17).  Thanks
  to Bryan Bishop for the original pull request.


2.15.0 (2016-09-25)
-------------------

- There's a new ``irclogserver`` script that can be used to serve
  dynamically-generated IRC logs and perform search.  It can also be
  deployed via WSGI.  Portions contributed by Albertas Agejevas
  (https://github.com/mgedmin/irclog2html/pull/9).

- Index pages group the logs by month
  (https://github.com/mgedmin/irclog2html/issues/12).

- Drop support for Python 2.6.


2.14.0 (2014-12-12)
-------------------

- Add -o option to specify the output file name.  Patch by Moises Silva
  (https://github.com/mgedmin/irclog2html/pull/7).


2.13.1 (2014-02-01)
-------------------

- Add support for Windows (e.g. refrain from creating latest.log.html
  symlinks).


2.13.0 (2013-12-18)
-------------------

- Handle gzipped files transparently
  (https://github.com/mgedmin/irclog2html/issues/5).


2.12.1 (2013-03-22)
-------------------

* Fix AttributeError in irclogsearch on Python 2.7
  (https://github.com/mgedmin/irclog2html/issues/1).


2.12.0 (2013-03-18)
-------------------

* Moved to Github.

* Add support for Python 3.3.

* Drop support for Python 2.4 and 2.5.

* Fix URL linkifier to not include trailing punctuation (LP#1155906).


2.11.1 (2013-03-17)
-------------------

* logs2html also accepts filenames that contain YYYYMMDD dates (in addition to
  YYYY-MM-DD).  Patch by Holger Just.  Fixes LP#1031642.


2.11.0 (2012-07-30)
-------------------

* irclogsearch can be told about the filename pattern of log files via an
  environment variable (IRCLOG_GLOB).  Patch by Jonathan Kinred.


2.10.0 (2012-02-12)
-------------------

* New option: --glob-pattern.  Patch by Albertas Agejevas.
  Fixes LP#912310.

* Links in logs are marked with rel="nofollow".  Patch by Matt Wheeler.
  Fixes LP#914553.

* New option: --version.

* New option: -c, --config=FILE.


2.9.2 (2011-01-16)
------------------

* Support XChat Latin/Unicode hybrid encoding (http://xchat.org/encoding/).
  Fixes LP#703622.

* irclog2html copies irclog.css file into the destination directory.
  Fixes LP#608727.


2.9.1 (2010-08-06)
------------------

* Make sure irclog.css is installed in the right place; logs2html needs it.


2.9 (2010-08-06)
----------------

* Restructured source tree, made irclogs2html into a package, added setup.py,
  buildout.cfg, bootstrap.py, Makefile, HACKING.txt; moved old porting test
  suite into a subdirectory (porting).

* logs2html copies irclog.css file into the destination directory.

* Released into PyPI.


2.8 (2010-07-22)
----------------

* Added README.txt and CHANGES.txt.

* Support dircproxy log files (new date format: "[15 Jan 08:42]",
  strip ident and IP address from nicknames).  Patch by Paul Frields.

* New option: --dircproxy also makes irclog2html strip a single leading
  '+' or '-' from messages.


2.7.1 (2009-04-30)
------------------

* Bug in logs2html.py error reporting, reported by Ondrej Baudys.


2.7 (2008-06-10)
----------------

* New style: mediawiki.  Patch by Ian Weller.


2.6 (2007-10-30)
----------------

* Support another date format (Oct 17 10:53:26).  Patch by Matthew Barnes.


2.5.1 (2007-03-22)
------------------

* logs2html.py: add a stable link to the latest log file
  (suggested by Chris Foster).


2.5 (2007-01-22)
----------------

* New option: --searchbox.

* Search CGI script improvements (e.g. put newest matches on top).


2.4 (2006-12-11)
----------------

* Added a sample CGI script for brute-force log searches.


2.3 (2005-03-08)
----------------

* Use xhtmltable style by default.

* Added a copy of the navbar at the bottom.


2.2 (2005-02-04)
----------------

* Support supybot's ChannelLogger date format (e.g. 02-Feb-2004).

* Fixed broken timestamp hyperlinks in xhtml/xhtmltable styles.

* CSS tweaks.


2.1mg (2005-01-09)
------------------

* Ported irclog2html.pl version 2.1 by Jeff Waugh from Perl to Python.

* New styles: xhtml, xhtmltable.

* New options: --title, --{prev,index,next}-{url,title}

* Removed hardcoded nick colour preferences for jdub, cantaker and chuckd

* Bugfix: colours are preserver accross nick changes (irclog2html.pl tried to
  do that, but had a bug in a regex)

* Added ISO8601 timestamp support (e.g. 2005-01-09T12:43:11).

* More careful URL linkification (stop at ', ", ), >).

* Added logs2html.py script for mass-conversion of logs.

* Added support for xchat log files.

* Added xchatlogsplit.py script for splitting xchat logs on day boundaries so they're suitable as input for logs2html.py.

            

Raw data

            {
    "_id": null,
    "home_page": "https://mg.pov.lt/irclog2html/",
    "name": "irclog2html",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "irc log colorizer html wsgi",
    "author": "Marius Gedminas",
    "author_email": "marius@gedmin.as",
    "download_url": "https://files.pythonhosted.org/packages/7b/ac/630c9d6b61a86999c2437b71069eaa4667ed5a35e8bb2497863fc0d6c038/irclog2html-3.0.0.tar.gz",
    "platform": "any",
    "description": "===========\nirclog2html\n===========\n\nConverts IRC log files to HTML with pretty colours.\n\n\nQuick start\n===========\n\nInstallation::\n\n  pip install irclog2html\n\nQuick usage for a single log file::\n\n  irclog2html --help\n  irclog2html filename.log                  (produces filename.log.html)\n\nMass-conversion of logs (one file per day, with YYYY-MM-DD in the filename)\nwith next/prev links, with mtime checks, usable from cron::\n\n  logs2html directory/     (looks for *.log and *.log.gz, produces *.log.html)\n\n\nConfiguration files\n===================\n\nSince you probably don't want to keep specifying the same options on the\ncommand line every time you run logs2html, you can create a config file.\nFor example::\n\n  -t 'IRC logs for #mychannel'\n  -p 'IRC logs for #mychannel for '\n  # the following needs some extra Apache setup to enable the CGI/WSGI script\n  --searchbox\n  # where we keep the logs\n  /full/path/to/directory/\n\nUse it like this::\n\n  logs2html -c /path/to/mychannel.conf\n\nLines starting with a ``#`` are ignored.  Other lines are interpreted as \ncommand-line options.\n\nThe order matters: options on the command line before the ``-c FILE`` will\nbe overriden by option in the config file.  Options specified after ``-c FILE``\nwill override the options in the config file.\n\nYou can include more than one config file by repeating ``-c FILE``.  You\ncan include config files from other config files.  You can even create loops of\nconfig files and then watch and laugh manically as logs2html sits there burning\nyour CPU.\n\n\nCGI script for log searching\n============================\n\n.. warning::\n   The script can be easily abused to cause a denial of service attack; it\n   parses *all* log files every time you perform a search.\n\nYou can generate search boxes on IRC log pages by passing the ``--searchbox``\noption to ``logs2html``.  Here's an example Apache config snippet that makes\nit work::\n\n  RewriteRule ^/my-irclog/search/$ /my-irclog/search [R,L]\n  ScriptAlias /my-irclog/search /usr/local/bin/irclogsearch\n  <Location /my-irclog/search>\n    SetEnv IRCLOG_LOCATION \"/var/www/my-irclog/\"\n    # Uncomment the following if your log files use a different format\n    #SetEnv IRCLOG_GLOB \"*.log.????-??-??\"\n    # (this will also automatically handle *.log.????-??-??.gz)\n  </Location>\n\n\nWSGI script for log serving\n===========================\n\n.. warning::\n   The script can be easily abused to cause a denial of service attack; it\n   parses *all* log files every time you perform a search.\n\nThere's now an experimental WSGI script that can generate HTML for the\nlogs on the fly.  You can use it if you don't like cron scripts and CGI.\n\nHere's an example Apache config snippet::\n\n  WSGIScriptAlias /irclogs /usr/local/bin/irclogserver\n  <Location /irclogs>\n    SetEnv IRCLOG_LOCATION \"/var/www/my-irclog/\"\n    # Uncomment the following if your log files use a different format\n    #SetEnv IRCLOG_GLOB \"*.log.????-??-??\"\n    # (this will also automatically handle *.log.????-??-??.gz)\n  </Location>\n\nCurrently it has certain downsides:\n\n- configuration is very limited, e.g you cannot specify titles or styles\n  or enable dircproxy mode\n- HTML files in the irc log directory will take precedence over\n  dynamically-generated logs even if they're older than the corresponding\n  log file (but on the plus side you can use that to have dynamic search\n  via WSGI, but keep statically-generated HTML files with your own config\n  tweaks)\n\n\nWSGI script for multi-channel log serving\n=========================================\n\n.. warning::\n   The script can be easily abused to cause a denial of service attack; it\n   parses *all* log files every time you perform a search.\n\nThe experimental WSGI script can serve logs for multiple channels::\n\n  WSGIScriptAlias /irclogs /usr/local/bin/irclogserver\n  <Location /irclogs>\n    SetEnv IRCLOG_CHAN_DIR \"/var/www/my-irclog/\"\n    # Uncomment the following if your log files use a different format\n    #SetEnv IRCLOG_GLOB \"*.log.????-??-??\"\n    # (this will also automatically handle *.log.????-??-??.gz)\n  </Location>\n\nNow ``/irclogs`` will show a list of channels (subdirectories under\n``/var/www/my-irclog/``), and ``/irclogs/channel/`` will show the\ndate index for that channel.\n\n\nMisc\n====\n\nWebsite: https://mg.pov.lt/irclog2html/\n\nBug tracker:\nhttps://github.com/mgedmin/irclog2html/issues\n\nLicence: GPL v2 or v3 (https://www.gnu.org/copyleft/gpl.html)\n\n|buildstatus|_ |appveyor|_ |coverage|_\n\n.. |buildstatus| image:: https://github.com/mgedmin/irclog2html/workflows/build/badge.svg?branch=master\n.. _buildstatus: https://github.com/mgedmin/irclog2html/actions\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/irclog2html?branch=master&svg=true\n.. _appveyor: https://ci.appveyor.com/project/mgedmin/irclog2html\n\n.. |coverage| image:: https://coveralls.io/repos/mgedmin/irclog2html/badge.svg?branch=master\n.. _coverage: https://coveralls.io/r/mgedmin/irclog2html\n\n\n\nChangelog\n=========\n\n3.0.0 (2023-08-28)\n------------------\n\n- Drop support for Python 2.7 and 3.6.\n\n- Add support for Python 3.10 and 3.11.\n\n- Make permalinks permanent even from the latest.html file, by emitting the\n  filename in the links.\n\n- Add <meta name=\"viewport\"> to set initial scale to 1 for improved mobile\n  experience (`PR 32 <https://github.com/mgedmin/irclog2html/pull/32>`_).\n\n- Support logs files created by `ii (Irc it) <https://tools.suckless.org/ii/>`_\n  (`PR 33 <https://github.com/mgedmin/irclog2html/pull/33>`_).\n\n\n2.17.3 (2021-07-08)\n-------------------\n\n- Add support for Python 3.8 and 3.9.\n\n- Drop support for Python 3.5.\n\n- Fix a bug where specifying --output-dir (-o) to logs2html would mistakenly\n  skip generating some HTML files if they existed in the source directory\n  (`issue 29 <https://github.com/mgedmin/irclog2html/issues/29>`_).\n\n\n2.17.2 (2019-04-23)\n-------------------\n\n- Drop support for Python 3.4.\n\n\n2.17.1 (2018-11-25)\n-------------------\n\n- Add support for Python 3.7.\n\n- Drop support for Python 3.3.\n\n- Support ``python -m irclog2html`` as shortcut for\n  ``python -m irclog2html.irclog2html``.\n\n- Make irclogserver ignore hidden directories (such as .git).\n\n\n2.17.0 (2018-02-21)\n-------------------\n\n- Support `ii <https://tools.suckless.org/ii/>`_ logs which use Unix\n  timestamps (https://github.com/mgedmin/irclog2html/pull/21).\n  Pull request by C\u00e9dric Krier.\n\n\n2.16.0 (2017-12-20)\n-------------------\n\n- Support Python 3.6.\n\n- Fix for duplicated lines with the same time where the resulting HTML ``id``\n  anchors would evolve into long form like \"t22:24:49-2-3-4-5-6-7-8-9-10\"\n  instead of \"t22:24:49-10\" resulting in significant output file size growth\n  in some cases.\n\n- Add --output-dir (-o) parameter to logs2html so you can place the generated\n  HTML files in a directory different from the input directory (`PR #20\n  <https://github.com/mgedmin/irclog2html/issues/#20>`_).\n\n\n2.15.3 (2016-12-08)\n-------------------\n\n- In some circumstances parts of a message up to the last '>' could be lost\n  (https://github.com/mgedmin/irclog2html/issues/19).\n\n\n2.15.2 (2016-10-07)\n-------------------\n\n- ``irclogserver`` channel list is now split into old channels and active\n  channels, detected by checking whether the directory modification date\n  is newer or older than 7 days.\n\n- 2nd-level headings now have the same color as 1st-level headings.\n\n- ``irclogserver`` no longer shows a 404 if you omit the trailing ``/``\n  after a channel name in the URL.\n\n\n2.15.1 (2016-09-25)\n-------------------\n\n- Lines with the same timestamp now get different HTML anchors\n  (https://github.com/mgedmin/irclog2html/issues/17).  Thanks\n  to Bryan Bishop for the original pull request.\n\n\n2.15.0 (2016-09-25)\n-------------------\n\n- There's a new ``irclogserver`` script that can be used to serve\n  dynamically-generated IRC logs and perform search.  It can also be\n  deployed via WSGI.  Portions contributed by Albertas Agejevas\n  (https://github.com/mgedmin/irclog2html/pull/9).\n\n- Index pages group the logs by month\n  (https://github.com/mgedmin/irclog2html/issues/12).\n\n- Drop support for Python 2.6.\n\n\n2.14.0 (2014-12-12)\n-------------------\n\n- Add -o option to specify the output file name.  Patch by Moises Silva\n  (https://github.com/mgedmin/irclog2html/pull/7).\n\n\n2.13.1 (2014-02-01)\n-------------------\n\n- Add support for Windows (e.g. refrain from creating latest.log.html\n  symlinks).\n\n\n2.13.0 (2013-12-18)\n-------------------\n\n- Handle gzipped files transparently\n  (https://github.com/mgedmin/irclog2html/issues/5).\n\n\n2.12.1 (2013-03-22)\n-------------------\n\n* Fix AttributeError in irclogsearch on Python 2.7\n  (https://github.com/mgedmin/irclog2html/issues/1).\n\n\n2.12.0 (2013-03-18)\n-------------------\n\n* Moved to Github.\n\n* Add support for Python 3.3.\n\n* Drop support for Python 2.4 and 2.5.\n\n* Fix URL linkifier to not include trailing punctuation (LP#1155906).\n\n\n2.11.1 (2013-03-17)\n-------------------\n\n* logs2html also accepts filenames that contain YYYYMMDD dates (in addition to\n  YYYY-MM-DD).  Patch by Holger Just.  Fixes LP#1031642.\n\n\n2.11.0 (2012-07-30)\n-------------------\n\n* irclogsearch can be told about the filename pattern of log files via an\n  environment variable (IRCLOG_GLOB).  Patch by Jonathan Kinred.\n\n\n2.10.0 (2012-02-12)\n-------------------\n\n* New option: --glob-pattern.  Patch by Albertas Agejevas.\n  Fixes LP#912310.\n\n* Links in logs are marked with rel=\"nofollow\".  Patch by Matt Wheeler.\n  Fixes LP#914553.\n\n* New option: --version.\n\n* New option: -c, --config=FILE.\n\n\n2.9.2 (2011-01-16)\n------------------\n\n* Support XChat Latin/Unicode hybrid encoding (http://xchat.org/encoding/).\n  Fixes LP#703622.\n\n* irclog2html copies irclog.css file into the destination directory.\n  Fixes LP#608727.\n\n\n2.9.1 (2010-08-06)\n------------------\n\n* Make sure irclog.css is installed in the right place; logs2html needs it.\n\n\n2.9 (2010-08-06)\n----------------\n\n* Restructured source tree, made irclogs2html into a package, added setup.py,\n  buildout.cfg, bootstrap.py, Makefile, HACKING.txt; moved old porting test\n  suite into a subdirectory (porting).\n\n* logs2html copies irclog.css file into the destination directory.\n\n* Released into PyPI.\n\n\n2.8 (2010-07-22)\n----------------\n\n* Added README.txt and CHANGES.txt.\n\n* Support dircproxy log files (new date format: \"[15 Jan 08:42]\",\n  strip ident and IP address from nicknames).  Patch by Paul Frields.\n\n* New option: --dircproxy also makes irclog2html strip a single leading\n  '+' or '-' from messages.\n\n\n2.7.1 (2009-04-30)\n------------------\n\n* Bug in logs2html.py error reporting, reported by Ondrej Baudys.\n\n\n2.7 (2008-06-10)\n----------------\n\n* New style: mediawiki.  Patch by Ian Weller.\n\n\n2.6 (2007-10-30)\n----------------\n\n* Support another date format (Oct 17 10:53:26).  Patch by Matthew Barnes.\n\n\n2.5.1 (2007-03-22)\n------------------\n\n* logs2html.py: add a stable link to the latest log file\n  (suggested by Chris Foster).\n\n\n2.5 (2007-01-22)\n----------------\n\n* New option: --searchbox.\n\n* Search CGI script improvements (e.g. put newest matches on top).\n\n\n2.4 (2006-12-11)\n----------------\n\n* Added a sample CGI script for brute-force log searches.\n\n\n2.3 (2005-03-08)\n----------------\n\n* Use xhtmltable style by default.\n\n* Added a copy of the navbar at the bottom.\n\n\n2.2 (2005-02-04)\n----------------\n\n* Support supybot's ChannelLogger date format (e.g. 02-Feb-2004).\n\n* Fixed broken timestamp hyperlinks in xhtml/xhtmltable styles.\n\n* CSS tweaks.\n\n\n2.1mg (2005-01-09)\n------------------\n\n* Ported irclog2html.pl version 2.1 by Jeff Waugh from Perl to Python.\n\n* New styles: xhtml, xhtmltable.\n\n* New options: --title, --{prev,index,next}-{url,title}\n\n* Removed hardcoded nick colour preferences for jdub, cantaker and chuckd\n\n* Bugfix: colours are preserver accross nick changes (irclog2html.pl tried to\n  do that, but had a bug in a regex)\n\n* Added ISO8601 timestamp support (e.g. 2005-01-09T12:43:11).\n\n* More careful URL linkification (stop at ', \", ), >).\n\n* Added logs2html.py script for mass-conversion of logs.\n\n* Added support for xchat log files.\n\n* Added xchatlogsplit.py script for splitting xchat logs on day boundaries so they're suitable as input for logs2html.py.\n",
    "bugtrack_url": null,
    "license": "GPL v2 or v3",
    "summary": "Convert IRC logs to HTML",
    "version": "3.0.0",
    "project_urls": {
        "Homepage": "https://mg.pov.lt/irclog2html/"
    },
    "split_keywords": [
        "irc",
        "log",
        "colorizer",
        "html",
        "wsgi"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f0ae93cce2a9c3207b5fcd99aaeacb8c64c8bac1cd4d3b54c18c3a114a45d0c",
                "md5": "a5b7a023c22e7606bfa94a7b963bb8e3",
                "sha256": "5f05f613fac70090f3372addcfc28369bc21741e29c71dfa83f15c90032a81a9"
            },
            "downloads": -1,
            "filename": "irclog2html-3.0.0-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a5b7a023c22e7606bfa94a7b963bb8e3",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">=3.7",
            "size": 52186,
            "upload_time": "2023-08-28T10:42:03",
            "upload_time_iso_8601": "2023-08-28T10:42:03.675461Z",
            "url": "https://files.pythonhosted.org/packages/1f/0a/e93cce2a9c3207b5fcd99aaeacb8c64c8bac1cd4d3b54c18c3a114a45d0c/irclog2html-3.0.0-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bac630c9d6b61a86999c2437b71069eaa4667ed5a35e8bb2497863fc0d6c038",
                "md5": "d66eb17805eb709f950a8aaa9171f473",
                "sha256": "840cce2423c392ef516acd6d4fcef2c282fd04d80dad8b20bc05359891d6db07"
            },
            "downloads": -1,
            "filename": "irclog2html-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "d66eb17805eb709f950a8aaa9171f473",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 221106,
            "upload_time": "2023-08-28T10:42:06",
            "upload_time_iso_8601": "2023-08-28T10:42:06.551638Z",
            "url": "https://files.pythonhosted.org/packages/7b/ac/630c9d6b61a86999c2437b71069eaa4667ed5a35e8bb2497863fc0d6c038/irclog2html-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-28 10:42:06",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "irclog2html"
}
        
Elapsed time: 0.12424s