A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://mail.python.org/pipermail/python-checkins/2002-January/024125.html below:

[Python-checkins] CVS: python/dist/src/Mac/Modules/waste wastescan.py,1.7,1.8

[Python-checkins] CVS: python/dist/src/Mac/Modules/waste wastescan.py,1.7,1.8Jack Jansen jackjansen@users.sourceforge.net
Fri, 11 Jan 2002 04:37:09 -0800
Update of /cvsroot/python/python/dist/src/Mac/Modules/waste
In directory usw-pr-cvs1:/tmp/cvs-serv17978/Python/Mac/Modules/waste

Modified Files:
	wastescan.py 
Log Message:
- Updated to Waste 2.0.
- Use waste included with CW in stead of separate package.

Index: wastescan.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/waste/wastescan.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** wastescan.py	1998/04/17 14:07:55	1.7
--- wastescan.py	2002/01/11 12:37:07	1.8
***************
*** 5,12 ****
  BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen')
  sys.path.append(BGENDIR)
! from scantools import Scanner_PreUH3
  from bgenlocations import MWERKSDIR, TOOLBOXDIR
  
! WASTEDIR=":::::Waste 1.3 Distribution:WASTE C/C++ Headers:"
  
  OBJECT = "TEHandle"
--- 5,13 ----
  BGENDIR=os.path.join(sys.prefix, ':Tools:bgen:bgen')
  sys.path.append(BGENDIR)
! from scantools import Scanner
  from bgenlocations import MWERKSDIR, TOOLBOXDIR
  
! #WASTEDIR=":::::Waste 1.3 Distribution:WASTE C/C++ Headers:"
! WASTEDIR=MWERKSDIR + 'MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers:'
  
  OBJECT = "TEHandle"
***************
*** 27,31 ****
  	print "=== Done.  It's up to you to compile it now! ==="
  
! class MyScanner(Scanner_PreUH3):
  
  	def destination(self, type, name, arglist):
--- 28,33 ----
  	print "=== Done.  It's up to you to compile it now! ==="
  
! #class MyScanner(Scanner_PreUH3):
! class MyScanner(Scanner):
  
  	def destination(self, type, name, arglist):
***************
*** 53,56 ****
--- 55,60 ----
  			"WEGetInfo",
  			"WEVersion", # Unfortunately...
+ 			"WEPut", # XXXX TBD: needs array of flavortypes.
+ 			"WEGetOneAttribute", # XXXX TBD: output buffer
  			]
  
***************
*** 61,64 ****
--- 65,96 ----
  			"WEFontIDToNameUPP",
  			"WEFontNameToIDUPP",
+ 			"WEClickLoopUPP",
+ 			"WEScrollUPP",
+ 			"WETSMPreUpdateUPP",
+ 			"WETSMPostUpdateUPP",
+ 			"WEPreTrackDragUPP",
+ 			"WETranslateDragUPP",
+ 			"WEHiliteDropAreaUPP",
+ 			"WEDrawTextUPP",
+ 			"WEDrawTSMHiliteUPP",
+ 			"WEPixelToCharUPP",
+ 			"WECharToPixelUPP",
+ 			"WELineBreakUPP",
+ 			"WEWordBreakUPP",
+ 			"WECharByteUPP",
+ 			"WECharTypeUPP",
+ 			"WEEraseUPP",
+ 			"WEFluxUPP",
+ 			"WENewObjectUPP",
+ 			"WEDisposeObjectUPP",
+ 			"WEDrawObjectUPP",
+ 			"WEClickObjectUPP",
+ 			"WEStreamObjectUPP",
+ 			"WEHoverObjectUPP",
+ 			"WERuler",		# XXXX To be done
+ 			"WERuler_ptr",	# ditto
+ 			"WEParaInfo",	# XXXX To be done
+ 			"WEPrintSession",	# XXXX To be done
+ 			"WEPrintOptions_ptr", # XXXX To be done
  			]
  
***************
*** 69,90 ****
  
  			# WEContinuousStyle
! 			([("WEStyleMode", "mode", "OutMode"), ("TextStyle", "ts", "OutMode")],
! 			 [("WEStyleMode", "mode", "InOutMode"), ("TextStyle", "ts", "OutMode")]),
  			 
  			# WECopyRange
! 			([('Handle', 'hText', 'InMode'), ('StScrpHandle', 'hStyles', 'InMode'),
!     			('WESoupHandle', 'hSoup', 'InMode')],
!     		 [('OptHandle', 'hText', 'InMode'), ('OptStScrpHandle', 'hStyles', 'InMode'),
!     			('OptSoupHandle', 'hSoup', 'InMode')]),
  			 
  			# WEInsert
! 			([('StScrpHandle', 'hStyles', 'InMode'), ('WESoupHandle', 'hSoup', 'InMode')],
!     		 [('OptStScrpHandle', 'hStyles', 'InMode'), ('OptSoupHandle', 'hSoup', 'InMode')]),
      		 
      		# WEGetObjectOwner
      		("WEGetObjectOwner",
      		 [('WEReference', '*', 'ReturnMode')],
!     		 [('ExistingWEReference', '*', 'ReturnMode')])
! 
  			]
  			
--- 101,129 ----
  
  			# WEContinuousStyle
! 			([("WEStyleMode", "ioMode", "OutMode"), ("TextStyle", "outTextStyle", "OutMode")],
! 			 [("WEStyleMode", "*", "InOutMode"), ("TextStyle", "*", "*")]),
  			 
  			# WECopyRange
! 			([('Handle', 'outText', 'InMode'), ('StScrpHandle', 'outStyles', 'InMode'),
!     			('WESoupHandle', 'outSoup', 'InMode')],
!     		 [('OptHandle', '*', '*'), ('OptStScrpHandle', '*', '*'),
!     			('OptSoupHandle', '*', '*')]),
  			 
  			# WEInsert
! 			([('StScrpHandle', 'inStyles', 'InMode'), ('WESoupHandle', 'inSoup', 'InMode')],
!     		 [('OptStScrpHandle', '*', '*'), ('OptSoupHandle', '*', '*')]),
      		 
      		# WEGetObjectOwner
      		("WEGetObjectOwner",
      		 [('WEReference', '*', 'ReturnMode')],
!     		 [('ExistingWEReference', '*', 'ReturnMode')]),
!     		 
!     		# WEFindParagraph
!     		([("char_ptr", "inKey", "InMode")],
!     		 [("stringptr", "*", "*")]),
! 			
! 			# WESetOneAttribute
! 			([("void_ptr", "*", "InMode"), ("ByteCount", "*", "InMode")],
! 			 [("InBuffer", "*", "*")]),
  			]
  			




RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4