You can subscribe to this list here.
| 2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(447) |
Nov
(163) |
Dec
(57) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2005 |
Jan
(172) |
Feb
|
Mar
(123) |
Apr
(64) |
May
(1) |
Jun
(278) |
Jul
(89) |
Aug
(97) |
Sep
(62) |
Oct
(53) |
Nov
(119) |
Dec
(60) |
| 2006 |
Jan
(76) |
Feb
(1094) |
Mar
(363) |
Apr
(163) |
May
(57) |
Jun
(43) |
Jul
(39) |
Aug
(15) |
Sep
(33) |
Oct
(62) |
Nov
(8) |
Dec
|
| 2007 |
Jan
(9) |
Feb
(34) |
Mar
(2) |
Apr
(14) |
May
(8) |
Jun
(40) |
Jul
(21) |
Aug
(1) |
Sep
(20) |
Oct
(15) |
Nov
(26) |
Dec
|
| 2008 |
Jan
(1) |
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
(1) |
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(32) |
Jun
|
Jul
|
Aug
(3) |
Sep
(3) |
Oct
|
Nov
|
Dec
|
| 2010 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2011 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(7) |
Dec
|
| 2012 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: creedon <icr...@us...> - 2005-08-21 21:15:57
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/originalSuperStressRemnants In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30111/originalSuperStressRemnants Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/originalSuperStressRemnants added to the repository --> Using per-directory sticky tag `fUnit_Suite-branch' |
|
From: creedon <icr...@us...> - 2005-08-21 21:15:52
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/engine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30100/engine Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/engine added to the repository --> Using per-directory sticky tag `fUnit_Suite-branch' |
|
From: creedon <icr...@us...> - 2005-08-21 21:15:21
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/contextForTests In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29954/contextForTests Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/contextForTests added to the repository --> Using per-directory sticky tag `fUnit_Suite-branch' |
|
From: creedon <icr...@us...> - 2005-08-21 21:13:31
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29634/fUnit Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit added to the repository --> Using per-directory sticky tag `fUnit_Suite-branch' |
|
From: Max L. <ma...@us...> - 2005-08-20 11:11:57
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13134 Modified Files: langsystypes.c Log Message: Fix in objtostring to fix the crash on X when coercing an objectSpecifier to a string Index: langsystypes.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/langsystypes.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** langsystypes.c 20 Aug 2005 10:09:46 -0000 1.5 --- langsystypes.c 20 Aug 2005 11:11:48 -0000 1.6 *************** *** 1992,1995 **** --- 1992,1996 ---- bigstring bsitem; boolean fl; + AEDesc tempDesc, *tempDescPtr; // MJL 17/08/05: Temp desc and ptr so we can compile for both 9 & X setemptystring (bsobj); *************** *** 2033,2037 **** goto exit; ! if (!setdescriptorvalue (keydata, &vkey)) /*if successful, keydata is on temp stack*/ goto exit; --- 2034,2046 ---- goto exit; ! #if TARGET_API_MAC_CARBON == 1 ! // MJL 17/08/05: On X we cannot keep a lazy handle in the AEDesc to the keydata datahandle that gets ! // pushed onto the Frontier temp stack in the vkey. As we need it later we must duplicate the AEDesc before pushing it. ! tempDescPtr = &tempDesc; ! AEDuplicateDesc (&keydata, tempDescPtr); ! #else ! tempDescPtr = &keydata; ! #endif ! if (!setdescriptorvalue (*tempDescPtr, &vkey)) /*if successful, keydata is on temp stack*/ goto exit; *************** *** 2111,2114 **** --- 2120,2126 ---- disposevaluerecord (vkey, false); + #if TARGET_API_MAC_CARBON == 1 + AEDisposeDesc (&keydata); // MJL 17/08/05 dispose of our duplicated temp AEDesc. On 9 the dataHandle belongs also to the vkey which is disposed above so we don't need to explicitly dispose the AEDesc + #endif if (fldisposeobj) AEDisposeDesc (objdesc); |
|
From: Max L. <ma...@us...> - 2005-08-20 10:09:55
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2754 Modified Files: langsystypes.c Log Message: Rewrite of getobjspeckeydesc on Carbon because, as of Jaguar, the AEDesc datahandle is opaque so use toolbox accessor functions rather than trying to parse the data structure. Index: langsystypes.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/langsystypes.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** langsystypes.c 11 Jan 2005 22:48:07 -0000 1.4 --- langsystypes.c 20 Aug 2005 10:09:46 -0000 1.5 *************** *** 1629,1643 **** static boolean getobjspeckeydesc (AEDesc *objdata, OSType desiredkey, AEDesc *keydata) { ! #if TARGET_API_MAC_CARBON == 1 ! ! Handle h; ! ! #else ! register Handle h = (*objdata).dataHandle; ! #endif register byte *p; long ctitems; --- 1629,1664 ---- static boolean getobjspeckeydesc (AEDesc *objdata, OSType desiredkey, AEDesc *keydata) { + + #if TARGET_API_MAC_CARBON == 1 + // MJL 17/08/05: As of Jaguar the AEDesc datahandle is opaque so use toolbox accessor functions rather + // than trying to parse the data structure. + AEKeyword curKeyWord; + OSErr err; + SInt32 i, numItems; + + err = AECountItems((AEDescList *)objdata, &numItems); + if (err != noErr) + goto exit; + + for (i = 1; i <= numItems; i++) { + err = AEGetNthDesc((AEDescList *)objdata, i, typeWildCard, &curKeyWord, keydata); + + if (err != noErr) + goto exit; + + if (curKeyWord == desiredkey) { + goto exit; + } + AEDisposeDesc(keydata); + } ! err = errAEDescNotFound; ! exit: ! return (!oserror (err)); ! #else // #if TARGET_API_MAC_CARBON == 1 + register Handle h = (*objdata).dataHandle; register byte *p; long ctitems; *************** *** 1645,1654 **** OSErr err; - #if TARGET_API_MAC_CARBON == 1 /*PBS 03/14/02: AE OS X fix.*/ - - copydatahandle (objdata, &h); - - #endif - HLock (h); //Code change by Timothy Paustian Saturday, April 29, 2000 11:00:17 PM --- 1666,1669 ---- *************** *** 1691,1694 **** --- 1706,1711 ---- return (!oserror (err)); + + #endif // #if !TARGET_API_MAC_CARBON == 1 } /*getobjspeckeydesc*/ |
|
From: creedon <icr...@us...> - 2005-08-19 00:11:03
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeSuite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4445/DuckTapeSuite Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeSuite added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-19 00:10:37
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/menuCommands In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4528/menuCommands Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/menuCommands added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-19 00:10:08
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable/appInfo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4502/appInfo Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable/appInfo added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-19 00:00:26
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeInfo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4606 Added Files: Tag: commercial_suite_project-branch name version author releaseDate homePageUrl stampedTime authorEmail releaseNotes description Log Message: commercial Suite Project initial import --- NEW FILE: releaseDate --- FrontierVcsFile:1:date:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.releaseDate 7/2/02; 2:04:33 PM --- NEW FILE: description --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.description My updated suites.commercial, modified for Mac OS X --- NEW FILE: author --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.author Sean Elfstrom --- NEW FILE: releaseNotes --- FrontierVcsFile:1:optx:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.releaseNotes 0.4 Fri, Dec 6, 2002 at 9:09:37 AM by SE found another "string4" coercion that needed to be made 0.5 Tue, Dec 10, 2002 at 3:38:21 PM by SE workaround for special case of FileMaker Pro 6 having an event named "eventInfo". This should be investigated further, but I wanted to get a quick fix out ASAP --- NEW FILE: authorEmail --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.authorEmail sel...@im... --- NEW FILE: version --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.version 0.5 --- NEW FILE: homePageUrl --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.homePageUrl --- NEW FILE: stampedTime --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.stampedTime Tue, Dec 10, 2002 at 3:37:28 PM by SE --- NEW FILE: name --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeInfo.name DuckTape |
|
From: creedon <icr...@us...> - 2005-08-18 23:27:52
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4330/data Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 22:37:35
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4459 Added Files: Tag: commercial_suite_project-branch enterAppName parseAete createDocOutline version compileDocs menu installApp createInstallFile importAeteInfo callInstallApp newMenubar Log Message: commercial Suite Project initial import --- NEW FILE: newMenubar --- FrontierVcsFile:1:mbar:suites.DuckTape.data.commercialSuiteReference.newMenubar AAEFAQAAAckAAQAAAAAAAAAAAAABaAFkAhIDHAAAAAAAAAZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgBkAGQBpAJEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAABeAAAAgwAAAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAprz+rr32TKEAAADUAAABWQF/AiEDAExBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAU2NyaXB0cw0JQWJvdXQgdGhlIFNjcmlwdHMgTWVudckNCS0NCVNhbXBsZSBTY3JpcHQgIzENCVNhbXBsZSBTY3JpcHQgIzINCVNhbXBsZSBTY3JpcHQgIzMNCS0NCUVkaXQgU2hhcmVkIE1lbnUNCUVkaXQgU2NyaXB0cyBUYWJsZQ2AAAAAAAAAAAAAAAoAAAAAAAAGbv6YAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACk0AAAAAAAAAAAAAAAAAAApUAAAAAAAAAAAAAAIAAAAYAAAAqgABAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAGVAAAprz/H62FeQAAAAAhAAABWQF/AiEDAExBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAbG9jYWwgKGFwcG5hbWUgPSBzeXMuZnJvbnRtb3N0QXBwICgpKQ1Gcm9udGllci5icmluZ1RvRnJvbnQgKCkNZGlhbG9nLm5vdGlmeSAoIlRoaXMgbWVudSBjb250YWlucyBzY3JpcHRzIHdyaXR0ZW4gd2l0aCBVc2VyTGFuZCBGcm9udGllci4iKQ1zeXMuYnJpbmdBcHBUb0Zyb250IChhcHBuYW1lKQ2AAAAAAACAAAAAAACAAAAAAACAAAAAAAA= --- NEW FILE: installApp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: menu --- FrontierVcsFile:1:mbar:suites.DuckTape.data.commercialSuiteReference.menu AAEFAQAAAc8AAQAAAAAAAAAAAAAAKwADASQCOgAAAAAAAAZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgArAAMD/QT9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAABoAAAAfwAAAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAApJdTlr32TKEAAAN/AAAAsQC2AS4ByUxBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAR2x1ZQ0JRW50ZXIgeW91ciBBcHDVcyBOYW1lyQ0JT3BlbiBUYWJsZSAmIE1lbnUNCS0NCUV4cG9ydCBJbnN0YWxsIEZpbGXJDQktDQk9IkxhdW5jaCAiICsgdGVtcC5hcHBuYW1lDQktDQlJbXBvcnQgJ2FldGUnIEluZm/JDYAAAAAAAAAAAAAACgAAAAAAAAZu/mQAAAAAAAoAAAAAAAAGbv5oAAAAAAAAAAAAAAAKAAAAAAAABm7+bAAAAAAAAAAAAAAACgAAAAAAAAZu/ngAAAAAAAAAAAAAAAoAAAAAAAAGbv8AAAIAAAAGAAAAGwAAAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAGVAAApPeyV7CuV/EAAAAuAQAAjAB/AVQCAExBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAY29tbWVyY2lhbC5lbnRlckFwcE5hbWUgKCkNgAAAAAAAAAIAAABaAAABsQAIAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAGVAAApEHSw7CyzPIAAAA3AQAAsQC2AS4ByUxBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAbG9jYWwgKGFkclRhYmxlID0gQHN5c3RlbS52ZXJicy5hcHBzLlt0ZW1wLmFwcG5hbWVdKQ1pZiBub3QgZGVmaW5lZCAoYWRyVGFibGVeKQ0Jc2NyaXB0RXJyb3IgKCJVc2UgdGhlIEVudGVyIHlvdXIgQXBwJ3MgTmFtZSBjb21tYW5kIGZpcnN0LiIpDQ1lZGl0IChhZHJUYWJsZSkNDWlmIGFkclRhYmxlXi5hcHBJbmZvLnNoYXJlZE1lbnVzDQlsb2NhbCAoaWQgPSBhZHJUYWJsZV4uYXBwSW5mby5pZCkNCWxvY2FsIChhZHIgPSBAc3lzdGVtLm1lbnVzLnNoYXJlZE1lbnVzLltpZF0pDQlpZiBkZWZpbmVkIChhZHJeKQ0JCWVkaXQgKGFkcikNCWVsc2UNCQlpZiBkaWFsb2cuY29uZmlybSAoIkNyZWF0ZSBhIG5ldyBzaGFyZWQgbWVudSBmb3IgIiArIGNvbW1lcmNpYWwuYXBwbmFtZSArICI/IikNCQkJbmV3IChtZW51YmFyVHlwZSwgYWRyKQ0JCQllZGl0IChhZHIpDYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAACAAAANgAAAZgAAwIAAA8GR2VuZXZhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAKQMETe/G9aPAAAAWQEAALEAtgEuAclMQU5E////////AAAAAAAAbWFjIAAAAAAAAAAAAAAAAGlmIGRpYWxvZy55ZXNObyAoIkNyZWF0ZSBhIEZyb250aWVyIEluc3RhbGwgZmlsZSBmb3Ig0iIgKyB0ZW1wLmFwcG5hbWUgKyAi0z8iKQ0JbG9jYWwgKGluZm90YWJsZSA9IEBzeXN0ZW0udmVyYnMuYXBwcy5bdGVtcC5hcHBuYW1lXS5hcHBJbmZvKQ0JDQlsb2NhbCAoZm5hbWUgPSB0ZW1wLmFwcG5hbWUgKyAiLkZyb250aWVyIikNCWlmIGZpbGUuZXhpc3RzIChpbmZvdGFibGVeLnBhdGgpDQkJZm5hbWUgPSBmaWxlLmZvbGRlckZyb21QYXRoIChpbmZvdGFibGVeLnBhdGgpICsgZm5hbWUNCQ0JaWYgZmlsZS5wdXRGaWxlRGlhbG9nICgiU2F2ZSBJbnN0YWxsIGZpbGUgd2hlcmU/IiwgQGZuYW1lKQ0JCWNvbW1lcmNpYWwuY3JlYXRlaW5zdGFsbGZpbGUgKHRlbXAuYXBwbmFtZSwgaW5mb3RhYmxlXi5pZCwgZm5hbWUpDYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAACAAAABgAAABwAAAIAAA8GR2VuZXZhAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAKUoyCq/GPUJAAAAJgEAAJYAfwFeAgBMQU5E////////AAAAAAAAbWFjIAAAAAAAAAAAAAAAAGFwcC5zdGFydCAoQFt0ZW1wLmFwcG5hbWVdKQ2AAAAAAAAAAgAAAEgAAAJpAAkCAAAPBkdlbmV2YQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAZUAACkDBE3sLLOagAAAFsAAACxALYBLgHJTEFORP///////wAAAAAAAG1hYyAAAAAAAAAAAAAAAABsb2NhbCAoaW5mb3RhYmxlID0gQHN5c3RlbS52ZXJicy5hcHBzLlt0ZW1wLmFwcG5hbWVdLmFwcEluZm8pDWlmIG5vdCBmaWxlLmV4aXN0cyAoaW5mb3RhYmxlXi5wYXRoKQ0JaW5mb3RhYmxlXi5wYXRoID0gZmlsZS5maW5kQXBwbGljYXRpb24gKGluZm90YWJsZV4uaWQpDQlpZiBub3QgZmlsZS5nZXRGaWxlRGlhbG9nICgiV2hlcmUgaXMgIiArIHRlbXAuYXBwbmFtZSArICI/IiwgQGluZm90YWJsZV4ucGF0aCwgJ0FQUEwnKQ0JCXJldHVybiAoZmFsc2UpDQlpbmZvdGFibGVeLmlkID0gZmlsZS5jcmVhdG9yIChpbmZvdGFibGVeLnBhdGgpIMdrZWVwIGluIHN5bmMNaWYgcmV6LmNvdW50UmVzb3VyY2VzIChpbmZvdGFibGVeLnBhdGgsICdhZXRlJykgPT0gMA0JZGlhbG9nLmFsZXJ0ICh0ZW1wLmFwcG5hbWUgKyAiIGRvZXNu1XQgY29udGFpbiBhbiAnYWV0ZScgcmVzb3VyY2UuIikNCXJldHVybiAoZmFsc2UpDWlmIG5vdCBkaWFsb2cuY29uZmlybSAoIkltcG9ydCBnbHVlIHNjcmlwdHMgYW5kIHZhbHVlcyBmcm9tICIgKyB0ZW1wLmFwcG5hbWUgKyAi1XMgJ2FldGUnIHJlc291cmNlPyIpDQlyZXR1cm4gKGZhbHNlKQ1yZXR1cm4gKGNvbW1lcmNpYWwuaW1wb3J0QWV0ZUluZm8gKCkpDYAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAA== --- NEW FILE: compileDocs --- (This appears to be a binary file; contents omitted.) --- NEW FILE: version --- FrontierVcsFile:1:TEXT:suites.DuckTape.data.commercialSuiteReference.version 4.0 --- NEW FILE: createDocOutline --- (This appears to be a binary file; contents omitted.) --- NEW FILE: enterAppName --- (This appears to be a binary file; contents omitted.) --- NEW FILE: parseAete --- (This appears to be a binary file; contents omitted.) --- NEW FILE: importAeteInfo --- (This appears to be a binary file; contents omitted.) --- NEW FILE: callInstallApp --- (This appears to be a binary file; contents omitted.) --- NEW FILE: createInstallFile --- (This appears to be a binary file; contents omitted.) |
|
From: creedon <icr...@us...> - 2005-08-18 22:17:42
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference/newTable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4363/newTable Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference/newTable added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 22:04:30
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4342/commercialSuiteReference Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 21:38:34
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4469/newTable Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 21:38:13
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4388/DuckTapeRootLeftovers Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 21:37:41
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeInfo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4421/DuckTapeInfo Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeInfo added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 21:37:13
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeData In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4402/DuckTapeData Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeData added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 17:28:39
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4312/DuckTape Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape added to the repository --> Using per-directory sticky tag `commercial_suite_project-branch' |
|
From: creedon <icr...@us...> - 2005-08-18 17:09:52
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable/appInfo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4649 Added Files: Tag: commercial_suite_project-branch app1supported sharedMenus Log Message: commercial Suite Project initial import --- NEW FILE: app1supported --- FrontierVcsFile:1:bool:suites.DuckTape.data.newTable.appInfo.app1supported false --- NEW FILE: sharedMenus --- FrontierVcsFile:1:bool:suites.DuckTape.data.newTable.appInfo.sharedMenus false |
|
From: creedon <icr...@us...> - 2005-08-18 17:09:31
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/newTable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4433 Added Files: Tag: commercial_suite_project-branch printDocument bringToFront eventInformation quit launch openDocument isRunning examples Log Message: commercial Suite Project initial import --- NEW FILE: quit --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.quit on quit () { return (required.quitApplication ([[sample.id]]))} --- NEW FILE: isRunning --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.isRunning on isRunning () { return (sys.appIsRunning ([[sample.id]]))} --- NEW FILE: launch --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.launch on launch () { return (app.start ("[[sample]]"))} --- NEW FILE: eventInformation --- FrontierVcsFile:1:tabl:suites.DuckTape.data.newTable.eventInformation --- NEW FILE: examples --- FrontierVcsFile:1:tabl:suites.DuckTape.data.newTable.examples --- NEW FILE: openDocument --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.openDocument on openDocument (file) { return (required.openDocument ([[sample.id]], file))} --- NEW FILE: bringToFront --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.bringToFront on bringToFront () { if not app.start ("[[sample]]") { return (false)}; return (sys.bringAppToFront ([[sample.id]]))} --- NEW FILE: printDocument --- FrontierVcsFile:1:scpt:suites.DuckTape.data.newTable.printDocument on printDocument (file) { return (required.printDocument ([[sample.id]], file))} |
|
From: creedon <icr...@us...> - 2005-08-18 17:09:18
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4550 Added Files: Tag: commercial_suite_project-branch callNewAppsTableItemInstaller appTypes Log Message: commercial Suite Project initial import --- NEW FILE: appTypes --- FrontierVcsFile:1:list:suites.DuckTape.data.appTypes {'APPL', 'APPD', 'APPC', 'APPE', 'appe', 'FNDR', 'dfil'} --- NEW FILE: callNewAppsTableItemInstaller --- FrontierVcsFile:1:scpt:suites.DuckTape.data.callNewAppsTableItemInstaller return (DuckTape.newAppsTableItemInstaller (system.deskscripts.path)) |
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeSuite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4502 Added Files: Tag: commercial_suite_project-branch menu createGlue isApp importAeteInfo createDocOutline compileDocs Log Message: commercial Suite Project initial import --- NEW FILE: createGlue --- (This appears to be a binary file; contents omitted.) --- NEW FILE: isApp --- FrontierVcsFile:1:scpt:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeSuite.isApp on isApp (theFile) { if DuckTapeData.appTypes contains file.type (theFile) { return (true)} else { return (false)}} --- NEW FILE: menu --- FrontierVcsFile:1:mbar:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeSuite.menu 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 --- NEW FILE: compileDocs --- (This appears to be a binary file; contents omitted.) --- NEW FILE: importAeteInfo --- (This appears to be a binary file; contents omitted.) --- NEW FILE: createDocOutline --- (This appears to be a binary file; contents omitted.) |
|
From: creedon <icr...@us...> - 2005-08-18 17:08:59
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/DuckTapeRootLeftovers/DuckTapeData In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4734 Added Files: Tag: commercial_suite_project-branch newMenubar Log Message: commercial Suite Project initial import --- NEW FILE: newMenubar --- FrontierVcsFile:1:mbar:suites.DuckTape.data.DuckTapeRootLeftovers.DuckTapeData.newMenubar AAEFAQAAAckAAQAAAAAAAAAAAAABaAFkAhIDHAAAAAAAAAZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgBhAHMBRwF8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAABeAAAAgwAAAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAprz+rrDzmKoAAAC8AAABWQF/AiEDAExBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAU2NyaXB0cw0JQWJvdXQgdGhlIFNjcmlwdHMgTWVudckNCS0NCVNhbXBsZSBTY3JpcHQgIzENCVNhbXBsZSBTY3JpcHQgIzINCVNhbXBsZSBTY3JpcHQgIzMNCS0NCUVkaXQgU2hhcmVkIE1lbnUNCUVkaXQgU2NyaXB0cyBUYWJsZQ2AAAAAAAAAAAAAAAoAAAAAAAAGbuvwAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACk0AAAAAAAAAAAAAAAAAAApUAAAAAAAAAAAAAAIAAAAYAAAAqgABAgAADwZHZW5ldmEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAGVAAAprz/H62FeQAAAAAiAAABWQF/AiEDAExBTkT///////8AAAAAAABtYWMgAAAAAAAAAAAAAAAAbG9jYWwgKGFwcG5hbWUgPSBzeXMuZnJvbnRtb3N0QXBwICgpKQ1Gcm9udGllci5icmluZ1RvRnJvbnQgKCkNZGlhbG9nLm5vdGlmeSAoIlRoaXMgbWVudSBjb250YWlucyBzY3JpcHRzIHdyaXR0ZW4gd2l0aCBVc2VyTGFuZCBGcm9udGllci4iKQ1zeXMuYnJpbmdBcHBUb0Zyb250IChhcHBuYW1lKQ2AAAAAAACAAAAAAACAAAAAAACAAAAAAAA= |
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/DuckTape/data/commercialSuiteReference/newTable In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4527 Added Files: Tag: commercial_suite_project-branch openDocument isRunning printDocument quit bringToFront launch Log Message: commercial Suite Project initial import --- NEW FILE: quit --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.quit on quit () { return (required.quitApplication (Sample.id))} --- NEW FILE: bringToFront --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.bringToFront on bringToFront () { if not app.start ("Sample") { return (false)}; return (sys.bringAppToFront (Sample.id))} --- NEW FILE: launch --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.launch on launch () { return (app.startWithDocument ("Sample", ""))} --- NEW FILE: openDocument --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.openDocument on openDocument (file) { return (required.openDocument (Sample.id, file))} --- NEW FILE: isRunning --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.isRunning on isRunning () { return (sys.appIsRunning (Sample.id))} --- NEW FILE: printDocument --- FrontierVcsFile:1:scpt:suites.DuckTape.data.commercialSuiteReference.newTable.printDocument on printDocument (file) { return (required.printDocument (Sample.id, file))} |