/usr/share/drpython/drpython/drScriptDialog.py is in drpython 1:3.11.4-1.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | # Programmer: Daniel Pozmanter
# E-mail: drpython@bluebottle.com
# Note: You must reply to the verification e-mail to get through.
#
# Copyright 2003-2010 Daniel Pozmanter
#
# Distributed under the terms of the GPL (GNU Public License)
#
# DrPython is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#drScript Dialog
import os.path
import wx
import drScrolledMessageDialog
from drProperty import *
from drPrefsFile import ExtractPreferenceFromText
import drShortcutsFile
from drTreeDialog import *
class drTreeItemData(wx.TreeItemData):
def __init__(self, Line, Shortcut):
wx.TreeItemData.__init__(self)
self.Line = Line
self.Shortcut = Shortcut
def BuildTreeFromString(dialog, branch, thestring):
line = " "
roots = [branch]
rootindex = 0
#Shortcuts
Shortcuts = []
ShortcutIndex = 0
map(Shortcuts.append, dialog.parent.DrScriptShortcuts[dialog.parent.drscriptmenu.ExampleScriptCount:])
lastCount = 0
i = 0
lastI = 0
while line:
i = thestring.find('\n')
if i > -1:
line = thestring[0:(i + 1)]
lastI = i + 1
thestring = thestring[lastI:]
c = line.count('\t')
line = line[c:].rstrip()
while lastCount > c:
roots.pop()
rootindex = rootindex - 1
lastCount = lastCount - 1
if line.find("title") > -1:
line_title = ExtractPreferenceFromText(line, "title")
currentItem = dialog.datatree.AppendItem(roots[rootindex], line_title)
dialog.datatree.SetPyData(currentItem, drTreeItemData(line, Shortcuts[ShortcutIndex]))
ShortcutIndex = ShortcutIndex + 1
dialog.datatree.SetItemImage(currentItem, 2, wx.TreeItemIcon_Normal)
dialog.datatree.SetItemImage(currentItem, 2, wx.TreeItemIcon_Selected)
elif line[0] == '>':
currentItem = dialog.datatree.AppendItem(roots[rootindex], line)
dialog.datatree.SetPyData(currentItem, drTreeItemData(line, None))
dialog.datatree.SetItemImage(currentItem, 0, wx.TreeItemIcon_Normal)
dialog.datatree.SetItemImage(currentItem, 1, wx.TreeItemIcon_Expanded)
roots.append(currentItem)
rootindex = rootindex + 1
lastCount = c + 1
else:
line = ""
class drScriptDialog(drTreeDialog):
def __init__(self, parent):
drTreeDialog.__init__(self, parent, "Edit DrScript Menu", "DrScript Menu", parent.preferencesdirectory + "/drscript.dat", parent.prefs.drscriptstyle, \
"drscriptdialog.sizeandposition.dat", os.path.join(parent.bitmapdirectory, "16/drscript.png"), BuildTreeFromString, self.WriteBranch)
self.SetupSizer()
if parent.PLATFORM_IS_GTK: #does not get initially the focus (bug tracker #1903778, "Open Imported Module: focus problem", 29.02.2008: from Jon White, thanks.
self.SetFocus()
def GetShortcutArrays(self, tree, branch):
Shortcuts = []
t = tree.GetItemText(branch)
if not (t[0] == '>'):
data = tree.GetPyData(branch)
if data.Shortcut is not None:
Shortcuts.append(data.Shortcut)
else:
ccount = tree.GetChildrenCount(branch, 0)
if ccount > 0:
if (wx.MAJOR_VERSION >= 2) and (wx.MINOR_VERSION >= 5):
b, cookie = tree.GetFirstChild(branch)
else:
b, cookie = tree.GetFirstChild(branch, 1)
s = self.GetShortcutArrays(tree, b)
Shortcuts.extend(s)
x = 1
while x < ccount:
b, cookie = tree.GetNextChild(branch, cookie)
s = self.GetShortcutArrays(tree, b)
Shortcuts.extend(s)
x = x + 1
return Shortcuts
def WriteBranch(self, tree, branch, filehandle, tablevel):
t = tree.GetItemText(branch)
if tablevel > -1:
data = tree.GetPyData(branch)
if data is not None:
x = 0
y = ""
while x < tablevel:
y = y + '\t'
x = x + 1
title = ExtractPreferenceFromText(data.Line, "title")
if title:
self.parent.drscriptmenu.titles.append(title)
if title:
if not (title == t):
data.Line = data.Line[:data.Line.find("<title>")] + "<title>" + t + "</title>"
y = y + data.Line + '\n'
filehandle.write(y)
if t[0] == '>':
ccount = tree.GetChildrenCount(branch, 0)
if ccount > 0:
if (wx.MAJOR_VERSION >= 2) and (wx.MINOR_VERSION >= 5):
b, cookie = tree.GetFirstChild(branch)
else:
b, cookie = tree.GetFirstChild(branch, 1)
self.WriteBranch(tree, b, filehandle, (tablevel + 1))
x = 1
while x < ccount:
b, cookie = tree.GetNextChild(branch, cookie)
self.WriteBranch(tree, b, filehandle, (tablevel + 1))
x = x + 1
def OnbtnAddFolder(self, event):
sel = self.datatree.GetSelection()
if not sel.IsOk():
if self.datatree.GetCount() < 2:
sel = self.datatree.GetRootItem()
else:
return
if self.datatree.GetItemText(sel)[0] == '>':
d = wx.TextEntryDialog(self, "Enter Tree Folder:", "Add Folder", "")
if d.ShowModal() == wx.ID_OK:
v = d.GetValue()
sel = self.datatree.GetSelection()
if sel.IsOk():
item = self.datatree.AppendItem(self.datatree.GetSelection(), ">" + v)
self.datatree.SetPyData(item, drTreeItemData(">" + v, None))
self.datatree.SetItemImage(item, 0, wx.TreeItemIcon_Normal)
self.datatree.SetItemImage(item, 1, wx.TreeItemIcon_Expanded)
self.datatree.SetModified()
d.Destroy()
else:
drScrolledMessageDialog.ShowMessage(self, "You can only add a folder to another folder.", "Bad Folder Location")
def OnbtnSave(self, event):
try:
root = self.datatree.GetRootItem()
f = open(self.targetfile, 'w')
self.parent.drscriptmenu.titles = self.parent.drscriptmenu.titles[:self.parent.drscriptmenu.ExampleScriptCount]
self.WriteBranch(self.datatree, root, f, -1)
f.close()
except IOError:
drScrolledMessageDialog.ShowMessage(self, "There were some problems writing to:\n" + self.targetfile, "Write Error")
return
self.datatree.SetModified(False)
if self.parent.prefs.enablefeedback:
drScrolledMessageDialog.ShowMessage(self, ("Succesfully wrote to:\n" + self.targetfile), "Success")
root = self.datatree.GetRootItem()
#Sync Shortcuts:
s = self.GetShortcutArrays(self.datatree, root)
self.parent.DrScriptShortcuts = self.parent.DrScriptShortcuts[:self.parent.drscriptmenu.ExampleScriptCount]
map(lambda x: self.parent.DrScriptShortcuts.append(x), s)
#Sync the Shortcuts File:
shortcutsfile = os.path.join(self.parent.shortcutsdirectory, "drscript.shortcuts.dat")
try:
drShortcutsFile.WriteShortcuts(shortcutsfile, self.parent.DrScriptShortcuts, self.parent.drscriptmenu.titles, "", False)
except IOError:
drScrolledMessageDialog.ShowMessage(self, ("There were some problems writing to:\n" + shortcutsfile + "\nEither the file is having metaphysical issues, or you do not have permission to write.\nFor metaphysical issues, consult the documentation.\nFor permission issues, change the permissions on the directory to allow yourself write access.\nDrPython will now politely ignore your request to save.\nTry again when you have fixed the problem."), "Write Error")
return
|