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: Andre R. <and...@us...> - 2006-03-02 21:07:40
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/fUnit/testBugs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1825 Added Files: testHoistedOutlineToXML Log Message: Added test case for op.outlineToXML regarding data loss for hoisted outlines. --- NEW FILE: testHoistedOutlineToXML --- (This appears to be a binary file; contents omitted.) |
|
From: creecode <icr...@us...> - 2006-03-01 09:03:45
|
Update of /cvsroot/frontierkernel/odbs/mainResponderRoot/mainResponder In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30122 Modified Files: callbackLoop Log Message: minor script formatting tweaks if the value of adScript is of type string, coerce to address, allows for partial addresses Index: callbackLoop =================================================================== RCS file: /cvsroot/frontierkernel/odbs/mainResponderRoot/mainResponder/callbackLoop,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** callbackLoop 26 Mar 2005 21:45:04 -0000 1.1.1.1 --- callbackLoop 1 Mar 2006 09:03:42 -0000 1.2 *************** *** 1,3 **** ! FrontierVcsFile:1:scpt:mainResponder.callbackLoop ! on callbackLoop (adrcallbacktable, adrparamtable) { Ç7/5/99; 1:34:45 PM by DW ÇIf the table isn't defined, do nothing. ÇIgnore objects that aren't scripts. (This should cut down on the number of "item #1" errors that come when people leave callback tables open.) if defined (adrcallbacktable^) { local (i); for i = 1 to sizeof (adrcallbacktable^) { local (adrscript = @adrcallbacktable^ [i]); while typeof (adrscript^) == addresstype { adrscript = adrscript^}; if typeof (adrscript^) == scriptType { callScript (adrscript, {}, adrparamtable)}}}} //scriptError to kill request \ No newline at end of file --- 1,25 ---- ! FrontierVcsFile:2:scpt:mainResponder.callbackLoop ! on callbackLoop (adrCallbackTable, adrParamTable) { ! «Changes ! «2/28/06; 4:52:27 PM by TAC ! «minor script formatting tweaks ! «if the value of adScript is of type string, coerce to address, allows for partial addresses ! «7/5/99; 1:34:45 PM by DW ! «If the table isn't defined, do nothing. ! «Ignore objects that aren't scripts. (This should cut down on the number of "item #1" errors that come when people leave callback tables open.) ! ! if defined (adrCallbackTable^) { ! local (i); ! ! for i = 1 to sizeof (adrCallbackTable^) { ! local (adrScript = @adrCallbackTable^ [i]); ! ! if typeOf (adrScript^) == stringType { ! adrScript = address (adrScript^)}; ! ! while typeOf (adrScript^) == addressType { ! adrScript = adrScript^}; ! ! if typeOf (adrScript^) == scriptType { ! callScript (adrScript, {}, adrParamTable)}}}} //scriptError to kill request \ No newline at end of file |
|
From: creedon <icr...@us...> - 2006-03-01 00:43:33
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/webBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19855 Modified Files: openURL Log Message: minor script formatting tweaks work around problem with FireFox on Windows dropping the last character of the url Index: openURL =================================================================== RCS file: /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/webBrowser/openURL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** openURL 26 Mar 2005 19:43:50 -0000 1.1.1.1 --- openURL 1 Mar 2006 00:43:29 -0000 1.2 *************** *** 1,3 **** ! FrontierVcsFile:1:scpt:system.verbs.builtins.webBrowser.openURL ! on openURL (s, openURLIn=nil) { local (id = webBrowser.launch ()); if id == false or id == 'NONE' { return (false)}; case sys.os () { "MacOS" { return (appleEvent (id, 'GURL', 'GURL', '----', string (s), 'cwin', openUrlIn))}; "Win95"; "WinNT" { if string.lower (id) contains "netscape" { return (webBrowser.callBrowser (id, "WWW_OpenURL", s + ",,-1"))}; return (webBrowser.callBrowser (id, "WWW_OpenURL", s))}}} \ No newline at end of file --- 1,25 ---- ! FrontierVcsFile:2:scpt:system.verbs.builtins.webBrowser.openURL ! on openURL (s, openURLIn = nil) { ! «Changes ! «2/28/06; 10:38:13 AM by TAC ! «minor script formatting tweaks ! «work around problem with FireFox on Windows dropping the last character of the url ! ! local (id = webBrowser.launch ()); ! ! if id == false or id == 'NONE' { ! return (false)}; ! ! case sys.os () { ! "MacOS" { ! return (appleEvent (id, 'GURL', 'GURL', '----', string (s), 'cwin', openUrlIn))}; ! "Win95"; ! "WinNT" { ! if string.lower (id) contains "firefox" { ! s = s + " "}; ! ! if string.lower (id) contains "netscape" { ! return (webBrowser.callBrowser (id, "WWW_OpenURL", s + ",,-1"))}; ! ! return (webBrowser.callBrowser (id, "WWW_OpenURL", s))}}} \ No newline at end of file |
|
From: creedon <icr...@us...> - 2006-03-01 00:41:24
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/webBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17682 Modified Files: supportedBrowsers Log Message: added Firefox for Windows Index: supportedBrowsers =================================================================== RCS file: /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/webBrowser/supportedBrowsers,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** supportedBrowsers 11 Nov 2005 05:16:24 -0000 1.2 --- supportedBrowsers 1 Mar 2006 00:41:21 -0000 1.3 *************** *** 1,3 **** ! FrontierVcsFile:1:scpt:system.verbs.builtins.webBrowser.supportedBrowsers ! ÇChanges Ç11/10/05; 5:32:44 PM by TAC Çadded Firefox for Mac OS Ç1/10/03; 5:49:15 PM by JES ÇAdded support for Safari on MacOS X. Ç9/21/02; 5:28:28 PM by JES ÇAdded support for Chimera Navigator on OS X. Ç1/9/02; 3:27:15 PM by PBS ÇAdded support for Mozilla, Opera, and iCab. ÇThis is a script instead of a constant so it can become smarter if it needs to. case sys.os () { "MacOS" { if defined (system.environment.isCarbon) and system.environment.isCarbon { return ({'MSIE', 'OWEB', 'MOSS', 'MOZZ', 'OPRA', 'iCAB', 'CHIM', 'sfri', 'MOZB'})} else { return ({'MSIE', 'MOSS', 'MOZZ', 'OPRA', 'iCAB'})}}; "Win95"; "WinNT" { return ({"iexplore.exe", "netscape.exe"})}} \ No newline at end of file --- 1,24 ---- ! FrontierVcsFile:2:scpt:system.verbs.builtins.webBrowser.supportedBrowsers ! «Changes ! «2/28/06; 10:49:17 AM by TAC ! «added Firefox for Windows ! «11/10/05; 5:32:44 PM by TAC ! «added Firefox for Mac OS ! «1/10/03; 5:49:15 PM by JES ! «Added support for Safari on MacOS X. ! «9/21/02; 5:28:28 PM by JES ! «Added support for Chimera Navigator on OS X. ! «1/9/02; 3:27:15 PM by PBS ! «Added support for Mozilla, Opera, and iCab. ! «This is a script instead of a constant so it can become smarter if it needs to. ! ! case sys.os () { ! "MacOS" { ! if defined (system.environment.isCarbon) and system.environment.isCarbon { ! return ({'MSIE', 'OWEB', 'MOSS', 'MOZZ', 'OPRA', 'iCAB', 'CHIM', 'sfri', 'MOZB'})} ! else { ! return ({'MSIE', 'MOSS', 'MOZZ', 'OPRA', 'iCAB'})}}; ! "Win95"; ! "WinNT" { ! return ({"iexplore.exe", "firefox.exe", "netscape.exe"})}} \ No newline at end of file |
|
From: creedon <icr...@us...> - 2006-02-28 09:17:23
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/extensions/latintomac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13260 Removed Files: code68K stressTest mimetomac releaseDate Version convert mactolatin mimetolatin ReadMe codePPC Log Message: removed, will be available as an Extra --- convert DELETED --- --- mimetomac DELETED --- --- releaseDate DELETED --- --- stressTest DELETED --- --- Version DELETED --- --- ReadMe DELETED --- --- codePPC DELETED --- --- mactolatin DELETED --- --- mimetolatin DELETED --- --- code68K DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-28 09:03:48
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/Frontier/data/DLLs/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3736/windows Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/Frontier/data/DLLs/windows added to the repository |
|
From: creedon <icr...@us...> - 2006-02-28 09:03:41
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/Frontier/data/DLLs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3664/DLLs Log Message: Directory /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/Frontier/data/DLLs added to the repository |
|
From: Andre R. <and...@us...> - 2006-02-27 21:46:34
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11700 Modified Files: opxml.c Log Message: Fixed funky formatting. No functional changes expected. Index: opxml.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/opxml.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** opxml.c 11 Jan 2005 22:48:09 -0000 1.4 --- opxml.c 27 Feb 2006 21:46:29 -0000 1.5 *************** *** 814,879 **** static boolean opxmlrecursivelyvisit (hdlheadrecord h, short lev, opvisitcallback visit, ptrvoid refcon) { - - register hdlheadrecord nomad, nextnomad; - - if (h == nil) - return (true); - - nomad = (**h).headlinkright; - - if (nomad == h) /*nothing to the right*/ - return (true); - - while (true) { - - nextnomad = (**nomad).headlinkdown; - - if (!(*visit) (nomad, refcon)) - return (false); - - if (lev > 1) { - - if (!(**nomad).fldynamic) { - - if (!oprecursivelyvisit (nomad, lev - 1, visit, refcon)) - return (false); - } /*if*/ - } - - if (nextnomad == nomad) /*just processed last subhead*/ - return (true); - - nomad = nextnomad; - } /*while*/ --- 814,847 ---- *************** *** 881,947 **** - - - static boolean opxmlvisitnondynamicnodes (opvisitcallback visit, ptrvoid refcon) { - - /* - visit every node in the outline -- unless it's the child of a dynamic node. - */ - - hdlheadrecord nomad = (**outlinedata).hsummit, nextnomad; - - while (true) { - - nextnomad = (**nomad).headlinkdown; - - if (!(*visit) (nomad, refcon)) /*visit the summit*/ - return (false); - - if (!(**nomad).fldynamic) { - - if (!opxmlrecursivelyvisit (nomad, infinity, visit, refcon)) /*visit its subs*/ - return (false); - } /*if*/ - - if (nextnomad == nomad) - return (true); - - nomad = nextnomad; - } /*while*/ - - } /*opxmlvisitnondynamicnodes*/ - - - static boolean opxmlbodyvisit (hdlheadrecord hnode, ptrvoid htext) { --- 849,882 ---- *************** *** 953,958 **** as many as needed. - - 7.0b30 PBS: handle a dynamic node -- it has subs, but pretend it doesn't, --- 888,891 ---- *************** *** 983,1009 **** if (nextlevel == indentlevel) - fl = true; - - if (nextlevel > indentlevel) - - - flsubs = true; - - if ((**hnode).fldynamic) /*7.0b30: dynamic nodes may have subs, but we ignore them.*/ - - - flsubs = false; if (flsubs) /*Has subs?*/ - fl = pushtexthandle ("\x02"">\r", htext); /*Add closing > and carriage return.*/ - else { /*No subs*/ --- 916,929 ---- *************** *** 1015,1026 **** if (nextlevel < indentlevel) /*Need to close off outline items?*/ - fl = opxmlpushclosingoutlinetags (htext, indentlevel, nextlevel); /*Add as many </outline> tags as needed.*/ if (hnode == hflatdown) /*At the end of the outline?*/ - fl = opxmlpushclosingoutlinetags (htext, indentlevel, 2); /*Add as many </outline> tags as needed.*/ ! exit: disposehandle (h); --- 935,944 ---- if (nextlevel < indentlevel) /*Need to close off outline items?*/ fl = opxmlpushclosingoutlinetags (htext, indentlevel, nextlevel); /*Add as many </outline> tags as needed.*/ if (hnode == hflatdown) /*At the end of the outline?*/ fl = opxmlpushclosingoutlinetags (htext, indentlevel, 2); /*Add as many </outline> tags as needed.*/ ! exit: disposehandle (h); *************** *** 1184,1196 **** /*Clean up*/ ! exit3: disposevaluerecord (vtimemodified, false); ! exit2: disposevaluerecord (vtimecreated, false); ! exit: disposehandle (hexpansionstate); --- 1102,1114 ---- /*Clean up*/ ! exit3: disposevaluerecord (vtimemodified, false); ! exit2: disposevaluerecord (vtimecreated, false); ! exit: disposehandle (hexpansionstate); *************** *** 1338,1379 **** - static boolean opxmlheadexists (hdlhashtable ht) { - - /* - 7.0b33 PBS: return true if there's a required <head> section of the document. - */ - - hdlhashnode hn; - - for (hn = (**ht).hfirstsort; hn != nil; hn = (**hn).sortedlink) { /*loop through the table*/ - - if (isxmlmatch (hn, STR_head)) /*is this the name we're looking for?*/ - - - return (true); /*Found; return true.*/ - } /*for*/ - - return (false); - } /*opxmlheadexists*/ - - static boolean opxmlgetonevalue (hdlhashtable ht, bigstring bsname, Handle htext) { --- 1256,1277 ---- *************** *** 1489,1498 **** if (!shellmovewindowhidden (hinfo, windowleft, windowtop)) /*Set window position*/ - return (false); /*shellmovewindow always returns true at this writing, but that could change*/ - /*Set the window size*/ ! if (!opxmlgetoneshortvalue (ht, STR_windowright, &windowright)) return (false); --- 1387,1394 ---- if (!shellmovewindowhidden (hinfo, windowleft, windowtop)) /*Set window position*/ return (false); /*shellmovewindow always returns true at this writing, but that could change*/ /*Set the window size*/ ! if (!opxmlgetoneshortvalue (ht, STR_windowright, &windowright)) return (false); *************** *** 1581,1585 **** htext = nil; ! exit1: if (htext != nil) --- 1477,1481 ---- htext = nil; ! exit1: if (htext != nil) *************** *** 1920,1928 **** fl = true; /*success*/ ! exit2: disposevaluerecord (vbinary, false); ! exit1: return (fl); --- 1816,1824 ---- fl = true; /*success*/ ! exit2: disposevaluerecord (vbinary, false); ! exit1: return (fl); *************** *** 1983,1987 **** fl = true; /*success*/ ! exit: return (fl); --- 1879,1883 ---- fl = true; /*success*/ ! exit: return (fl); |
|
From: creedon <icr...@us...> - 2006-02-27 02:54:47
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2644 Modified Files: strings.c Log Message: include langinternal.h Index: strings.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/strings.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** strings.c 27 Feb 2006 01:23:52 -0000 1.10 --- strings.c 27 Feb 2006 02:54:44 -0000 1.11 *************** *** 37,42 **** #include "shell.rsrc.h" #include "timedate.h" ! ! --- 37,41 ---- #include "shell.rsrc.h" #include "timedate.h" ! #include "langinternal.h" /* 2006-02-26 creedon */ |
|
From: creedon <icr...@us...> - 2006-02-27 01:26:45
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/system/verbs/builtins/string In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26000 Added Files: macRomanToUtf8 utf8ToMacRoman Log Message: added string.macRomanToUtf8 and string.utf8ToMacRoman --- NEW FILE: utf8ToMacRoman --- (This appears to be a binary file; contents omitted.) --- NEW FILE: macRomanToUtf8 --- (This appears to be a binary file; contents omitted.) |
|
From: creedon <icr...@us...> - 2006-02-27 01:24:09
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Win32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24632 Modified Files: kernelverbs.rc Log Message: added string.macRomanToUtf8 and string.utf8ToMacRoman Index: kernelverbs.rc =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Win32/kernelverbs.rc,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** kernelverbs.rc 5 Feb 2006 17:11:04 -0000 1.3 --- kernelverbs.rc 27 Feb 2006 01:23:59 -0000 1.4 *************** *** 515,519 **** "string\0", //Function Processor Name false, //Window required ! 56, //Count of verbs "delete\0", "insert\0", --- 515,519 ---- "string\0", //Function Processor Name false, //Window required ! 58, //Count of verbs "delete\0", "insert\0", *************** *** 572,575 **** --- 572,577 ---- "ansitoutf16\0", "multiplereplaceall\0" + "macromantoutf8\0", // 2006-02-25 creedon + "utf8tomacroman\0" // 2006-02-25 creedon END |
|
From: creedon <icr...@us...> - 2006-02-27 01:23:58
|
Update of /cvsroot/frontierkernel/Frontier/Common/source In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24603 Modified Files: strings.c stringverbs.c Log Message: added string.macRomanToUtf8 and string.utf8ToMacRoman Index: strings.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/strings.c,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** strings.c 8 Feb 2006 21:35:17 -0000 1.9 --- strings.c 27 Feb 2006 01:23:52 -0000 1.10 *************** *** 2690,2695 **** --- 2690,2736 ---- } /*for*/ } /*initstrings*/ + + + boolean macromantoutf8 (Handle h, Handle hresult) { + + /* + 2006-02-24 creedon: convert from Mac Roman character set to UTF-8, cribbed from ansitoutf8 + */ + #ifdef WIN95VERSION + + langerrormessage ("\x92" "Direct Mac Roman to UTF-8 string conversion currently only works on Mac OS. On Windows string.macToLatin and string.ansiToUtf8 verbs can be used."); + + #endif + #ifdef MACVERSION + converttextencoding (h, hresult, kTextEncodingMacRoman, 0x08000100); + #endif + + return (true); + } /* macromantoutf8 */ + + + boolean utf8tomacroman (Handle h, Handle hresult) { + + /* + 2006-02-26 creedon: convert from UTF-8 character set to Mac Roman, cribbed from utf8toansi + */ + + #ifdef WIN95VERSION + + langerrormessage ("\x92" "Direct UTF-8 to Mac Roman string conversion currently only works on Mac OS. On Windows string.utf8ToAnsi and string.latinToMac verbs can be used."); + + #endif + + #ifdef MACVERSION + + converttextencoding (h, hresult, 0x08000100, kTextEncodingMacRoman); + + #endif + + return (true); + } /* utf8tomacroman */ + Index: stringverbs.c =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/source/stringverbs.c,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** stringverbs.c 15 Aug 2005 20:49:53 -0000 1.11 --- stringverbs.c 27 Feb 2006 01:23:52 -0000 1.12 *************** *** 308,311 **** --- 308,315 ---- multiplereplaceallfunc, /*7.1b17 PBS*/ + macromantoutf8func, // 2006-02-25 creedon + + utf8tomacromanfunc, // 2006-02-25 creedon + ctstringverbs } tystringtoken; *************** *** 1369,1372 **** --- 1373,1378 ---- string, creates a new handle sized precisely for the output string, and copies two parts from the input to the output (substrings before and after the deleted chars) + + 2006-02-25 creedon: added macRomanToUtf8 and utf8ToMacRoman */ *************** *** 2257,2260 **** --- 2263,2302 ---- } + case macromantoutf8func: { /* 2006-02-25 creedon: convert mac roman character set to utf-8 */ + + Handle h, hresult; + + flnextparamislast = true; + + if (!getexempttextvalue (hp1, 1, &h)) + return (false); + + newemptyhandle (&hresult); + + macromantoutf8 (h, hresult); + + disposehandle (h); + + return (setheapvalue (hresult, stringvaluetype, v)); + } + + case utf8tomacromanfunc: { /* 2006-02-25 creedon: convert utf-8 character set to mac roman */ + + Handle h, hresult; + + flnextparamislast = true; + + if (!getexempttextvalue (hp1, 1, &h)) + return (false); + + newemptyhandle (&hresult); + + utf8tomacroman (h, hresult); + + disposehandle(h); + + return (setheapvalue (hresult, stringvaluetype, v)); + } + default: errornum = notimplementederror; *************** *** 2287,2292 **** return (loadfunctionprocessor (idstringverbs, &stringfunctionvalue)); } /*stringinitverbs*/ - - - --- 2329,2331 ---- |
|
From: creedon <icr...@us...> - 2006-02-27 01:23:51
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24566 Modified Files: strings.h Log Message: added string.macRomanToUtf8 and string.utf8ToMacRoman Index: strings.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/strings.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** strings.h 11 Jan 2005 22:48:02 -0000 1.6 --- strings.h 27 Feb 2006 01:23:46 -0000 1.7 *************** *** 262,266 **** extern void mactolatin (Handle h); /*7.0b41 PBS*/ - #endif --- 262,270 ---- extern void mactolatin (Handle h); /*7.0b41 PBS*/ + extern boolean macromantoutf8 (Handle, Handle); /* 2006-02-25 creedon */ + + extern boolean utf8tomacroman (Handle, Handle); /* 2006-02-25 creedon */ + + #endif |
|
From: creedon <icr...@us...> - 2006-02-27 01:23:46
|
Update of /cvsroot/frontierkernel/Frontier/Common/resources/Mac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24534 Modified Files: kernelverbs.r Log Message: added string.macRomanToUtf8 and string.utf8ToMacRoman Index: kernelverbs.r =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/resources/Mac/kernelverbs.r,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** kernelverbs.r 5 Feb 2006 17:11:03 -0000 1.3 --- kernelverbs.r 27 Feb 2006 01:23:41 -0000 1.4 *************** *** 600,603 **** --- 600,605 ---- "ansitoutf16", "multipleReplaceAll", + "macromantoutf8", // 2006-02-25 creedon + "utf8tomacroman" // 2006-02-25 creedon } } |
|
From: creedon <icr...@us...> - 2006-02-26 21:36:50
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28108 Modified Files: userlandSignature Log Message: testing Frontier VCS File format version 2, cvsSync v1.0b6 required to read Index: userlandSignature =================================================================== RCS file: /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/userlandSignature,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** userlandSignature 2 Apr 2005 23:09:51 -0000 1.1.1.1 --- userlandSignature 26 Feb 2006 21:36:46 -0000 1.2 *************** *** 1,3 **** ! FrontierVcsFile:1:scpt:prefsSuite.userlandSignature ! local (pta = html.getpagetableaddress ()); local (encodedUrl = string.urlEncode (url)); if pathargs != "" { encodedUrl = encodedUrl + "$" + pathargs}; return ("<font size=\"-1\">© Copyright 1992-" + date.year () + " <a href=\"http://www.userland.com/\">UserLand Software</a>. Email: <a href=mailto:web...@us...?Subject=Re:%20" + encodedUrl + ">webmaster\@userland.com</a>.</font>") \ No newline at end of file --- 1,7 ---- ! FrontierVcsFile:2:scpt:prefsSuite.userlandSignature ! local (pta = html.getpagetableaddress ()); ! local (encodedUrl = string.urlEncode (url)); ! if pathargs != "" { ! encodedUrl = encodedUrl + "$" + pathargs}; ! return ("<font size=\"-1\">© Copyright 1992-" + date.year () + " <a href=\"http://www.userland.com/\">UserLand Software</a>. Email: <a href=mailto:web...@us...?Subject=Re:%20" + encodedUrl + ">webmaster\@userland.com</a>.</font>") \ No newline at end of file |
|
From: creedon <icr...@us...> - 2006-02-26 20:33:16
|
Update of /cvsroot/frontierkernel/odbs/frontierRoot/suites/applescripts/data In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28730 Modified Files: helloWorld Log Message: testing Frontier VCS File format version 2, cvsSync v1.0b6 required to read Index: helloWorld =================================================================== RCS file: /cvsroot/frontierkernel/odbs/frontierRoot/suites/applescripts/data/helloWorld,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** helloWorld 26 Mar 2005 19:41:09 -0000 1.1.1.1 --- helloWorld 26 Feb 2006 20:33:08 -0000 1.2 *************** *** 1,3 **** ! FrontierVcsFile:1:scpt:suites.applescripts.data.helloWorld ! display dialog "Hello World!" \ No newline at end of file --- 1,3 ---- ! FrontierVcsFile:2:scpt (AppleScript):suites.applescripts.data.helloWorld ! display dialog "Hello World!" |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:44
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001300009item/0001100009option/2Fatts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001300009item/0001100009option/2Fatts Removed Files: title value Log Message: removed, created automatically --- value DELETED --- --- title DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:43
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001300009item/0003300009option In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001300009item/0003300009option Removed Files: 2Fpcdata Log Message: removed, created automatically --- 2Fpcdata DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:43
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001200009item/0023300009option In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001200009item/0023300009option Removed Files: 2Fpcdata Log Message: removed, created automatically --- 2Fpcdata DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:42
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001200009item/0023200009option/2Fatts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001200009item/0023200009option/2Fatts Removed Files: title value Log Message: removed, created automatically --- value DELETED --- --- title DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:42
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001300009item/0001000009option/2Fatts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001300009item/0001000009option/2Fatts Removed Files: title value Log Message: removed, created automatically --- value DELETED --- --- title DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:42
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001200009item/0024000009option In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001200009item/0024000009option Removed Files: 2Fpcdata Log Message: removed, created automatically --- 2Fpcdata DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:41
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001200009item/0023300009option/2Fatts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001200009item/0023300009option/2Fatts Removed Files: title value Log Message: removed, created automatically --- value DELETED --- --- title DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:41
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001200009item/0023000009option In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001200009item/0023000009option Removed Files: 2Fpcdata Log Message: removed, created automatically --- 2Fpcdata DELETED --- |
|
From: creedon <icr...@us...> - 2006-02-26 19:00:40
|
Update of /cvsroot/frontierkernel/odbs/prefsRoot/prefsSuite/signupWizard/structure/0000100009wizard/0000100009panel/0001300009item/0003600009option/2Fatts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2554/structure/0000100009wizard/0000100009panel/0001300009item/0003600009option/2Fatts Removed Files: title value Log Message: removed, created automatically --- value DELETED --- --- title DELETED --- |