summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-21 13:05:45 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-06-21 13:05:45 (GMT)
commit6eac9c2f48c934ccb300208994845259d88e1ebf (patch)
treec3bd901d996e7d8e68c6d01cdc37e191297b2a4b
parent3b894ebd5728eb377932f6a0a6f7703ad70ab7cf (diff)
downloadtk-6eac9c2f48c934ccb300208994845259d88e1ebf.zip
tk-6eac9c2f48c934ccb300208994845259d88e1ebf.tar.gz
tk-6eac9c2f48c934ccb300208994845259d88e1ebf.tar.bz2
Add ISSUE_TEMPLATE and PULL_REQUEST_TEMPLATE for github.
Change many url's from http:// to https://
-rw-r--r--.github/ISSUE_TEMPLATE.md3
-rw-r--r--.github/PULL_REQUEST_TEMPLATE.md3
-rw-r--r--ChangeLog2
-rw-r--r--README.md2
-rw-r--r--doc/wm.n2
-rw-r--r--generic/tkInt.h2
-rw-r--r--generic/tkSelect.c2
-rw-r--r--library/demos/cscroll.tcl2
-rw-r--r--library/icons.tcl2
-rw-r--r--library/listbox.tcl2
-rw-r--r--library/text.tcl2
-rw-r--r--library/tk.tcl2
-rw-r--r--macosx/Credits.html.in4
13 files changed, 18 insertions, 12 deletions
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
new file mode 100644
index 0000000..35a56fb
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE.md
@@ -0,0 +1,3 @@
+Important Note
+==========
+Please do not file issues with Tk on Github. They are unlikely to be noticed in a timely fashion. Tk issues are hosted in the [tk fossil repository on core.tcl-lang.org](https://core.tcl-lang.org/tk/tktnew); please post them there.
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
new file mode 100644
index 0000000..dc07555
--- /dev/null
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,3 @@
+Important Note
+==========
+Please do not file pull requests with Tk on Github. They are unlikely to be noticed in a timely fashion. Tk issues (including patches) are hosted in the [tk fossil repository on core.tcl-lang.org](https://core.tcl-lang.org/tk/tktnew); please post them there.
diff --git a/ChangeLog b/ChangeLog
index f01946a..941c509 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3203,7 +3203,7 @@ a better first place to look now.
2009-03-25 Jan Nijtmans <nijtmans@users.sf.net>
* doc/wish.1: Bring doc and demos in line with
- * library/demos/hello: http://wiki.tcl.tk/812
+ * library/demos/hello: https://wiki.tcl-lang.org/page/exec+magic
* library/demos/rmt
* library/demos/square
* library/demos/tcolor
diff --git a/README.md b/README.md
index 2c27a64..38d026a 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ This directory contains the sources and documentation for Tk, a
cross-platform GUI toolkit implemented with the Tcl scripting language.
For details on features, incompatibilities, and potential problems with
-this release, see [the Tcl/Tk 8.6 Web page](https://www.tcl.tk/software/tcltk/8.6.html)
+this release, see [the Tcl/Tk 8.6 Web page](https://www.tcl-lang.org/software/tcltk/8.6.html)
or refer to the "changes" file in this directory, which contains a
historical record of all changes to Tk.
diff --git a/doc/wm.n b/doc/wm.n
index 5e6c394..5bb1c61 100644
--- a/doc/wm.n
+++ b/doc/wm.n
@@ -120,7 +120,7 @@ color with some alpha, e.g.
.PP
On X11, the following attributes may be set. These are not supported by all
window managers, and will have no effect under older WMs.
-.\" See http://www.freedesktop.org/Standards/wm-spec
+.\" See https://www.freedesktop.org/wiki/Specifications/wm-spec/
.TP
\fB\-type\fR
.VS 8.6
diff --git a/generic/tkInt.h b/generic/tkInt.h
index c281821..fe8f16e 100644
--- a/generic/tkInt.h
+++ b/generic/tkInt.h
@@ -1041,7 +1041,7 @@ MODULE_SCOPE const char *const tkWebColors[20];
#endif
/*
- * Support for Clang Static Analyzer <http://clang-analyzer.llvm.org>
+ * Support for Clang Static Analyzer <https://clang-analyzer.llvm.org/>
*/
#if defined(PURIFY) && defined(__clang__)
diff --git a/generic/tkSelect.c b/generic/tkSelect.c
index f187f83..ef636da 100644
--- a/generic/tkSelect.c
+++ b/generic/tkSelect.c
@@ -1191,7 +1191,7 @@ TkSelInit(
* Using UTF8_STRING instead of the XA_UTF8_STRING macro allows us to
* support older X servers that didn't have UTF8_STRING yet. This is
* necessary on Unix systems. For more information, see:
- * http://www.cl.cam.ac.uk/~mgk25/unicode.html#x11
+ * https://www.cl.cam.ac.uk/~mgk25/unicode.html#x11
*/
#if !defined(_WIN32)
diff --git a/library/demos/cscroll.tcl b/library/demos/cscroll.tcl
index d210c7d..c88bfa9 100644
--- a/library/demos/cscroll.tcl
+++ b/library/demos/cscroll.tcl
@@ -114,7 +114,7 @@ if {[tk windowingsystem] eq "x11" && ![package vsatisfies [package provide Tk] 8
# Support for mousewheels on Linux/Unix commonly comes through mapping
# the wheel to the extended buttons. If you have a mousewheel, find
# Linux configuration info at:
- # http://linuxreviews.org/howtos/xfree/mouse/
+ # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X
bind $c <Button-4> {
if {!$tk_strictMotif} {
%W yview scroll -5 units
diff --git a/library/icons.tcl b/library/icons.tcl
index e53a1bd..87af75a 100644
--- a/library/icons.tcl
+++ b/library/icons.tcl
@@ -4,7 +4,7 @@
# were provided by the Tango Desktop project which provides a
# unified set of high quality icons licensed under the
# Creative Commons Attribution Share-Alike license
-# (http://creativecommons.org/licenses/by-sa/3.0/)
+# (https://creativecommons.org/licenses/by-sa/3.0/)
#
# See http://tango.freedesktop.org/Tango_Desktop_Project
#
diff --git a/library/listbox.tcl b/library/listbox.tcl
index 9e0da6c..44abfb9 100644
--- a/library/listbox.tcl
+++ b/library/listbox.tcl
@@ -214,7 +214,7 @@ if {[tk windowingsystem] eq "x11"} {
# Support for mousewheels on Linux/Unix commonly comes through mapping
# the wheel to the extended buttons. If you have a mousewheel, find
# Linux configuration info at:
- # http://linuxreviews.org/howtos/xfree/mouse/
+ # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X
bind Listbox <4> {
if {!$tk_strictMotif} {
%W yview scroll -5 units
diff --git a/library/text.tcl b/library/text.tcl
index ec8f3d3..d1f9b86 100644
--- a/library/text.tcl
+++ b/library/text.tcl
@@ -499,7 +499,7 @@ if {[tk windowingsystem] eq "x11"} {
# Support for mousewheels on Linux/Unix commonly comes through mapping
# the wheel to the extended buttons. If you have a mousewheel, find
# Linux configuration info at:
- # http://linuxreviews.org/howtos/xfree/mouse/
+ # https://linuxreviews.org/HOWTO_change_the_mouse_speed_in_X
bind Text <4> {
if {!$tk_strictMotif} {
%W yview scroll -50 pixels
diff --git a/library/tk.tcl b/library/tk.tcl
index 0715489..be934c1 100644
--- a/library/tk.tcl
+++ b/library/tk.tcl
@@ -460,7 +460,7 @@ switch -exact -- [tk windowingsystem] {
event add <<ContextMenu>> <Button-2>
# Official bindings
- # See http://support.apple.com/kb/HT1343
+ # See https://support.apple.com/en-us/HT201236
event add <<SelectAll>> <Command-Key-a>
event add <<Undo>> <Command-Key-z> <Command-Lock-Key-Z>
event add <<Redo>> <Shift-Command-Key-z> <Shift-Command-Lock-Key-z>
diff --git a/macosx/Credits.html.in b/macosx/Credits.html.in
index cc409b1..1c14367 100644
--- a/macosx/Credits.html.in
+++ b/macosx/Credits.html.in
@@ -5,8 +5,8 @@
<body style="font-size:120%;font-family:Arial,sans-serif;">
<p>
Tcl and Tk are distributed under a modified BSD license:<br>
-<a href="https:www.tcl.tk/software/tcltk/license.html">
- https:www.tcl.tk/software/tcltk/license.html
+<a href="https://www.tcl-lang.org/software/tcltk/license.html">
+ https://www.tcl-lang.org/software/tcltk/license.html
</a>
</p>
<ul style="list-style-type:none;">