Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | tclog.tcl: Allow Tcl 9. Bump the version to 1.5.0. |
---|---|
Timelines: | family | ancestors | trunk | v1.5.0 |
Files: | files | file ages | folders |
SHA1: |
63ed81f84aaf2b170fb0207a93ea8cf2 |
User & Date: | dbohdan 2024-05-14 05:23:38 |
Context
2024-05-14
| ||
05:23 | tclog.tcl: Allow Tcl 9. Bump the version to 1.5.0. Leaf check-in: 63ed81f84a user: dbohdan tags: trunk, v1.5.0 | |
2023-06-15
| ||
17:16 | LICENSE.txt: Add D. Bohdan check-in: 850e5e9d2e user: dbohdan tags: trunk | |
Changes
Changes to LICENSE.txt.
1 2 3 | tclog - a weblog application in Tcl/Tk Copyright (c) 2003 Tomoyasu Kobayashi, ether@users.sourceforge.jp | | | 1 2 3 4 5 6 7 8 9 10 11 | tclog - a weblog application in Tcl/Tk Copyright (c) 2003 Tomoyasu Kobayashi, ether@users.sourceforge.jp Copyright (c) 2014, 2023-2024 D. Bohdan, https://dbohdan.com All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright |
︙ | ︙ |
Changes to tclog.tcl.
1 2 | #! /usr/bin/env tclsh # | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | #! /usr/bin/env tclsh # # tclog 1.5.0 - a weblog application in Tcl/Tk # # Copyright (c) 2003 Tomoyasu Kobayashi, ether@users.sourceforge.jp # Copyright (c) 2014, 2023-2024 D. Bohdan, https://dbohdan.com # # For information on usage and redistribution, and for a DISCLAIMER OF ALL # WARRANTIES, see the file "LICENSE.txt" in this distribution. package require Tcl 8.5 9 package require Tk package require textutil package require textutil::expander package require ftp package require http package require htmlparse package require uri |
︙ | ︙ |