summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/config-main.def
diff options
context:
space:
mode:
authorKurt B. Kaiser <kbk@shore.net>2003-01-14 22:03:31 (GMT)
committerKurt B. Kaiser <kbk@shore.net>2003-01-14 22:03:31 (GMT)
commit8e92bf7699ac3617d3a0a9a55a38f642f5a6ecc6 (patch)
tree8e4486a10f7b3e00124724d0f1fe717fbb6c1f2e /Lib/idlelib/config-main.def
parent50e92235e7fc7151f591f76b73fb539e34593405 (diff)
downloadcpython-8e92bf7699ac3617d3a0a9a55a38f642f5a6ecc6.zip
cpython-8e92bf7699ac3617d3a0a9a55a38f642f5a6ecc6.tar.gz
cpython-8e92bf7699ac3617d3a0a9a55a38f642f5a6ecc6.tar.bz2
M Bindings.py
M EditorWindow.py M NEWS.txt M config-main.def M configDialog.py M configHandler.py M configHelpSourceEdit.py M configSectionNameDialog.py - Change default: IDLE now starts with Python Shell. - Removed the File Path from the Additional Help Sources scrolled list. - Add capability to access Additional Help Sources on the web if the Help File Path begins with //http or www. (Otherwise local path is validated, as before.) - Additional Help Sources were not being posted on the Help menu in the order entered. Implement sorting the list by [HelpFiles] 'option' number. - Add Browse button to New Help Source dialog. Arrange to start in Python/Doc if platform is Windows, otherwise start in current directory. - Put the Additional Help Sources directly on the Help menu instead of in an Extra Help cascade menu. Rearrange the Help menu so the Additional Help Sources come last. Update help.txt appropriately. - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
Diffstat (limited to 'Lib/idlelib/config-main.def')
-rw-r--r--Lib/idlelib/config-main.def33
1 files changed, 13 insertions, 20 deletions
diff --git a/Lib/idlelib/config-main.def b/Lib/idlelib/config-main.def
index cd52b21..9d520c1 100644
--- a/Lib/idlelib/config-main.def
+++ b/Lib/idlelib/config-main.def
@@ -25,9 +25,21 @@
# retained unless specifically deleted within the config dialog. Choosing
# one of the default themes or keysets just applies the relevant settings
# from the default file.
+#
+# Additional help sources are listed in the [HelpFiles] section and must be
+# viewable by a web browser (or the Windows Help viewer in the case of .chm
+# files). These sources will be listed on the Help menu. The pattern is
+# <sequence_number = menu item;/path/to/help/source>
+# You can't use a semi-colon in a menu item or path. The path will be platform
+# specific because of path separators, drive specs etc.
+#
+# It is best to use the Configuration GUI to set up additional help sources!
+# Example:
+#1 = My Extra Help Source;/usr/share/doc/foo/index.html
+#2 = Another Help Source;/path/to/another.pdf
[General]
-editor-on-startup= 1
+editor-on-startup= 0
print-command-posix=lpr %s
print-command-win=start /min notepad /p %s
@@ -51,22 +63,3 @@ default= 1
name= IDLE Classic Windows
[HelpFiles]
-#additional help sources, must be viewable by an html browser
-#will be listed on the Help/Other Help menu
-#option names are the sequence number of the option
-#values take the form: menu item;/path/to/help/source
-#obviously you can't use a semi-colon in a menu item or path and the path will
-#be platform specific because of path separators, drive specs etc.
-#eg.:
-#1= My Extra Help Source;/usr/share/doc/foo/index.html
-#2= Another Help Source;/path/to/another.html
-
-#[RecentFiles]
-#this section will only be present in the user config file idle-main.cfg
-#where it will record the most recently openned files in the form
-#IndexNum= /full/path/of/file , for display on the File/Recent Files menu
-#it is present here for reference only
-#eg.:
-#1=/most/recently/openned/file
-#2=/next/most/recently/openned/file
-#etc.