Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SlideruleActivity.py
diff options
context:
space:
mode:
authorWalter Bender <walter@sugarlabs.org>2010-09-22 00:07:54 (GMT)
committer Walter Bender <walter@sugarlabs.org>2010-09-22 00:07:54 (GMT)
commitc9dc89e690250263f7751d64afa2d90461db17ed (patch)
tree3367f334a1597374d4bd9f4e5a2abc7d65730734 /SlideruleActivity.py
parent4cdd4785aeacf6693fcec66d7bcc6e371b3a1302 (diff)
updated explanatory comments
Diffstat (limited to 'SlideruleActivity.py')
-rw-r--r--SlideruleActivity.py15
1 files changed, 6 insertions, 9 deletions
diff --git a/SlideruleActivity.py b/SlideruleActivity.py
index 1969f76..d451eb3 100644
--- a/SlideruleActivity.py
+++ b/SlideruleActivity.py
@@ -16,19 +16,16 @@ Modifying slide rule:
The customization feature is intended to handle most cases where you require
a specialized slide or stator. But if you would like to add a new slide to
-the toolbar, you need to make changes in four places:
+the toolbar, you need to make changes in three places:
-1. In constants.py, you need to add new entries to the _SLIDES, and
-_STATORS arrays and the _SLIDE_DICTIONARY and _STATOR_DICTIONARY
-dictionaries so that the slides appear in the toolbars.
+1. In constants.py, you need to add new entries to SLIDE_TABLE,
+STATOR_TABLE, SLIDE_DICTIONARY and STATOR_DICTIONARY so that the
+slides appear in the toolbars.
-2. In SlideruleActivity.py (this file), you need to import your new
-constants.
-
-3. In genslides.py, you need to add new class objects to generate the
+2. In genslides.py, you need to add new class objects to generate the
graphics associated with your slide and stator.
-4. In window.py, you need to add methods to calculate values for your
+3. In window.py, you need to add methods to calculate values for your
slide and stator.
"""