summaryrefslogtreecommitdiffstats
path: root/Mac/Contrib/PyIDE-src/Scripts/Hack
diff options
context:
space:
mode:
Diffstat (limited to 'Mac/Contrib/PyIDE-src/Scripts/Hack')
-rw-r--r--Mac/Contrib/PyIDE-src/Scripts/Hack/Remove .pyc filesŠ20
-rw-r--r--Mac/Contrib/PyIDE-src/Scripts/Hack/Toolbox AssistantŠ53
2 files changed, 73 insertions, 0 deletions
diff --git a/Mac/Contrib/PyIDE-src/Scripts/Hack/Remove .pyc filesŠ b/Mac/Contrib/PyIDE-src/Scripts/Hack/Remove .pyc filesŠ
new file mode 100644
index 0000000..80f52d5
--- /dev/null
+++ b/Mac/Contrib/PyIDE-src/Scripts/Hack/Remove .pyc filesŠ
@@ -0,0 +1,20 @@
+import sys
+import os
+import macfs
+
+def walk(top):
+ names = os.listdir(top)
+ for name in names:
+ path = os.path.join(top, name)
+ if os.path.isdir(path):
+ walk(path)
+ else:
+ if path[-4:] == '.pyc' and os.path.exists(path[:-1]):
+ print "deleting:", path
+ os.remove(path)
+ elif path[-4:] == '.pyc':
+ print "!!! ------ .pyc file without .py file:", path
+
+fss, ok = macfs.GetDirectory('Select the starting folder:')
+if ok:
+ walk(fss.as_pathname())
diff --git a/Mac/Contrib/PyIDE-src/Scripts/Hack/Toolbox AssistantŠ b/Mac/Contrib/PyIDE-src/Scripts/Hack/Toolbox AssistantŠ
new file mode 100644
index 0000000..e55c00a
--- /dev/null
+++ b/Mac/Contrib/PyIDE-src/Scripts/Hack/Toolbox AssistantŠ
@@ -0,0 +1,53 @@
+import aetools
+import Standard_Suite
+import Required_Suite
+import MacOS
+import W
+
+
+class Toolbox(aetools.TalkTo, Standard_Suite.Standard_Suite):
+
+ def LookupTopic(self, _object, _attributes={}, **_arguments):
+ _code = 'DanR'
+ _subcode = 'REF '
+
+ #aetools.keysubst(_arguments, self._argmap_OpenURL)
+ _arguments['----'] = _object
+
+
+ _reply, _arguments, _attributes = self.send(_code, _subcode,
+ _arguments, _attributes)
+ if _arguments.has_key('errn'):
+ raise MacOS.Error, aetools.decodeerror(_arguments)
+ # XXXX Optionally decode result
+ if _arguments.has_key('----'):
+ return _arguments['----']
+
+
+class ToolboxAssi:
+
+ def __init__(self):
+ self.talker = Toolbox('ALTV')
+ self.w = W.Window((200, 100), "Toolbox Assistant")
+ self.w.button = W.Button((-94, -32, 80, 16), "Lookup", self.lookup)
+ self.w.prompt = W.TextBox((10, 8, -10, 15), "Enter topic:")
+ self.w.edit = W.EditText((10, 24, -10, 20))
+ self.w.setdefaultbutton(self.w.button)
+ self.w.open()
+
+ def lookup(self):
+ lookup = self.w.edit.get()
+ try:
+ self.talker.LookupTopic(lookup)
+ except MacOS.Error, detail:
+ if type(detail) == type(()):
+ if detail[0] == -609:
+ self.talker.start()
+ try:
+ self.talker.LookupTopic(lookup)
+ return
+ except MacOS.Error:
+ pass
+ W.Message("Requested topic not found.")
+
+ToolboxAssi()