Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch bug-3604576 Excluding Merge-Ins
This is equivalent to a diff from 996d4a85b5 to 0c58bdf592
|
2013-02-14
| ||
| 12:09 | [Bug 3604576]: msgcat-1.5.0.tm error on windows XP check-in: cae0f1fb41 user: jan.nijtmans tags: core-8-5-branch | |
| 11:09 | Finer granulated catch Closed-Leaf check-in: 0c58bdf592 user: oehhar tags: bug-3604576 | |
| 09:38 | Suggested fix for bug 3604576: msgcat -1.5.0.tm error on windows XP, inclusive bump to version 1.5.1... check-in: a5b035f3f2 user: jan.nijtmans tags: bug-3604576 | |
| 09:01 | Improve some comments and quoting, no change in functionality. Only check for refCount == 0x6161616... check-in: 37c5e68b61 user: jan.nijtmans tags: trunk | |
| 08:26 | Improve some comments and quoting, no change in functionality check-in: 996d4a85b5 user: jan.nijtmans tags: core-8-5-branch | |
| 06:23 | Add some extra paths on Windows for finding tclConfig.sh, for mSys and Cygwin shell. check-in: dc4021475e user: jan.nijtmans tags: core-8-4-branch | |
|
2013-02-12
| ||
| 23:21 | merge-mark check-in: d64bd8ab03 user: jan.nijtmans tags: core-8-5-branch | |
Changes to doc/msgcat.n.
| ︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + | .BS '\" Note: do not modify the .SH NAME line immediately below! .SH NAME msgcat \- Tcl message catalog .SH SYNOPSIS \fBpackage require Tcl 8.5\fR .sp |
| ︙ |
Changes to library/msgcat/msgcat.tcl.
| ︙ | |||
9 10 11 12 13 14 15 | 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | - + | # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. package require Tcl 8.5 # When the version number changes, be sure to update the pkgIndex.tcl file, # and the installation directory in the Makefiles. |
| ︙ | |||
547 548 549 550 551 552 553 | 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | - + - - + - - + - |
# -[a-z]{4} : script (optional, translated by table Latn->latin)
# -[a-z]{2}|[0-9]{3} : territory (optional, numerical region codes not used)
# (-.*)* : variant, extension, private use (optional, not used)
# Those are translated to local strings.
# Examples: de-CH -> de_ch, sr-Latn-CS -> sr_cs@latin, es-419 -> es
#
set key {HKEY_CURRENT_USER\Control Panel\International}
|
| ︙ |
Changes to library/msgcat/pkgIndex.tcl.
1 | 1 2 | - + |
if {![package vsatisfies [package provide Tcl] 8.5]} {return}
|
Changes to tests/msgcat.test.
| ︙ | |||
13 14 15 16 17 18 19 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | - - + + |
# message catalogs for locales foo, foo_BAR, and foo_BAR_baz.
package require Tcl 8.5
if {[catch {package require tcltest 2}]} {
puts stderr "Skipping tests in [info script]. tcltest 2 required."
return
}
|
| ︙ |
Changes to unix/Makefile.in.
| ︙ | |||
769 770 771 772 773 774 775 | 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 | - - + + | @echo "Installing package http 2.7.11 as a Tcl Module"; @$(INSTALL_DATA) $(TOP_DIR)/library/http/http.tcl "$(SCRIPT_INSTALL_DIR)"/../tcl8/8.4/http-2.7.11.tm; @echo "Installing package opt0.4 files to $(SCRIPT_INSTALL_DIR)/opt0.4/"; @for i in $(TOP_DIR)/library/opt/*.tcl ; \ do \ $(INSTALL_DATA) $$i "$(SCRIPT_INSTALL_DIR)"/opt0.4; \ done; |
| ︙ |
Changes to win/Makefile.in.
| ︙ | |||
645 646 647 648 649 650 651 | 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 | - - + + | @echo "Installing package http 2.7.11 as a Tcl Module"; @$(COPY) $(ROOT_DIR)/library/http/http.tcl $(SCRIPT_INSTALL_DIR)/../tcl8/8.4/http-2.7.11.tm; @echo "Installing library opt0.4 directory"; @for j in $(ROOT_DIR)/library/opt/*.tcl; \ do \ $(COPY) "$$j" "$(SCRIPT_INSTALL_DIR)/opt0.4"; \ done; |
| ︙ |