Skip to content

Commit

Permalink
Add ISSUE_TEMPLATE and PULL_REQUEST_TEMPLATE for github.
Browse files Browse the repository at this point in the history
Change many url's from http:// to https://
  • Loading branch information
jan.nijtmans committed Jun 21, 2021
1 parent 3b894eb commit 6eac9c2
Show file tree
Hide file tree
Showing 13 changed files with 18 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -3203,7 +3203,7 @@ a better first place to look now.
2009-03-25 Jan Nijtmans <[email protected]>

* 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion doc/wm.n
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion generic/tkInt.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down
2 changes: 1 addition & 1 deletion generic/tkSelect.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion library/demos/cscroll.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library/icons.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
#
Expand Down
2 changes: 1 addition & 1 deletion library/listbox.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library/text.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library/tk.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
4 changes: 2 additions & 2 deletions macosx/Credits.html.in
Original file line number Diff line number Diff line change
Expand Up @@ -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;">
Expand Down

0 comments on commit 6eac9c2

Please sign in to comment.