comparison urllog.tcl @ 503:fdd1f0b83685 rel-0_3_0

urllog: Migration from old versions hasn't been supported in reality for a long time, though it is of course possible with manual means. Remove the mention of conversion and clarify the notes a bit.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 23 Jan 2020 08:04:48 +0200
parents ace795974e66
children 137d61a0b5b7
comparison
equal deleted inserted replaced
502:1255d524a919 503:fdd1f0b83685
12 # 12 #
13 # URL-logger script for EggDrop IRC robot, utilizing SQLite3 database 13 # URL-logger script for EggDrop IRC robot, utilizing SQLite3 database
14 # This script requires SQLite TCL extension. Under Debian, you need: 14 # This script requires SQLite TCL extension. Under Debian, you need:
15 # tcl8.5 libsqlite3-tcl (and eggdrop eggdrop-data, of course) 15 # tcl8.5 libsqlite3-tcl (and eggdrop eggdrop-data, of course)
16 # 16 #
17 # NOTICE! If you are upgrading to URLLog v2.0+ from any 1.x version, you
18 # may want to run a conversion script against your URL-database file,
19 # if you wish to preserve the old data.
20 #
21 # See convert_urllog_db.tcl for more information.
22 #
23 # If you are doing a fresh install, you will need to create the initial 17 # If you are doing a fresh install, you will need to create the initial
24 # database with the required table schemas. You can do that by running 18 # database with the required table schemas. You can do that by running
25 # "create_urllog_db.tcl" after setting up config.urllog 19 # "create_urllog_db.tcl". You also need to set up the configuration in
20 # "config.urllog" file.
26 # 21 #
27 ########################################################################## 22 ##########################################################################
28 23
29 ### The configuration should be in config.urllog in same directory 24 ### The configuration should be in config.urllog in same directory
30 ### as this script. Or change the line below to point where ever 25 ### as this script. Or change the line below to point where ever