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-05-11 01:12:59
|
Update of /cvsroot/pythoncard/PythonCard/samples/turtle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23170 Modified Files: readme.txt turtle.py Removed Files: tWrapper.py wxTurtleCurves.py Log Message: changed turtle script to Python modules changed how modules are run by using __import__ refactored the turtle wrappers removed redundant examples --- tWrapper.py DELETED --- --- wxTurtleCurves.py DELETED --- Index: turtle.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/turtle/turtle.py,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** turtle.py 5 May 2004 16:53:48 -0000 1.22 --- turtle.py 11 May 2004 01:12:50 -0000 1.23 *************** *** 15,63 **** import os import time - from math import * # Also for export - import wx class TurtleBg(model.Background): - - """ - as per other samples, __init__ will go away once we are doing - openStack, openBackground messages - the font initialization, dc, and other wxPython code exposed below - will be hidden as those features are added to the PythonCard - framework - """ def on_initialize(self, event): ! self.fNameTurtleScript = "scripts/4bugs.txt" ! sizer1 = wx.BoxSizer(wx.VERTICAL) ! comp = self.components ! #flags = wx.LEFT | wx.RIGHT | wx.BOTTOM | wx.ALIGN_BOTTOM ! #sizer1.Add(comp.btnColor._delegate, 0, flags, 5) ! sizer1.Add(comp.bufOff, 1, wx.EXPAND) ! ! sizer1.Fit(self) ! sizer1.SetSizeHints(self) ! self.panel.SetSizer(sizer1) ! self.panel.SetAutoLayout(1) ! self.panel.Layout() self.components.bufOff.backgroundColor = 'white' if wx.Platform == '__WXMAC__': ! self.menuBar.setChecked('menuCommandsAutoRefresh', 0) ! self.components.bufOff.autoRefresh = 0 def doDraw(self): starttime = time.time() ! ###dc = wxTurtle.TurtleDC(self.panel) ! ###dc.BeginDrawing() ! input = open(self.fNameTurtleScript, 'r') ! codeString = input.read() ! input.close() ! namespace = {} # Just an empty dictionary ! exec(codeString, None, namespace) ! func = namespace['drawMain'] # or some other predefined name ! func(self.components.bufOff, self) if not self.components.bufOff.autoRefresh: self.components.bufOff.refresh() --- 15,43 ---- import os import time class TurtleBg(model.Background): def on_initialize(self, event): ! self.fNameTurtleScript = os.path.join('scripts', 'threeTurtles.py') ! self.singleItemExpandingSizerLayout() self.components.bufOff.backgroundColor = 'white' if wx.Platform == '__WXMAC__': ! self.menuBar.setChecked('menuCommandsAutoRefresh', False) ! self.components.bufOff.autoRefresh = False def doDraw(self): starttime = time.time() ! cwd = os.getcwd() ! path, filename = os.path.split(self.fNameTurtleScript) ! os.chdir(path) ! module = __import__(os.path.splitext(filename)[0], globals(), globals()) ! # make sure that if this module was previously imported ! # that we get the new version ! reload(module) ! module.draw(self.components.bufOff) ! os.chdir(cwd) if not self.components.bufOff.autoRefresh: self.components.bufOff.refresh() *************** *** 65,71 **** # back in sync with the menu self.components.bufOff.autoRefresh = self.menuBar.getChecked('menuCommandsAutoRefresh') ! ! ###dc.EndDrawing() ! stoptime = time.time() elapsed = stoptime - starttime --- 45,49 ---- # back in sync with the menu self.components.bufOff.autoRefresh = self.menuBar.getChecked('menuCommandsAutoRefresh') ! stoptime = time.time() elapsed = stoptime - starttime *************** *** 74,78 **** def on_menuFileOpen_select(self, event): currentDir = os.getcwd() ! wildcard = "Turtle files (*.txt)|*.txt" path = 'scripts' filename = '' --- 52,56 ---- def on_menuFileOpen_select(self, event): currentDir = os.getcwd() ! wildcard = "Turtle files (*.py)|*.py" path = 'scripts' filename = '' *************** *** 91,95 **** # of commands I want to support in the menu and whether # they should be global or specific to individual turtles - ###self.panel._getDelegate().Refresh() self.components.bufOff.clear() if not self.components.bufOff.autoRefresh: --- 69,72 ---- Index: readme.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/turtle/readme.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** readme.txt 17 Jul 2002 21:28:57 -0000 1.3 --- readme.txt 11 May 2004 01:12:50 -0000 1.4 *************** *** 18,21 **** 2002-07-17 Update: All of the samples will draw dramatically faster if Auto Refresh is unchecked in the Commands menu. If you have a fast machine and especially if you have a fast video card such as a nVidia GeForce2 or better, then a lot of the turtle samples will draw reasonably fast, except where points are plotted; the full window blit after each drawing operation will make even those sample scripts slow. If you have on-board video or a slow machine you will definitely want to uncheck Auto Refresh! This applies to Mac OS X as well which seems quite slow if Auto Refresh is checked. - - I have not updated the comments in the scripts for almost a year, so many of the comments could apply to older versions of the turtle drawing routines and should be taken with a grain of salt. If there is demand, I'll revisit the drawing support in PythonCard and refactor and speed up operations where possible. See the hopalong sample (not the turtle version of hopalong) if you are interested in plotting data. It is much faster. \ No newline at end of file --- 18,19 ---- |
From: Kevin A. <ka...@us...> - 2004-05-10 19:53:08
|
Update of /cvsroot/pythoncard/PythonCard/samples/custdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18942/samples/custdb Modified Files: custdb.ini Log Message: fixed DrawBitmap call to use DrawBitmapPoint (wxPython 2.5.2.x) Index: custdb.ini =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/custdb/custdb.ini,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** custdb.ini 26 Mar 2002 16:19:52 -0000 1.1 --- custdb.ini 10 May 2004 19:52:52 -0000 1.2 *************** *** 1,5 **** [ConfigData] - sortby = name - data = customerdata.csv selected = 2 --- 1,5 ---- [ConfigData] selected = 2 + data = customerdata.csv + sortby = name |
From: Kevin A. <ka...@us...> - 2004-05-10 19:53:01
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18942 Modified Files: widget.py Log Message: fixed DrawBitmap call to use DrawBitmapPoint (wxPython 2.5.2.x) Index: widget.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/widget.py,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -d -r1.129 -r1.130 *** widget.py 10 May 2004 17:24:24 -0000 1.129 --- widget.py 10 May 2004 19:52:51 -0000 1.130 *************** *** 449,453 **** y = -dy while y < sz.height: ! deviceContext.DrawBitmap(bmp, (x, y)) y = y + h x = x + w --- 449,453 ---- y = -dy while y < sz.height: ! deviceContext.DrawBitmapPoint(bmp, (x, y)) y = y + h x = x + w *************** *** 491,494 **** self.tileBackground( deviceContext ) else: ! deviceContext.DrawBitmap(self._bitmap.getBits(), (0, 0)) --- 491,494 ---- self.tileBackground( deviceContext ) else: ! deviceContext.DrawBitmapPoint(self._bitmap.getBits(), (0, 0)) |
From: Kevin A. <ka...@us...> - 2004-05-10 19:01:07
|
Update of /cvsroot/pythoncard/PythonCard/tools/findfiles In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6452/tools/findfiles Modified Files: findfiles.py Log Message: added searches to loadConfig and saveConfig Index: findfiles.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/findfiles/findfiles.py,v retrieving revision 1.76 retrieving revision 1.77 diff -C2 -d -r1.76 -r1.77 *** findfiles.py 30 Apr 2004 16:26:12 -0000 1.76 --- findfiles.py 10 May 2004 19:00:47 -0000 1.77 *************** *** 135,138 **** --- 135,140 ---- if 'findfiles.size' in self.config: self.size = self.config['findfiles.size'] + if 'searches' in self.config: + self.components.fldSearchPattern.items = self.config['searches'] if 'history' in self.config: history = self.config['history'] *************** *** 149,152 **** --- 151,155 ---- for i in range(self.fileHistory.GetCount()): history.append(self.fileHistory.GetHistoryFile(i)) + self.config['searches'] = self.components.fldSearchPattern.items self.config['history'] = history try: |
From: Kevin A. <ka...@us...> - 2004-05-10 18:25:03
|
Update of /cvsroot/pythoncard/PythonCard/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31691/docs Modified Files: changelog.txt Log Message: fixed resourceEditor so it saves on Run and validates component names Index: changelog.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/docs/changelog.txt,v retrieving revision 1.287 retrieving revision 1.288 diff -C2 -d -r1.287 -r1.288 *** changelog.txt 10 May 2004 05:01:58 -0000 1.287 --- changelog.txt 10 May 2004 18:24:40 -0000 1.288 *************** *** 3,6 **** --- 3,8 ---- Release 0.8 2004-05-?? + fixed resourceEditor so it saves on Run and validates + component names changed all occurances of stack in resources to application removed Stack class |
From: Kevin A. <ka...@us...> - 2004-05-10 17:24:36
|
Update of /cvsroot/pythoncard/PythonCard In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19603 Modified Files: menu.py model.py widget.py Log Message: added name of command to EventLog report eventName = 'command ' + self.command Index: widget.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/widget.py,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -d -r1.128 -r1.129 *** widget.py 10 May 2004 00:45:17 -0000 1.128 --- widget.py 10 May 2004 17:24:24 -0000 1.129 *************** *** 353,357 **** if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): # need to report the name for the handler if it exists ! eventName = 'command' else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): --- 353,357 ---- if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): # need to report the name for the handler if it exists ! eventName = 'command ' + self.command else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): Index: model.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/model.py,v retrieving revision 1.171 retrieving revision 1.172 diff -C2 -d -r1.171 -r1.172 *** model.py 10 May 2004 05:01:58 -0000 1.171 --- model.py 10 May 2004 17:24:23 -0000 1.172 *************** *** 726,730 **** if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): ! eventName = 'command' else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): --- 726,730 ---- if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): ! eventName = 'command ' + self.command else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): Index: menu.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/menu.py,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** menu.py 10 May 2004 00:45:17 -0000 1.37 --- menu.py 10 May 2004 17:24:22 -0000 1.38 *************** *** 164,168 **** if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): # need to report the name for the handler if it exists ! eventName = 'command' else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): --- 164,168 ---- if self.command and isinstance(eventClassInstance, event.CommandTypeEvent): # need to report the name for the handler if it exists ! eventName = 'command ' + self.command else: if isinstance(eventClassInstance, event.InsteadOfTypeEvent): |
From: Kevin A. <ka...@us...> - 2004-05-10 17:16:23
|
Update of /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17987/tools/resourceEditor/modules Modified Files: propertyEditor.py Log Message: added validation code for name attribute Index: propertyEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/resourceEditor/modules/propertyEditor.py,v retrieving revision 1.46 retrieving revision 1.47 diff -C2 -d -r1.46 -r1.47 *** propertyEditor.py 9 May 2004 04:11:57 -0000 1.46 --- propertyEditor.py 10 May 2004 17:16:13 -0000 1.47 *************** *** 10,13 **** --- 10,14 ---- import resourceOutput import time + import string import wx *************** *** 131,135 **** wName, wClass = self.components.wComponentList.stringSelection.split(" : ") propName = self.components.wPropertyList.stringSelection ! # KEA 2002-02-23 ##if propName not in cantmodify: --- 132,136 ---- wName, wClass = self.components.wComponentList.stringSelection.split(" : ") propName = self.components.wPropertyList.stringSelection ! # KEA 2002-02-23 ##if propName not in cantmodify: *************** *** 151,154 **** --- 152,181 ---- pass + # KEA 2004-05-10 + # need to figure out where to stick validation code + # but for now just need to make sure that if we're changing the name + # attribute that it is valid, but similar checks will be necessary for + # integer fields, a list of items, etc. + # also maybe each attribute should have a doc or help string displayed + # saying what the attribute does, example values, etc. + if propName == 'name': + badValue = False + # if it isn't valid then display an alert and exit + # must start with a letter and only contain alphanumeric characters + if value == "" or value[0] not in string.ascii_letters: + badValue = True + else: + alphanumeric = string.ascii_letters + string.digits + for c in value: + if c not in alphanumeric: + badValue = True + break + if badValue: + dialog.alertDialog(None, "Name must start with a letter and only contain letters and numbers.", 'Error: Name is invalid') + self.components.wField.setFocus() + self.components.wField.setSelection(-1, -1) + return + # check for duplicate names is done below + ##widget = self.components[wName] widget = self._comp[wName] |
From: Kevin A. <ka...@us...> - 2004-05-10 16:45:29
|
Update of /cvsroot/pythoncard/PythonCard/samples/lsystem In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5100/samples/lsystem Modified Files: readme.txt Log Message: added info URL and full names for contributors Index: readme.txt =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/lsystem/readme.txt,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** readme.txt 9 May 2004 00:50:53 -0000 1.1 --- readme.txt 10 May 2004 16:45:20 -0000 1.2 *************** *** 1,3 **** A fractal display program using the Lindenmayer rule system to describe the fractal. ! Contributed by Arlo, Kim, Ward, Kevin. \ No newline at end of file --- 1,7 ---- A fractal display program using the Lindenmayer rule system to describe the fractal. ! For more information on Lindenmayer Systems (L-Systems) see: ! ! http://wwwsv1.u-aizu.ac.jp/~nehaniv/CM/lsys.html ! ! Contributed by Arlo Belshee, Kim Wallmark, Ward Cunningham, and Kevin Altis. \ No newline at end of file |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:29
|
Update of /cvsroot/pythoncard/PythonCard/samples/flatfileDatabase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/flatfileDatabase Modified Files: fieldsTest.rsrc.py flatfileDatabase.rsrc.py flatfileDatabaseTemplate.rsrc.py Log Message: changed all occurances of stack in resources to application Index: fieldsTest.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/flatfileDatabase/fieldsTest.rsrc.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** fieldsTest.rsrc.py 24 Apr 2004 06:49:46 -0000 1.8 --- fieldsTest.rsrc.py 10 May 2004 05:02:08 -0000 1.9 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Template', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Template', 'backgrounds': [ Index: flatfileDatabaseTemplate.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/flatfileDatabase/flatfileDatabaseTemplate.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** flatfileDatabaseTemplate.rsrc.py 26 Jun 2002 19:52:46 -0000 1.3 --- flatfileDatabaseTemplate.rsrc.py 10 May 2004 05:02:14 -0000 1.4 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Template', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Template', 'backgrounds': [ Index: flatfileDatabase.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/flatfileDatabase/flatfileDatabase.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** flatfileDatabase.rsrc.py 26 Jun 2002 19:52:46 -0000 1.6 --- flatfileDatabase.rsrc.py 10 May 2004 05:02:14 -0000 1.7 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Addresses', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Addresses', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:29
|
Update of /cvsroot/pythoncard/PythonCard/samples/fpop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/fpop Modified Files: fpop.rsrc.py message.rsrc.py preview.rsrc.py Log Message: changed all occurances of stack in resources to application Index: preview.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/preview.rsrc.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** preview.rsrc.py 5 May 2004 16:53:25 -0000 1.8 --- preview.rsrc.py 10 May 2004 05:02:15 -0000 1.9 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Preview', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Preview', 'backgrounds': [ Index: fpop.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/fpop.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** fpop.rsrc.py 5 May 2004 16:53:25 -0000 1.6 --- fpop.rsrc.py 10 May 2004 05:02:15 -0000 1.7 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'fpop', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'fpop', 'backgrounds': [ Index: message.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/message.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** message.rsrc.py 5 May 2004 16:53:25 -0000 1.3 --- message.rsrc.py 10 May 2004 05:02:15 -0000 1.4 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'New Message', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'New Message', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/dbBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/dbBrowser Modified Files: dbBrowser.rsrc.py dbBrowser2.rsrc.py Log Message: changed all occurances of stack in resources to application Index: dbBrowser.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/dbBrowser/dbBrowser.rsrc.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** dbBrowser.rsrc.py 22 Apr 2004 16:42:42 -0000 1.13 --- dbBrowser.rsrc.py 10 May 2004 05:02:07 -0000 1.14 *************** *** 1,3 **** ! { 'stack':{ 'type':'Stack', 'name':'DbBrowser', --- 1,3 ---- ! { 'application':{ 'type':'Application', 'name':'DbBrowser', Index: dbBrowser2.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/dbBrowser/dbBrowser2.rsrc.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dbBrowser2.rsrc.py 22 Apr 2004 16:42:42 -0000 1.2 --- dbBrowser2.rsrc.py 10 May 2004 05:02:07 -0000 1.3 *************** *** 1,3 **** ! { 'stack':{ 'type':'Stack', 'name':'DbBrowser2', --- 1,3 ---- ! { 'application':{ 'type':'Application', 'name':'DbBrowser2', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/hopalong In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/hopalong Modified Files: hopalong.rsrc.py Log Message: changed all occurances of stack in resources to application Index: hopalong.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/hopalong/hopalong.rsrc.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** hopalong.rsrc.py 5 May 2004 16:53:26 -0000 1.12 --- hopalong.rsrc.py 10 May 2004 05:02:15 -0000 1.13 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Hopalong', --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Hopalong', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/gadflyDatabase In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/gadflyDatabase Modified Files: gadflyDatabase.rsrc.py Log Message: changed all occurances of stack in resources to application Index: gadflyDatabase.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/gadflyDatabase/gadflyDatabase.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gadflyDatabase.rsrc.py 22 Dec 2002 10:42:38 -0000 1.1 --- gadflyDatabase.rsrc.py 10 May 2004 05:02:15 -0000 1.2 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Addresses', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Addresses', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/doodle In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/doodle Modified Files: doodle.rsrc.py Log Message: changed all occurances of stack in resources to application Index: doodle.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/doodle/doodle.rsrc.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** doodle.rsrc.py 26 Apr 2004 04:16:02 -0000 1.10 --- doodle.rsrc.py 10 May 2004 05:02:07 -0000 1.11 *************** *** 1,4 **** ! { 'stack':{ 'type':'Stack', 'name':'Doodle', --- 1,4 ---- ! { 'application':{ 'type':'Application', 'name':'Doodle', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/chat In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/chat Modified Files: chat.rsrc.py Log Message: changed all occurances of stack in resources to application Index: chat.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/chat/chat.rsrc.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** chat.rsrc.py 5 May 2004 16:53:25 -0000 1.2 --- chat.rsrc.py 10 May 2004 05:02:04 -0000 1.3 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Chat', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Chat', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/dialogs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/dialogs Modified Files: dialogs.rsrc.py Log Message: changed all occurances of stack in resources to application Index: dialogs.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/dialogs/dialogs.rsrc.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** dialogs.rsrc.py 5 May 2004 16:53:25 -0000 1.13 --- dialogs.rsrc.py 10 May 2004 05:02:07 -0000 1.14 *************** *** 2,6 **** # only the background position and size matter ?! ! { 'stack':{ 'type':'Stack', 'name':'Dialogs', --- 2,6 ---- # only the background position and size matter ?! ! { 'application':{ 'type':'Application', 'name':'Dialogs', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:28
|
Update of /cvsroot/pythoncard/PythonCard/samples/ataxx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/ataxx Modified Files: ataxx.rsrc.py Log Message: changed all occurances of stack in resources to application Index: ataxx.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/ataxx/ataxx.rsrc.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ataxx.rsrc.py 4 May 2004 23:31:56 -0000 1.1 --- ataxx.rsrc.py 10 May 2004 05:02:03 -0000 1.2 *************** *** 1,4 **** ! { 'stack':{ 'type':'Stack', 'name':'Ataxx', --- 1,4 ---- ! { 'application':{ 'type':'Application', 'name':'Ataxx', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:16
|
Update of /cvsroot/pythoncard/PythonCard/samples/custdb In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/custdb Modified Files: custdb.de.rsrc.py custdb.rsrc.py Log Message: changed all occurances of stack in resources to application Index: custdb.de.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/custdb/custdb.de.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** custdb.de.rsrc.py 24 Apr 2004 05:34:20 -0000 1.3 --- custdb.de.rsrc.py 10 May 2004 05:02:07 -0000 1.4 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Minimal', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Minimal', 'backgrounds': [ Index: custdb.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/custdb/custdb.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** custdb.rsrc.py 24 Apr 2004 05:34:20 -0000 1.3 --- custdb.rsrc.py 10 May 2004 05:02:07 -0000 1.4 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Minimal', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Minimal', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:16
|
Update of /cvsroot/pythoncard/PythonCard/samples/conversions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/conversions Modified Files: conversions.rsrc.py Log Message: changed all occurances of stack in resources to application Index: conversions.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/conversions/conversions.rsrc.py,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** conversions.rsrc.py 5 May 2004 16:53:25 -0000 1.8 --- conversions.rsrc.py 10 May 2004 05:02:06 -0000 1.9 *************** *** 1,4 **** ! { 'stack':{ 'type':'Stack', 'name':'Conversions', --- 1,4 ---- ! { 'application':{ 'type':'Application', 'name':'Conversions', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:16
|
Update of /cvsroot/pythoncard/PythonCard/samples/counter In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/counter Modified Files: counter.rsrc.py Log Message: changed all occurances of stack in resources to application Index: counter.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/counter/counter.rsrc.py,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** counter.rsrc.py 5 May 2004 16:53:25 -0000 1.6 --- counter.rsrc.py 10 May 2004 05:02:06 -0000 1.7 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Counter', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Counter', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:16
|
Update of /cvsroot/pythoncard/PythonCard/samples/companies In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/companies Modified Files: companies.rsrc.py Log Message: changed all occurances of stack in resources to application Index: companies.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/companies/companies.rsrc.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** companies.rsrc.py 7 Jul 2002 20:26:02 -0000 1.2 --- companies.rsrc.py 10 May 2004 05:02:04 -0000 1.3 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Companies', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Companies', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:11
|
Update of /cvsroot/pythoncard/PythonCard/samples/addressesZODB In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/addressesZODB Modified Files: addresses.rsrc.py Log Message: changed all occurances of stack in resources to application Index: addresses.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/addressesZODB/addresses.rsrc.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** addresses.rsrc.py 28 May 2002 00:34:21 -0000 1.5 --- addresses.rsrc.py 10 May 2004 05:02:01 -0000 1.6 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Addresses', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Addresses', 'backgrounds': [ |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:10
|
Update of /cvsroot/pythoncard/PythonCard/samples/addresses In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/addresses Modified Files: addresses.rsrc.py Log Message: changed all occurances of stack in resources to application Index: addresses.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/addresses/addresses.rsrc.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** addresses.rsrc.py 29 Jul 2003 04:26:43 -0000 1.11 --- addresses.rsrc.py 10 May 2004 05:02:01 -0000 1.12 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Addresses', --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Addresses', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:09
|
Update of /cvsroot/pythoncard/PythonCard/samples/SourceForgeTracker In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples/SourceForgeTracker Modified Files: SourceForgeTracker.colorized.rsrc.py SourceForgeTracker.original.rsrc.py SourceForgeTracker.rsrc.py Log Message: changed all occurances of stack in resources to application Index: SourceForgeTracker.original.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/SourceForgeTracker/SourceForgeTracker.original.rsrc.py,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SourceForgeTracker.original.rsrc.py 5 May 2004 16:53:24 -0000 1.7 --- SourceForgeTracker.original.rsrc.py 10 May 2004 05:02:00 -0000 1.8 *************** *** 4,10 **** # { ! 'stack': { ! 'type':'Stack', 'name':'SourceForgeTracker', --- 4,10 ---- # { ! 'application': { ! 'type':'Application', 'name':'SourceForgeTracker', Index: SourceForgeTracker.colorized.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/SourceForgeTracker/SourceForgeTracker.colorized.rsrc.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** SourceForgeTracker.colorized.rsrc.py 5 May 2004 16:53:24 -0000 1.4 --- SourceForgeTracker.colorized.rsrc.py 10 May 2004 05:02:00 -0000 1.5 *************** *** 4,10 **** # { ! 'stack': { ! 'type':'Stack', 'name':'SourceForgeTracker', --- 4,10 ---- # { ! 'application': { ! 'type':'Application', 'name':'SourceForgeTracker', Index: SourceForgeTracker.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/SourceForgeTracker/SourceForgeTracker.rsrc.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** SourceForgeTracker.rsrc.py 5 May 2004 16:53:24 -0000 1.10 --- SourceForgeTracker.rsrc.py 10 May 2004 05:02:00 -0000 1.11 *************** *** 4,10 **** # { ! 'stack': { ! 'type':'Stack', 'name':'SourceForgeTracker', --- 4,10 ---- # { ! 'application': { ! 'type':'Application', 'name':'SourceForgeTracker', |
From: Kevin A. <ka...@us...> - 2004-05-10 05:03:09
|
Update of /cvsroot/pythoncard/PythonCard/samples In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21980/samples Modified Files: samples.rsrc.py Log Message: changed all occurances of stack in resources to application Index: samples.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/samples.rsrc.py,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** samples.rsrc.py 9 May 2004 00:50:53 -0000 1.58 --- samples.rsrc.py 10 May 2004 05:01:59 -0000 1.59 *************** *** 1,3 **** ! {'stack':{'type':'Stack', 'name':'Samples', 'backgrounds': [ --- 1,3 ---- ! {'application':{'type':'Application', 'name':'Samples', 'backgrounds': [ |