Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix copyright date |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
0d0b1e80f21c4360908aa8875ba9588c |
User & Date: | kevin 2016-04-09 00:48:35 |
Context
2016-04-09
| ||
03:11 | Fix corrupted AppleScript dictionary check-in: 0d340e9f73 user: kevin tags: trunk | |
00:48 | Fix copyright date check-in: 0d0b1e80f2 user: kevin tags: trunk | |
2016-04-08
| ||
23:51 | More ucrt bits check-in: f944610cfd user: kevin tags: trunk | |
Changes
Changes to QuickWho.py.
1 2 3 | #QuickWho: GUI for whois #MIT license. | | | 1 2 3 4 5 6 7 8 9 10 11 | #QuickWho: GUI for whois #MIT license. #(c) 2016 WordTech Communications LLC ##let's get started, import our modules and initialize some variables from tkinter import * from tkinter import font from tkinter import filedialog import os |
︙ | ︙ | |||
312 313 314 315 316 317 318 | label1 = Label(aboutframe, text="QuickWho 6.0", font='-weight bold', pady='2') label1.pack(side=TOP, expand=NO, fill=BOTH) label2 = Label(aboutframe, text="Internet Domains with Style", pady='2') label2.pack(side=TOP, expand=NO, fill=BOTH) | | | 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | label1 = Label(aboutframe, text="QuickWho 6.0", font='-weight bold', pady='2') label1.pack(side=TOP, expand=NO, fill=BOTH) label2 = Label(aboutframe, text="Internet Domains with Style", pady='2') label2.pack(side=TOP, expand=NO, fill=BOTH) label3=Label(aboutframe, text='Copyright (c) 2016 WordTech Communications LLC', pady='5') label3.pack(side=TOP, expand=NO, fill=BOTH) label4=Label(aboutframe, text='http://www.codebykevin.com/quickwho.html', fg='blue', pady='2') label4.pack(side=TOP, expand=NO, fill=BOTH) label4.bind('<1>', lambda event: self.launchurl('http://www.codebykevin.com/quickwho.html')) |
︙ | ︙ |