You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
(45) |
May
(185) |
Jun
|
Jul
(36) |
Aug
(205) |
Sep
(98) |
Oct
(107) |
Nov
(6) |
Dec
(3) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(1) |
Feb
(2) |
Mar
(19) |
Apr
(26) |
May
(18) |
Jun
|
Jul
(12) |
Aug
(16) |
Sep
(22) |
Oct
(7) |
Nov
(11) |
Dec
(74) |
| 2006 |
Jan
(14) |
Feb
(1) |
Mar
(3) |
Apr
(3) |
May
(14) |
Jun
(5) |
Jul
(20) |
Aug
(10) |
Sep
(1) |
Oct
|
Nov
(4) |
Dec
(1) |
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(14) |
Aug
|
Sep
|
Oct
(6) |
Nov
(1) |
Dec
|
|
From: Kevin A. <ka...@us...> - 2004-10-05 21:49:23
|
Update of /cvsroot/pythoncard/PythonCard/tools/findfiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19963 Modified Files: findfiles.py findfiles.rsrc.py Log Message: added Cancel button, moved wx.SafeYield call and set yieldIfNeeded flag Index: findfiles.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/findfiles/findfiles.py,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** findfiles.py 1 Oct 2004 00:05:00 -0000 1.82 --- findfiles.py 5 Oct 2004 21:49:06 -0000 1.83 *************** *** 76,80 **** def sizerLayout(self): sizer1 = wx.BoxSizer(wx.VERTICAL) ! sizer2 = wx.FlexGridSizer(5, 3, 3, 10) sizer3 = wx.BoxSizer(wx.HORIZONTAL) --- 76,80 ---- def sizerLayout(self): sizer1 = wx.BoxSizer(wx.VERTICAL) ! sizer2 = wx.FlexGridSizer(5, 4, 3, 10) sizer3 = wx.BoxSizer(wx.HORIZONTAL) *************** *** 94,109 **** --- 94,113 ---- sizer2.Add(comp.fldSearchPattern, flag=fldSizerAttrs) sizer2.Add(comp.btnSearch, flag=fldSizerAttrs) + sizer2.Add(comp.btnCancel, flag=fldSizerAttrs) sizer2.Add(comp.lblDirectories, flag=stcSizerAttrs) sizer2.Add(comp.fldDirectories, flag=fldSizerAttrs) sizer2.Add(comp.btnAddDirs, flag=fldSizerAttrs) + sizer2.Add((5, 5), 0) # spacer sizer2.Add(comp.lblFileTypes, flag=stcSizerAttrs) sizer2.Add(comp.fldWildcard, flag=fldSizerAttrs) sizer2.Add((5, 5), 0) # spacer + sizer2.Add((5, 5), 0) # spacer sizer2.Add((5, 5), 0) # spacer sizer2.Add((5, 5), 0) # spacer sizer2.Add((5, 5), 0) # spacer + sizer2.Add((5, 5), 0) # spacer sizer2.Add((5, 5), 0) # spacer *************** *** 170,174 **** def on_close(self, event): # kill search loop if needed ! self.stopSearching = 1 path = os.path.join(self.configPath, LASTGREPFILE) self.saveGrepFile(path) --- 174,178 ---- def on_close(self, event): # kill search loop if needed ! self.stopSearching = True path = os.path.join(self.configPath, LASTGREPFILE) self.saveGrepFile(path) *************** *** 232,235 **** --- 236,242 ---- def doSearch(self): + self.components.btnSearch.enabled = False + self.components.btnCancel.enabled = True + log.info("Grep for %s in %s" % (self.greppattern, self.filpattern)) log.info('#Search '+self.dirpattern) *************** *** 253,257 **** self.statusBar.text = "Searching..." found = 0 ! self.stopSearching = 0 for dir in self.dirpattern.split(';'): for filename in util.dirwalk(dir, patterns, self.recurse): --- 260,264 ---- self.statusBar.text = "Searching..." found = 0 ! self.stopSearching = False for dir in self.dirpattern.split(';'): for filename in util.dirwalk(dir, patterns, self.recurse): *************** *** 261,267 **** if self.stopSearching: break ! wx.SafeYield(self) if self.statusBar.text == "Searching...": self.statusBar.text = "Files found: 0" def SearchFile(self, filename): --- 268,275 ---- if self.stopSearching: break ! wx.SafeYield(self, True) if self.statusBar.text == "Searching...": self.statusBar.text = "Files found: 0" + self.components.btnSearch.enabled = True def SearchFile(self, filename): *************** *** 312,315 **** --- 320,328 ---- self.doSearch() + def on_btnCancel_mouseClick(self, event): + self.stopSearching = True + self.components.btnCancel.enabled = False + self.components.btnSearch.enabled = True + def on_btnAddDirs_mouseClick(self, event): wFldDirectories = self.components.fldDirectories Index: findfiles.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/findfiles/findfiles.rsrc.py,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** findfiles.rsrc.py 24 Aug 2004 14:19:32 -0000 1.24 --- findfiles.rsrc.py 5 Oct 2004 21:49:07 -0000 1.25 *************** *** 88,91 **** --- 88,97 ---- }, + {'type':'Button', + 'name':'btnCancel', + 'position':(655, 2), + 'label':'Cancel', + }, + {'type':'TextField', 'name':'fldDirectories', |
|
From: Kevin A. <ka...@us...> - 2004-10-05 17:38:25
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26445 Modified Files: util.py Log Message: updated normalizeEOL Index: util.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/util.py,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** util.py 26 Sep 2004 16:10:52 -0000 1.35 --- util.py 5 Oct 2004 17:37:40 -0000 1.36 *************** *** 95,99 **** def normalizeEOL(text): """Return text with line endings replaced by \n.""" ! return text.replace('\r\n', '\n').replace('\r', '\n') # KEA doc handling adapted from python_docs --- 95,100 ---- def normalizeEOL(text): """Return text with line endings replaced by \n.""" ! #return text.replace('\r\n', '\n').replace('\r', '\n') ! return '\n'.join(text.splitlines()) # KEA doc handling adapted from python_docs |
|
From: Alex T. <ale...@us...> - 2004-10-05 17:33:24
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25112/tools/oneEditor Modified Files: tabcodeEditor.py Log Message: Remove the old "save current doc" logic from File/History (open) Index: tabcodeEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/tabcodeEditor.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tabcodeEditor.py 5 Oct 2004 12:08:22 -0000 1.4 --- tabcodeEditor.py 5 Oct 2004 17:32:54 -0000 1.5 *************** *** 356,377 **** fileNum = event.GetId() - wx.ID_FILE1 path = self.fileHistory.GetHistoryFile(fileNum) - if self.currentDocument.GetModify(): - save = self.saveChanges(self.currentPage.documentPath) - if save == "Cancel": - # don't do anything, just go back to editing - return - elif save == "No": - # any changes will be lost - pass - else: - if self.currentPage.documentPath is None: - # if the user cancels out of the Save As then go back to editing - if not self.on_menuFileSaveAs_select(None): - return - else: - self.saveFile(self.currentPage.documentPath) self.openFile(path) - # back to PythonCard methods --- 356,361 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-05 16:02:18
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor/templates In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3935/templates Added Files: .cvsignore Log Message: added .cvsignore files to ignore .pyc etc. --- NEW FILE: .cvsignore --- .cvsignore *.pyc *.log .DS_Store |
|
From: Kevin A. <ka...@us...> - 2004-10-05 16:02:18
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3935/modules Added Files: .cvsignore Log Message: added .cvsignore files to ignore .pyc etc. --- NEW FILE: .cvsignore --- .cvsignore *.pyc *.pyo *.log .DS_Store |
|
From: Kevin A. <ka...@us...> - 2004-10-05 16:02:18
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3935 Added Files: .cvsignore Log Message: added .cvsignore files to ignore .pyc etc. --- NEW FILE: .cvsignore --- .cvsignore *.pyc *.pyo *.pywc *.log user.config.txt .DS_Store build dist |
|
From: Kevin A. <ka...@us...> - 2004-10-05 16:02:17
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor/scriptlets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3935/scriptlets Added Files: .cvsignore Log Message: added .cvsignore files to ignore .pyc etc. --- NEW FILE: .cvsignore --- .cvsignore *.pyc *.pyo *.log .DS_Store |
|
From: Alex T. <ale...@us...> - 2004-10-05 12:08:34
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10497/oneEditor Modified Files: codePage.py tabcodeEditor.py Log Message: Put codePage.saveAsFile back in, completed "close tab". Added switch "NEVER_BLANK" to determine how to handle closing last tab Fixed logic in openfile for when a new tab is needed. Index: tabcodeEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/tabcodeEditor.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** tabcodeEditor.py 5 Oct 2004 00:42:27 -0000 1.3 --- tabcodeEditor.py 5 Oct 2004 12:08:22 -0000 1.4 *************** *** 27,30 **** --- 27,32 ---- import webbrowser + NEVER_BLANK = True # if True, closing last tab causes newFile + # KEA 2004-07-22 # force imports for components used in .rsrc.py file *************** *** 476,480 **** else: if page.documentPath is None: ! if not page.on_menuFileSaveAs_select(None): return False else: page.saveFile(page.documentPath) --- 478,482 ---- else: if page.documentPath is None: ! if not page.saveAsFile(): return False else: page.saveFile(page.documentPath) *************** *** 503,507 **** if self.currentPage.documentPath is None: # this a "new" document and needs to go through Save As... ! self.currentPage.on_menuFileSaveAs_select(None) else: self.currentPage.saveFile(self.currentPage.documentPath) --- 505,509 ---- if self.currentPage.documentPath is None: # this a "new" document and needs to go through Save As... ! self.currentPage.saveAsFile() else: self.currentPage.saveFile(self.currentPage.documentPath) *************** *** 509,521 **** def on_menuFileSaveAs_select(self, event): if self.currentPage: ! return self.currentPage.on_menuFileSaveAs_select(event) def on_menuFileCloseTab_select(self, event): # what do we do if there is only one tab? - # looks like CodePage on_menuFileSaveAs_select - # so this handler and the ones above will throw an exception - # if that line is called - # just do a Close Tab after opening the app - # and typing a character if self.currentPage: page = self.currentPage --- 511,518 ---- def on_menuFileSaveAs_select(self, event): if self.currentPage: ! return self.currentPage.saveAsFile() def on_menuFileCloseTab_select(self, event): # what do we do if there is only one tab? if self.currentPage: page = self.currentPage *************** *** 525,542 **** save = self.saveChanges(page.documentPath) if save == "Cancel": ! print "Cancelled Save" elif save == "No": ! print "Didn't Save" ! # close the document ! # and remove the tab here ! # unless there is only one tab left ! # in which case I don't know what the UI ! # should do?! ! # so probably check the number of tabs here ! # if len() > 1 then just remove the tab ! # stick this functionality in another method? else: if page.documentPath is None: ! if not page.on_menuFileSaveAs_select(None): print "no path, Didn't Save" # this logic was borrowed from doExit # user chose Yes to save on previous dialog but then --- 522,533 ---- save = self.saveChanges(page.documentPath) if save == "Cancel": ! #rint "Cancelled Save" ! return elif save == "No": ! #rint "Didn't Save" ! pass else: if page.documentPath is None: ! if not page.saveAsFile(): print "no path, Didn't Save" # this logic was borrowed from doExit # user chose Yes to save on previous dialog but then *************** *** 545,552 **** else: page.saveFile(page.documentPath) ! print "Saved" ! # close the tab ! # if there is only one tab, what ! # should we do? def newFile(self): --- 536,552 ---- else: page.saveFile(page.documentPath) ! #rint "Saved" ! self.closeTab() ! ! def closeTab(self): ! del self.pages[self.currentPageNumber] ! self.components.notebook.DeletePage(self.currentPageNumber) ! if len(self.pages) == 0: ! if NEVER_BLANK: ! self.newFile() ! else: ! self.currentPageNumber = -1 ! self.currentPage = None ! self.currentDocument = None def newFile(self): *************** *** 561,565 **** def openFile(self, path): ! if self.currentPage and self.currentPage.documentPath: win = model.childWindow(self.components.notebook, codePage.CodePage) self.components.notebook.AddPage(win, "opening ...", True) --- 561,572 ---- def openFile(self, path): ! # need a new tab page in notebook if ! # no current page - i.e. blank notebook ! # current page is a open on a file ! # untitled document has been modified ! if (not self.currentPage or ! self.currentPage.documentPath or ! self.currentDocument.GetModify() ): ! win = model.childWindow(self.components.notebook, codePage.CodePage) self.components.notebook.AddPage(win, "opening ...", True) Index: codePage.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/codePage.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** codePage.py 3 Oct 2004 23:58:01 -0000 1.1 --- codePage.py 5 Oct 2004 12:08:22 -0000 1.2 *************** *** 60,63 **** --- 60,82 ---- except: self.components.document.setEditorStyle('python') + + def saveAsFile(self): + resourceStrings = self.topLevelParent.resource.strings + #wildcard = "Python scripts (*.py;*.pyw)|*.py;*.pyw|Text files (*.txt)|*.txt|All files (*.*)|*.*" + wildcard = resourceStrings.saveAsWildcard + if self.documentPath is None: + dir = '' + filename = '*.py' + else: + dir = os.path.dirname(self.documentPath) + filename = os.path.basename(self.documentPath) + result = dialog.saveFileDialog(None, resourceStrings.saveAs, dir, filename, wildcard) + if result.accepted: + path = result.paths[0] + self.saveFile(path) + self.topLevelParent.fileHistory.AddFileToHistory(path) + return True + else: + return False |
|
From: Kevin A. <ka...@us...> - 2004-10-05 00:43:50
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22316 Modified Files: event.py Log Message: called callAfter and futureCall aliases Index: event.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/event.py,v retrieving revision 1.69 retrieving revision 1.70 diff -C2 -d -r1.69 -r1.70 *** event.py 18 Sep 2004 18:20:28 -0000 1.69 --- event.py 5 Oct 2004 00:43:40 -0000 1.70 *************** *** 9,12 **** --- 9,16 ---- import wx + + callAfter = wx.CallAfter + futureCall = wx.FutureCall + class EventHandler: """ |
|
From: Kevin A. <ka...@us...> - 2004-10-05 00:42:37
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21929 Modified Files: tabcodeEditor.py tabcodeEditor.rsrc.py Log Message: added Close Tab menu item under File menu plus experimental handler for it added wx.FutureCall workaround for initial size event problem Index: tabcodeEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/tabcodeEditor.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** tabcodeEditor.py 4 Oct 2004 00:04:00 -0000 1.2 --- tabcodeEditor.py 5 Oct 2004 00:42:27 -0000 1.3 *************** *** 164,167 **** --- 164,175 ---- self.visible = True self.loadShell() + + # hack to get around size event being hooked up + # after on_initialize is called? + # that is the only explanation I can think of for needing + # to do this + w, h = self.size + wx.FutureCall(1, self.SetSize, (w, h - 1)) + wx.FutureCall(1, self.SetSize, (w, h)) *************** *** 503,506 **** --- 511,553 ---- return self.currentPage.on_menuFileSaveAs_select(event) + def on_menuFileCloseTab_select(self, event): + # what do we do if there is only one tab? + # looks like CodePage on_menuFileSaveAs_select + # so this handler and the ones above will throw an exception + # if that line is called + # just do a Close Tab after opening the app + # and typing a character + if self.currentPage: + page = self.currentPage + doc = page.components.document + # logic borrowed from doExit + if doc.GetModify(): + save = self.saveChanges(page.documentPath) + if save == "Cancel": + print "Cancelled Save" + elif save == "No": + print "Didn't Save" + # close the document + # and remove the tab here + # unless there is only one tab left + # in which case I don't know what the UI + # should do?! + # so probably check the number of tabs here + # if len() > 1 then just remove the tab + # stick this functionality in another method? + else: + if page.documentPath is None: + if not page.on_menuFileSaveAs_select(None): print "no path, Didn't Save" + # this logic was borrowed from doExit + # user chose Yes to save on previous dialog but then + # cancelled the Save dialog + # so don't close the tab + else: + page.saveFile(page.documentPath) + print "Saved" + # close the tab + # if there is only one tab, what + # should we do? + def newFile(self): win = model.childWindow(self.components.notebook, codePage.CodePage) Index: tabcodeEditor.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/tabcodeEditor.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** tabcodeEditor.rsrc.py 3 Oct 2004 23:58:01 -0000 1.1 --- tabcodeEditor.rsrc.py 5 Oct 2004 00:42:28 -0000 1.2 *************** *** 34,37 **** --- 34,41 ---- }, {'type':'MenuItem', + 'name':'menuFileCloseTab', + 'label':'Close &Tab\tCtrl+W', + }, + {'type':'MenuItem', 'name':'fileSep1', 'label':'-', |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:19:11
|
Update of /cvsroot/pythoncard/PythonCard/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8672/docs Modified Files: changelog.txt Log Message: resourceOutput position saving change Index: changelog.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/changelog.txt,v retrieving revision 1.313 retrieving revision 1.314 diff -C2 -d -r1.313 -r1.314 *** changelog.txt 4 Oct 2004 00:06:27 -0000 1.313 --- changelog.txt 4 Oct 2004 19:18:23 -0000 1.314 *************** *** 8,11 **** --- 8,13 ---- Release 0.8.1 2004-10-?? + resourceEditor (resourceOutput module) no longer saves background + position in resource files added work-in-progress version of tabbed code editor (tools/oneEditor) renamed ver to VERSION_STRING in __version__.py and added VERSION tuple |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:17:46
|
Update of /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8111/resourceEditor/modules Modified Files: resourceOutput.py Log Message: commented out saving background position in resource files Index: resourceOutput.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules/resourceOutput.py,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** resourceOutput.py 30 Sep 2004 23:04:53 -0000 1.30 --- resourceOutput.py 4 Oct 2004 19:16:46 -0000 1.31 *************** *** 162,166 **** desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) --- 162,170 ---- desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! # KEA 2004-10-04 ! # need a more sophisticated way of specifying an optional position ! # but just saving the position the user is editing the window at ! # is bad, so turn it off for now ! ## desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:17:44
|
Update of /cvsroot/pythoncard/PythonCard/tools/oneEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8111/oneEditor/modules Modified Files: resourceOutput.py Log Message: commented out saving background position in resource files Index: resourceOutput.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/oneEditor/modules/resourceOutput.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** resourceOutput.py 3 Oct 2004 23:58:01 -0000 1.1 --- resourceOutput.py 4 Oct 2004 19:16:44 -0000 1.2 *************** *** 162,166 **** desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) --- 162,170 ---- desc += " 'name':'%s',\n" % bg.name desc += """ 'title':%s,\n""" % repr(bg.title) ! # KEA 2004-10-04 ! # need a more sophisticated way of specifying an optional position ! # but just saving the position the user is editing the window at ! # is bad, so turn it off for now ! ## desc += " 'position':%s,\n" % str(background.GetPositionTuple()) desc += " 'size':%s,\n" % str(background.GetSizeTuple()) |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:11
|
Update of /cvsroot/pythoncard/PythonCard/samples/lsystem In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/lsystem Modified Files: lsystem.rsrc.py lsystemInteractive.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: lsystem.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/lsystem/lsystem.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lsystem.rsrc.py 11 May 2004 12:06:20 -0000 1.3 --- lsystem.rsrc.py 4 Oct 2004 19:03:09 -0000 1.4 *************** *** 5,9 **** 'name':'bgLSystem', 'title':'L-System PythonCard Application', - 'position':(59, 74), 'size':(579, 550), 'statusBar':1, --- 5,8 ---- Index: lsystemInteractive.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/lsystem/lsystemInteractive.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lsystemInteractive.rsrc.py 18 May 2004 17:20:31 -0000 1.1 --- lsystemInteractive.rsrc.py 4 Oct 2004 19:03:09 -0000 1.2 *************** *** 5,9 **** 'name':'bgLSystem', 'title':'L-System PythonCard Application', - 'position':(59, 74), 'size':(579, 550), 'statusBar':1, --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:09
|
Update of /cvsroot/pythoncard/PythonCard/samples/jabberChat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/jabberChat Modified Files: jabberChat.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: jabberChat.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/jabberChat/jabberChat.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** jabberChat.rsrc.py 10 May 2004 05:02:16 -0000 1.6 --- jabberChat.rsrc.py 4 Oct 2004 19:03:08 -0000 1.7 *************** *** 5,9 **** 'name':'bgMin', 'title':'jabberChat PythonCard Application', - 'position':(5, 5), 'size':(200, 150), 'statusBar':1, --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:08
|
Update of /cvsroot/pythoncard/PythonCard/samples/fpop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/fpop Modified Files: fpop.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: fpop.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/fpop.rsrc.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** fpop.rsrc.py 10 May 2004 05:02:15 -0000 1.7 --- fpop.rsrc.py 4 Oct 2004 19:03:07 -0000 1.8 *************** *** 5,9 **** 'name':'bgMin', 'title':'fPOP PythonCard Application', - 'position':(10, 10), 'size':(600, 400), 'statusBar':1, --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:08
|
Update of /cvsroot/pythoncard/PythonCard/samples/gravity In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/gravity Modified Files: imagegravity.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: imagegravity.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/gravity/imagegravity.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** imagegravity.rsrc.py 26 Sep 2004 16:22:31 -0000 1.1 --- imagegravity.rsrc.py 4 Oct 2004 19:03:08 -0000 1.2 *************** *** 68,71 **** --- 68,72 ---- 'name':'bufOff', 'position':(0, 30), + 'visible':False, 'size':(300, 230) }, ] |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:08
|
Update of /cvsroot/pythoncard/PythonCard/samples/financial In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/financial Modified Files: mortgage.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: mortgage.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/financial/mortgage.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** mortgage.rsrc.py 20 Jul 2004 18:22:35 -0000 1.1 --- mortgage.rsrc.py 4 Oct 2004 19:03:07 -0000 1.2 *************** *** 5,9 **** 'name':'bgTemplate', 'title':'Mortgage Calculator', - 'position':(5, 5), 'size':(400, 300), 'style':['resizeable'], --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:07
|
Update of /cvsroot/pythoncard/PythonCard/samples/addressesZODB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/addressesZODB Modified Files: addresses.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: addresses.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/addressesZODB/addresses.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** addresses.rsrc.py 10 May 2004 05:02:01 -0000 1.6 --- addresses.rsrc.py 4 Oct 2004 19:03:06 -0000 1.7 *************** *** 5,9 **** 'name':'bgBody', 'title':'Addresses', - 'position':(54, 30), 'size':(416, 341), --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:04:06
|
Update of /cvsroot/pythoncard/PythonCard/samples/custdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/custdb Modified Files: custdb.de.rsrc.py custdb.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: custdb.de.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/custdb/custdb.de.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** custdb.de.rsrc.py 10 May 2004 05:02:07 -0000 1.4 --- custdb.de.rsrc.py 4 Oct 2004 19:03:07 -0000 1.5 *************** *** 5,9 **** 'name':'bgMin', 'title':'Kunden Datenbank', - 'position':(441, 180), 'size':(502, 467), 'components': [ --- 5,8 ---- Index: custdb.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/custdb/custdb.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** custdb.rsrc.py 10 May 2004 05:02:07 -0000 1.4 --- custdb.rsrc.py 4 Oct 2004 19:03:07 -0000 1.5 *************** *** 5,9 **** 'name':'bgMin', 'title':'Customer database', - 'position':(441, 180), 'size':(502, 467), --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:03:49
|
Update of /cvsroot/pythoncard/PythonCard/samples/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/widgets Modified Files: widgets.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: widgets.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/widgets/widgets.rsrc.py,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** widgets.rsrc.py 17 Aug 2004 17:37:03 -0000 1.24 --- widgets.rsrc.py 4 Oct 2004 19:03:11 -0000 1.25 *************** *** 5,9 **** 'name':'bgWidgets', 'title':'Widgets Test', - 'position':(5, 5), 'size':(800, 600), --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:03:48
|
Update of /cvsroot/pythoncard/PythonCard/samples/montyhall In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/montyhall Modified Files: montyhall.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: montyhall.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/montyhall/montyhall.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** montyhall.rsrc.py 10 May 2004 05:02:20 -0000 1.3 --- montyhall.rsrc.py 4 Oct 2004 19:03:09 -0000 1.4 *************** *** 5,9 **** 'name':'bgTemplate', 'title':'Monty Hall Game', - 'position':(128, 93), 'size':(396, 465), 'style':['resizeable'], --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:03:48
|
Update of /cvsroot/pythoncard/PythonCard/samples/textRouter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/textRouter Modified Files: textRouter.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: textRouter.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/textRouter/textRouter.rsrc.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** textRouter.rsrc.py 10 May 2004 05:02:44 -0000 1.45 --- textRouter.rsrc.py 4 Oct 2004 19:03:11 -0000 1.46 *************** *** 6,10 **** 'name':'bgTextRouter', 'title':'TextRouter 0.60', - 'position':(60, 100), 'size':(650, 426), 'statusBar':1, --- 6,9 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:03:47
|
Update of /cvsroot/pythoncard/PythonCard/samples/testevents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/testevents Modified Files: testevents.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: testevents.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/testevents/testevents.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** testevents.rsrc.py 27 Sep 2004 16:55:49 -0000 1.6 --- testevents.rsrc.py 4 Oct 2004 19:03:10 -0000 1.7 *************** *** 5,9 **** 'name':'bgMin', 'title':'Test Events PythonCard Application', - 'position':(488, 44), 'size':(300, 250), --- 5,8 ---- |
|
From: Kevin A. <ka...@us...> - 2004-10-04 19:03:47
|
Update of /cvsroot/pythoncard/PythonCard/samples/moderator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4570/moderator Modified Files: moderator.rsrc.py Log Message: removed 'position' attribute in Background of resource Index: moderator.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/moderator/moderator.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** moderator.rsrc.py 30 Jul 2004 14:17:31 -0000 1.4 --- moderator.rsrc.py 4 Oct 2004 19:03:09 -0000 1.5 *************** *** 5,9 **** 'name':'bgMin', 'title':'Python Moderation Tool', - 'position':(166, 75), 'size':(443, 600), --- 5,8 ---- |